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