subparse: Add reference timestamp meta in GstBuffer for HLS webvtt
[platform/upstream/gstreamer.git] / meson_options.txt
1 option('audioresample_format', type : 'combo',
2        choices : ['int', 'float', 'auto'], value : 'auto')
3 option('install_plugins_helper', type: 'string', value: '',
4        description: 'Path of distro helper script to call to install missing plugins')
5 option('iso-codes', type : 'feature', value : 'auto',
6        description: 'Use iso-codes in libgsttag (for language names)')
7
8 # OpenGL integration library options
9 option('gl_api', type : 'array', choices : ['opengl', 'gles2', 'auto'], value : ['auto'],
10        description : 'A comma separated list of opengl APIs to enable building against')
11 option('gl_platform', type : 'array',
12        choices : ['glx', 'egl', 'cgl', 'wgl', 'eagl', 'auto'], value : ['auto'],
13        description : 'A comma separated list of opengl platforms to enable building against')
14 option('gl_winsys', type : 'array',
15        choices : ['x11', 'wayland', 'win32', 'cocoa', 'dispmanx', 'viv-fb', 'gbm', 'android', 'auto'], value : ['auto'],
16        description : 'A comma separated list of opengl windows systems to enable building against. Supported values are x11, wayland, win32, cocoa, dispmanx, viv-fb, gbm and android')
17 option('egl_module_name', type : 'string', value : '',
18        description : 'The file to pass to g_module_open to open the libEGL library (default: libEGL)')
19 option('opengl_module_name', type : 'string', value : '',
20        description : 'The file to pass to g_module_open to open the libGL library (default: libGL)')
21 option('gles2_module_name', type : 'string', value : '',
22        description : 'The file to pass to g_module_open to open the libGLESv2 library (default: libGLESv2)')
23
24 # Feature option for opengl plugin and integration library
25 option('gl', type : 'feature', value : 'auto', description : 'OpenGL integration library and OpenGL plugin')
26 option('gl-graphene', type : 'feature', value : 'auto', description : 'Use Graphene in OpenGL plugin')
27 option('gl-jpeg', type : 'feature', value : 'auto', description : 'Use libjpeg in OpenGL plugin')
28 option('gl-png', type : 'feature', value : 'auto', description : 'Use libpng in OpenGL plugin')
29
30 # Feature options for plugins with no external deps
31 option('adder', type : 'feature', value : 'auto')
32 option('app', type : 'feature', value : 'auto')
33 option('audioconvert', type : 'feature', value : 'auto')
34 option('audiomixer', type : 'feature', value : 'auto')
35 option('audiorate', type : 'feature', value : 'auto')
36 option('audioresample', type : 'feature', value : 'auto')
37 option('audiotestsrc', type : 'feature', value : 'auto')
38 option('compositor', type : 'feature', value : 'auto')
39 option('encoding', type : 'feature', value : 'auto')
40 option('gio', type : 'feature', value : 'auto')
41 option('overlaycomposition', type : 'feature', value : 'auto')
42 option('pbtypes', type : 'feature', value : 'auto')
43 option('playback', type : 'feature', value : 'auto')
44 option('rawparse', type : 'feature', value : 'auto')
45 option('subparse', type : 'feature', value : 'auto')
46 option('tcp', type : 'feature', value : 'auto')
47 option('typefind', type : 'feature', value : 'auto')
48 option('videoconvert', type : 'feature', value : 'auto')
49 option('videorate', type : 'feature', value : 'auto')
50 option('videoscale', type : 'feature', value : 'auto')
51 option('videotestsrc', type : 'feature', value : 'auto')
52 option('volume', type : 'feature', value : 'auto')
53
54 # Feature options for plugins with external deps
55 option('alsa', type : 'feature', value : 'auto', description : 'ALSA audio source/sink plugin')
56 option('cdparanoia', type : 'feature', value : 'auto', description : 'cdparanoia plugin')
57 option('libvisual', type : 'feature', value : 'auto', description : 'libvisual audio visualization plugin')
58 option('ogg', type : 'feature', value : 'auto', description : 'ogg parser, muxer, demuxer plugin')
59 option('opus', type : 'feature', value : 'auto', description : 'OPUS audio codec plugin')
60 option('pango', type : 'feature', value : 'auto', description : 'Pango text rendering and overlay plugin')
61 option('theora', type : 'feature', value : 'auto', description : 'Theora video parser and codec plugin')
62 option('tremor', type : 'feature', value : 'auto', description : 'Integer Vorbis decoder plugin for devices without floating point')
63 option('vorbis', type : 'feature', value : 'auto', description : 'Vorbis audio parser, tagger, and codec plugin')
64 option('x11', type : 'feature', value : 'auto', description : 'X11 ximagesink plugin, and X11 support in libraries, plugins, examples')
65 option('xshm', type : 'feature', value : 'auto', description : 'X11 shared memory support for X11 plugins')
66 option('xvideo', type : 'feature', value : 'auto', description : 'X11 XVideo xvimagesink plugin')
67
68 # Common feature options
69 option('examples', type : 'feature', value : 'auto', yield : true)
70 option('tests', type : 'feature', value : 'auto', yield : true)
71 option('tools', type : 'feature', value : 'auto', yield : true)
72 option('gtk_doc', type : 'feature', value : 'auto', yield : true, description : 'Build API documentation with gtk-doc')
73 option('introspection', type : 'feature', value : 'auto', yield : true, description : 'Generate gobject-introspection bindings')
74 option('nls', type : 'feature', value : 'auto', yield: true, description : 'Enable native language support (translations)')
75 option('orc', type : 'feature', value : 'auto', yield : true)
76 option('gobject-cast-checks', type : 'feature', value : 'auto', yield : true,
77        description: 'Enable run-time GObject cast checks (auto = enabled for development, disabled for stable releases)')
78 option('glib-asserts', type : 'feature', value : 'enabled', yield : true,
79        description: 'Enable GLib assertion (auto = enabled for development, disabled for stable releases)')
80 option('glib-checks', type : 'feature', value : 'enabled', yield : true,
81        description: 'Enable GLib checks such as API guards (auto = enabled for development, disabled for stable releases)')
82
83 # Common options
84 option('package-name', type : 'string', yield : true,
85        description : 'package name to use in plugins')
86 option('package-origin', type : 'string', value : 'Unknown package origin', yield : true,
87        description : 'package origin URL to use in plugins')