Merging gst-plugins-ugly
[platform/upstream/gstreamer.git] / meson_options.txt
1 option('x264_libraries', type : 'string', value : '',
2        description : 'Colon separated list of additional x264 library paths, e.g. for 10-bit version')
3
4 # Feature options for plugins without external deps
5 option('asfdemux', type : 'feature', value : 'auto')
6 option('dvdlpcmdec', type : 'feature', value : 'auto')
7 option('dvdsub', type : 'feature', value : 'auto')
8 option('realmedia', type : 'feature', value : 'auto')
9 option('xingmux', type : 'feature', value : 'auto')
10
11 # Feature options for plugins that need external deps
12 option('a52dec', type : 'feature', value : 'auto', description : 'Dolby Digital (AC-3) audio decoder plugin')
13 option('amrnb', type : 'feature', value : 'auto', description : 'Adaptive Multi-Rate Narrow-Band audio codec plugin')
14 option('amrwbdec', type : 'feature', value : 'auto', description : 'Adaptive Multi-Rate Wide-Band audio decoder plugin')
15 option('cdio', type : 'feature', value : 'auto', description : 'CD audio source plugin')
16 option('dvdread', type : 'feature', value : 'auto', description : 'DVD video source plugin')
17 option('mpeg2dec', type : 'feature', value : 'auto', description : 'MPEG 2 video decoder plugin')
18 option('sidplay', type : 'feature', value : 'auto', description : 'Commodore 64 audio decoder plugin')
19 option('x264', type : 'feature', value : 'auto', description : 'H.264 video encoder plugin')
20
21 # Common feature options
22 option('nls', type : 'feature', value : 'auto', yield: true,
23        description : 'Enable native language support (translations)')
24 option('orc', type : 'feature', value : 'auto', yield : true)
25 option('tests', type : 'feature', value : 'auto', yield : true)
26 option('gobject-cast-checks', type : 'feature', value : 'auto', yield : true,
27        description: 'Enable run-time GObject cast checks (auto = enabled for development, disabled for stable releases)')
28 option('glib-asserts', type : 'feature', value : 'enabled', yield : true,
29        description: 'Enable GLib assertion (auto = enabled for development, disabled for stable releases)')
30 option('glib-checks', type : 'feature', value : 'enabled', yield : true,
31        description: 'Enable GLib checks such as API guards (auto = enabled for development, disabled for stable releases)')
32
33 # Common options
34 option('package-name', type : 'string', yield : true,
35        description : 'package name to use in plugins')
36 option('package-origin', type : 'string', value : 'Unknown package origin', yield: true,
37        description : 'package origin URL to use in plugins')
38 option('doc', type : 'feature', value : 'auto', yield: true,
39        description: 'Enable documentation.')