2018-05-05 13:55:20 +00:00
option ( 'audioresample_format' , type : 'combo' ,
choices : [ 'int' , 'float' , 'auto' ] , value : 'auto' )
2018-08-16 09:13:39 +00:00
option ( 'install_plugins_helper' , type : 'string' , value : '' ,
description : 'Path of distro helper script to call to install missing plugins' )
option ( 'iso-codes' , type : 'feature' , value : 'auto' ,
description : 'Use iso-codes in libgsttag (for language names)' )
# OpenGL integration library options
2018-05-05 13:55:20 +00:00
option ( 'gl_api' , type : 'array' , choices : [ 'opengl' , 'gles2' , 'auto' ] , value : [ 'auto' ] ,
description : 'A comma separated list of opengl APIs to enable building against' )
option ( 'gl_platform' , type : 'array' ,
choices : [ 'glx' , 'egl' , 'cgl' , 'wgl' , 'eagl' , 'auto' ] , value : [ 'auto' ] ,
description : 'A comma separated list of opengl platforms to enable building against' )
option ( 'gl_winsys' , type : 'array' ,
2023-10-19 12:10:16 +00:00
choices : [ 'x11' , 'wayland' , 'win32' , 'winrt' , 'cocoa' , 'dispmanx' , 'egl' , 'surfaceless' , 'viv-fb' , 'gbm' , 'android' , 'auto' ] , value : [ 'auto' ] ,
2019-12-16 18:49:09 +00:00
description : 'A comma separated list of opengl windows systems to enable building against. Supported values are x11, wayland, win32, winrt, cocoa, dispmanx, egl, viv-fb, gbm, and android' )
2018-05-05 13:55:20 +00:00
option ( 'egl_module_name' , type : 'string' , value : '' ,
description : 'The file to pass to g_module_open to open the libEGL library (default: libEGL)' )
option ( 'opengl_module_name' , type : 'string' , value : '' ,
description : 'The file to pass to g_module_open to open the libGL library (default: libGL)' )
option ( 'gles2_module_name' , type : 'string' , value : '' ,
description : 'The file to pass to g_module_open to open the libGLESv2 library (default: libGLESv2)' )
2018-08-16 09:28:48 +00:00
# Feature option for opengl plugin and integration library
option ( 'gl' , type : 'feature' , value : 'auto' , description : 'OpenGL integration library and OpenGL plugin' )
option ( 'gl-graphene' , type : 'feature' , value : 'auto' , description : 'Use Graphene in OpenGL plugin' )
option ( 'gl-jpeg' , type : 'feature' , value : 'auto' , description : 'Use libjpeg in OpenGL plugin' )
option ( 'gl-png' , type : 'feature' , value : 'auto' , description : 'Use libpng in OpenGL plugin' )
2018-07-25 02:05:05 +00:00
# Feature options for plugins with no external deps
option ( 'adder' , type : 'feature' , value : 'auto' )
option ( 'app' , type : 'feature' , value : 'auto' )
option ( 'audioconvert' , type : 'feature' , value : 'auto' )
option ( 'audiomixer' , type : 'feature' , value : 'auto' )
option ( 'audiorate' , type : 'feature' , value : 'auto' )
option ( 'audioresample' , type : 'feature' , value : 'auto' )
option ( 'audiotestsrc' , type : 'feature' , value : 'auto' )
2018-12-27 12:34:29 +00:00
option ( 'compositor' , type : 'feature' , value : 'auto' )
debug: add new element fakevideodec
The fake video decoder ignores input bitstream except
to enforce caps restrictions. It reads video width,
height and framerate from caps. Then it just pushes
video frames without doing any decoding.
The fake video decoder just draws a snake moving from
left to right in the middle of the frame. This is a
light weight drawing while it still provides an idea
about how smooth is the rendering.
The fake video decoder inherits from GstVideoDecoder.
It is useful to measure how smooth will be the whole
rendering pipeline if you had the most efficient video
decoder. Also useful to bisect issues for example when
suspecting issues in a specific video decoder.
Handles mpeg2, mpeg4, h263, h264, theora, vp8, wmv3, msmpeg,
flash-video, vp6, vp9, wmv1, wmv2, divx but more can be
added if needed.
For now it can only output RGBA, RGBx, BGRA, BGRx.
Its rank is 0 (none) but I added a property to change it so
that it can be selected by decodebin.
gst-launch-1.0 fakevideodec rank=512 \
playbin uri=http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4
http://bugzilla.gnome.org/show_bug.cgi?id=723778
Closes #679
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5636>
2019-12-12 19:29:17 +00:00
option ( 'debugutils' , type : 'feature' , value : 'auto' )
2023-02-08 21:50:10 +00:00
option ( 'drm' , type : 'feature' , value : 'auto' )
2022-10-17 08:00:07 +00:00
option ( 'dsd' , type : 'feature' , value : 'auto' )
2018-07-25 02:05:05 +00:00
option ( 'encoding' , type : 'feature' , value : 'auto' )
option ( 'gio' , type : 'feature' , value : 'auto' )
2019-12-08 00:00:37 +00:00
option ( 'gio-typefinder' , type : 'feature' , value : 'auto' )
2018-10-01 15:10:34 +00:00
option ( 'overlaycomposition' , type : 'feature' , value : 'auto' )
2018-07-25 02:05:05 +00:00
option ( 'pbtypes' , type : 'feature' , value : 'auto' )
option ( 'playback' , type : 'feature' , value : 'auto' )
option ( 'rawparse' , type : 'feature' , value : 'auto' )
option ( 'subparse' , type : 'feature' , value : 'auto' )
option ( 'tcp' , type : 'feature' , value : 'auto' )
option ( 'typefind' , type : 'feature' , value : 'auto' )
2020-04-17 19:23:03 +00:00
option ( 'videoconvertscale' , type : 'feature' , value : 'auto' )
2018-07-25 02:05:05 +00:00
option ( 'videorate' , type : 'feature' , value : 'auto' )
option ( 'videotestsrc' , type : 'feature' , value : 'auto' )
option ( 'volume' , type : 'feature' , value : 'auto' )
# Feature options for plugins with external deps
option ( 'alsa' , type : 'feature' , value : 'auto' , description : 'ALSA audio source/sink plugin' )
option ( 'cdparanoia' , type : 'feature' , value : 'auto' , description : 'cdparanoia plugin' )
option ( 'libvisual' , type : 'feature' , value : 'auto' , description : 'libvisual audio visualization plugin' )
option ( 'ogg' , type : 'feature' , value : 'auto' , description : 'ogg parser, muxer, demuxer plugin' )
option ( 'opus' , type : 'feature' , value : 'auto' , description : 'OPUS audio codec plugin' )
option ( 'pango' , type : 'feature' , value : 'auto' , description : 'Pango text rendering and overlay plugin' )
option ( 'theora' , type : 'feature' , value : 'auto' , description : 'Theora video parser and codec plugin' )
2018-09-10 16:52:16 +00:00
option ( 'tremor' , type : 'feature' , value : 'auto' , description : 'Integer Vorbis decoder plugin for devices without floating point' )
2018-07-25 02:05:05 +00:00
option ( 'vorbis' , type : 'feature' , value : 'auto' , description : 'Vorbis audio parser, tagger, and codec plugin' )
option ( 'x11' , type : 'feature' , value : 'auto' , description : 'X11 ximagesink plugin, and X11 support in libraries, plugins, examples' )
option ( 'xshm' , type : 'feature' , value : 'auto' , description : 'X11 shared memory support for X11 plugins' )
option ( 'xvideo' , type : 'feature' , value : 'auto' , description : 'X11 XVideo xvimagesink plugin' )
2022-02-03 14:01:46 +00:00
option ( 'xi' , type : 'feature' , value : 'auto' , description : 'X11 input extension for touch support in ximagesink' )
2018-07-25 02:05:05 +00:00
# Common feature options
option ( 'examples' , type : 'feature' , value : 'auto' , yield : true )
2018-08-12 17:12:35 +00:00
option ( 'tests' , type : 'feature' , value : 'auto' , yield : true )
option ( 'tools' , type : 'feature' , value : 'auto' , yield : true )
2018-07-25 02:05:05 +00:00
option ( 'introspection' , type : 'feature' , value : 'auto' , yield : true , description : 'Generate gobject-introspection bindings' )
option ( 'nls' , type : 'feature' , value : 'auto' , yield : true , description : 'Enable native language support (translations)' )
option ( 'orc' , type : 'feature' , value : 'auto' , yield : true )
2020-09-15 18:15:36 +00:00
option ( 'qt5' , type : 'feature' , value : 'auto' , yield : true , description : 'Qt5 QML examples' )
2018-07-25 02:05:05 +00:00
2018-05-05 13:55:20 +00:00
# Common options
option ( 'package-name' , type : 'string' , yield : true ,
2017-05-20 13:46:51 +00:00
description : 'package name to use in plugins' )
2018-05-05 13:55:20 +00:00
option ( 'package-origin' , type : 'string' , value : 'Unknown package origin' , yield : true ,
2017-05-20 13:46:51 +00:00
description : 'package origin URL to use in plugins' )
2018-10-22 06:17:24 +00:00
option ( 'doc' , type : 'feature' , value : 'auto' , yield : true ,
2019-12-08 00:00:37 +00:00
description : 'Enable documentation.' )
2020-04-08 14:40:42 +00:00
option ( 'glib_debug' , type : 'feature' , value : 'auto' , yield : true , description : 'Enable GLib debug infrastructure (see docs/macros.txt)' )
option ( 'glib_assert' , type : 'boolean' , value : true , yield : true , description : 'Enable GLib assertion (see docs/macros.txt)' ,
deprecated : { 'enabled' : 'true' , 'disabled' : 'false' , 'auto' : 'false' } ,
)
option ( 'glib_checks' , type : 'boolean' , value : true , yield : true , description : 'Enable GLib checks such as API guards (see docs/macros.txt)' ,
deprecated : { 'enabled' : 'true' , 'disabled' : 'false' , 'auto' : 'false' } ,
)
# Deprecated, kept for backward compat
option ( 'gobject-cast-checks' , type : 'feature' , value : 'auto' , yield : true ,
description : 'Enable run-time GObject cast checks (auto = enabled for development, disabled for stable releases)' ,
deprecated : 'glib_debug' )
option ( 'glib-asserts' , type : 'feature' , value : 'enabled' , yield : true ,
description : 'Enable GLib assertion (auto = enabled for development, disabled for stable releases)' ,
deprecated : 'glib_assert' )
option ( 'glib-checks' , type : 'feature' , value : 'enabled' , yield : true ,
description : 'Enable GLib checks such as API guards (auto = enabled for development, disabled for stable releases)' ,
deprecated : 'glib_checks' )