hc
2023-02-14 0cc9b7c44253c93447ddf73e206fbdbb3d9f16b1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
menuconfig BR2_PACKAGE_GST1_PLUGINS_UGLY
   bool "gst1-plugins-ugly"
   select BR2_PACKAGE_GST1_PLUGINS_BASE
   help
     A set of well-supported plug-ins for GStreamer, but might pose
     problems for distributors.
 
     https://gstreamer.freedesktop.org/
 
if BR2_PACKAGE_GST1_PLUGINS_UGLY
 
comment "dependency-less plugins"
 
config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_ASFDEMUX
   bool "asfdemux"
   help
     Demuxes and muxes audio and video in Microsofts ASF format
 
config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_DVDLPCMDEC
   bool "dvdlpcmdec"
   help
     Decode DVD LPCM frames into standard PCM
 
config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_DVDSUB
   bool "dvdsub"
   help
     DVD subtitle parser and decoder
 
config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_XINGMUX
   bool "xingmux"
   help
     Add XING tags to mpeg audio files
 
config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_REALMEDIA
   bool "realmedia"
   help
     RealMedia support plugins
 
comment "plugins with external dependencies (there may be more available)"
 
config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_DVDREAD
   bool "dvdread"
   select BR2_PACKAGE_LIBDVDREAD
   help
     Access a DVD with dvdread
 
config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MPEG2DEC
   bool "mpeg2dec"
   select BR2_PACKAGE_LIBMPEG2
   help
     LibMpeg2 decoder
 
config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_X264
   bool "x264"
   select BR2_PACKAGE_X264
   help
     x264 encoder
 
# Note: to get descriptions use the following.
# # find . -name 'plugin-*.xml' | xargs grep -m 1 description
endif