-
Notifications
You must be signed in to change notification settings - Fork 119
/
Copy pathmeson_options.txt
131 lines (115 loc) · 5.95 KB
/
meson_options.txt
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
# GUI toolkits
option('gtk', type: 'boolean', value: true,
description: 'Whether GTK support is enabled')
option('gtk2', type: 'boolean', value: false,
description: 'Whether GTK 2 support is enabled')
option('qt', type: 'boolean', value: true,
description: 'Whether Qt support is enabled')
option('qt5', type: 'boolean', value: false,
description: 'Whether Qt 5 support is enabled')
# container plugins
option('cue', type: 'boolean', value: true,
description: 'Whether libcue support is enabled')
# transport plugins
option('mms', type: 'boolean', value: true,
description: 'Whether the libmms MMS client is enabled')
option('neon', type: 'boolean', value: true,
description: 'Whether the neon HTTP client is enabled')
# input plugins
option('aac', type: 'boolean', value: true,
description: 'Whether the FAAD-based raw AAC plugin is enabled')
option('adplug', type: 'boolean', value: true,
description: 'Whether AdPlug support is enabled')
option('amidiplug', type: 'boolean', value: true,
description: 'Whether AMidiPlug plugin is enabled')
option('cdaudio', type: 'boolean', value: true,
description: 'Whether CD audio support is enabled')
option('cdaudio-cddb', type: 'boolean', value: true,
description: 'Whether CDDB support for the Audio CD plugin is enabled')
option('console', type: 'boolean', value: true,
description: 'Whether Game Music Emu support is enabled')
option('ffaudio', type: 'boolean', value: true,
description: 'Whether FFmpeg support is enabled')
option('flac', type: 'boolean', value: true,
description: 'Whether FLAC support is enabled')
option('modplug', type: 'boolean', value: true,
description: 'Whether ModPlug support is enabled')
option('mpg123', type: 'boolean', value: true,
description: 'Whether MPG123 support is enabled')
option('openmpt', type: 'boolean', value: true,
description: 'Whether OpenMPT support is enabled')
option('opus', type: 'boolean', value: true,
description: 'Whether Opus support is enabled')
option('sid', type: 'boolean', value: true,
description: 'Whether SID emulation support is enabled')
option('sndfile', type: 'boolean', value: true,
description: 'Whether libsndfile support is enabled')
option('vorbis', type: 'boolean', value: true,
description: 'Whether Ogg Vorbis support is enabled')
option('wavpack', type: 'boolean', value: true,
description: 'Whether WavPack support is enabled')
# output plugins
option('alsa', type: 'boolean', value: true,
description: 'Whether ALSA support is enabled')
option('coreaudio', type: 'boolean', value: true,
description: 'Whether CoreAudio support is enabled')
option('filewriter', type: 'boolean', value: true,
description: 'Whether FileWriter (transcoding) support is enabled')
option('filewriter-flac', type: 'boolean', value: true,
description: 'Whether FileWriter (transcoding) FLAC support is enabled')
option('filewriter-mp3', type: 'boolean', value: true,
description: 'Whether FileWriter (transcoding) MP3 support is enabled')
option('filewriter-ogg', type: 'boolean', value: true,
description: 'Whether FileWriter (transcoding) OGG support is enabled')
option('jack', type: 'boolean', value: true,
description: 'Whether JACK support is enabled')
option('oss', type: 'boolean', value: true,
description: 'Whether OSS support is enabled')
option('pipewire', type: 'boolean', value: true,
description: 'Whether PipeWire support is enabled')
option('pulse', type: 'boolean', value: true,
description: 'Whether PulseAudio support is enabled')
option('qtaudio', type: 'boolean', value: true,
description: 'Whether QtMultimedia support is enabled')
option('sdlout', type: 'boolean', value: true,
description: 'Whether SDL support is enabled')
option('sndio', type: 'boolean', value: true,
description: 'Whether sndio support is enabled')
# general plugins
option('ampache', type: 'boolean', value: true,
description: 'Whether the Ampache browser plugin is enabled')
option('aosd', type: 'boolean', value: true,
description: 'Whether the OSD plugin (X11) is enabled')
option('hotkey', type: 'boolean', value: true,
description: 'Whether the global hotkey plugin (X11) is enabled')
option('lirc', type: 'boolean', value: true,
description: 'Whether the LIRC plugin is enabled')
option('mac-media-keys', type: 'boolean', value: false,
description: 'Whether the Mac Media Keys plugin is enabled')
option('mpris2', type: 'boolean', value: true,
description: 'Whether MPRIS 2.0 support is enabled')
option('notify', type: 'boolean', value: true,
description: 'Whether the libnotify OSD plugin is enabled')
option('scrobbler2', type: 'boolean', value: true,
description: 'Whether the Last.fm Scrobbler plugin is enabled')
option('songchange', type: 'boolean', value: true,
description: 'Whether the Song Change plugin is enabled')
option('streamtuner', type: 'boolean', value: false,
description: 'Whether the Stream Tuner plugin is enabled')
# effect plugins
option('bs2b', type: 'boolean', value: true,
description: 'Whether the BS2B effect plugin is enabled')
option('resample', type: 'boolean', value: true,
description: 'Whether the resample effect plugin is enabled')
option('soxr', type: 'boolean', value: true,
description: 'Whether the SoX resampler effect plugin is enabled')
option('speedpitch', type: 'boolean', value: true,
description: 'Whether the speed / pitch effect plugin is enabled')
# visualization plugins
option('gl-spectrum', type: 'boolean', value: true,
description: 'Whether the OpenGL spectrum visualization plugin is enabled')
option('vumeter', type: 'boolean', value: true,
description: 'Whether the VU Meter visualization plugin is enabled')
# interface plugins
option('moonstone', type: 'boolean', value: false,
description: 'Whether the Moonstone UI plugin is enabled')