summaryrefslogtreecommitdiffstats
path: root/rules/ffmpeg.in
blob: b3ba35d85abb957f476055bfdcf0f107a0a0bcf7 (plain)
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
## SECTION=applications

menuconfig FFMPEG
	tristate
	depends on BROKEN
	select ZLIB if FFMPEG_ZLIB
	select SDL if FFMPEG_FFPLAY
	prompt "ffmpeg                        "
	help
	  FFmpeg is an audio/video conversion tool.
	  It includes libavcodec, the leading open
	  source codec library. An experimental
	  streaming server for live broadcasts is
	  also included.

if FFMPEG

config FFMPEG_SHARED
	bool
	prompt "Build shared libs"
	help
	  To build with shared libraries, use both
	  --enable-shared   and
	  --disable-static

config FFMPEG_STATIC
	bool
	prompt "Build static libs"
	help
	  To build with static libraries, use both
	  --enable-static   and
	  --disable-shared

config FFMPEG_PTHREADS
	bool
	prompt "Use pthreads"
	help
	  This switch enables the build to link against
	  the Posix threads library.

config FFMPEG_FFSERVER
	bool
	depends on BROKEN
	prompt "Build ffserver"
	help
	  FFserver is a streaming server for both audio
	  and video. It supports several live feeds,
	  streaming from files and time shifting on live
	  feeds (you can seek to positions in the past
	  on each live feed, provided you specify a big
	  enough feed storage in ffserver.conf).

config FFMPEG_FFPLAY
	bool
	depends on BROKEN
	prompt "Build ffplay"
	help
	  FFplay is a very simple and portable media
	  player using the FFmpeg libraries and the
	  SDL library. It is mostly used as a testbed
	  for the various FFmpeg APIs.

config FFMPEG_MEMALIGN_HACK
	bool
	prompt "Use memalign hack"
	help
	  Reportedly, this is a Windows hack. Without this
	  option ffmpeg always crashes with the message
	  "removing common factors from framerate" when
	  encoding AVIs.

config FFMPEG_SMALL
	bool
	prompt "Optimize for size"
	help
	  Optimize for size instead of speed

config FFMPEG_STRIP
	bool
	prompt "Strip executables"
	help
	  Stripping of executables and shared libraries

config FFMPEG_GPROF
	bool
	prompt "Enable profiling"
	help
	  Enable profiling with gprof

config FFMPEG_DEBUG
	bool
	prompt "Enable debug"
	help
	  Create debugging symbols

config FFMPEG_OPTS
	bool
	prompt "Enable optimization"
	help
	  Enable compiler optimizations

config FFMPEG_GPL
	bool
	prompt "Allow GPL code"
	help
	  Allow use of GPL code, the resulting libav*
	  and ffmpeg will be under GPL

config FFMPEG_MP3LAME
	bool
	depends on BROKEN
	prompt "mp3lame support"
	help
	  Enable MP3 encoding via libmp3lame

config FFMPEG_LIBOGG
	bool
	depends on BROKEN
	prompt "libogg support"
	help
	  Enable Ogg support via libogg

config FFMPEG_VORBIS
	bool
	depends on BROKEN
	prompt "vorbis support"
	help
	  Enable Vorbis support via libvorbis

config FFMPEG_THEORA
	bool
	depends on BROKEN
	prompt "theora support"
	help
	  Enable Theora support via libtheora.
	  Theora is a free and open video compression
	  format from the Xiph.org Foundation.
	  More information on http://www.theora.org/

config FFMPEG_FAAD
	bool
	depends on BROKEN
	prompt "faad support"
	help
	  Enable FAAD support via libfaad

config FFMPEG_FAADBIN
	bool
	depends on BROKEN
	prompt "FAAD runtime linking"
	help
	  Build FAAD support with runtime linking

config FFMPEG_FAAC
	bool
	depends on BROKEN
	prompt "FAAC support"
	help
	  Enable FAAC support via libfaac

config FFMPEG_LIBGSM
	bool
	depends on BROKEN
	prompt "libgsm support"
	help
	  Enable GSM support via libgsm

config FFMPEG_XVID
	bool
	depends on BROKEN
	prompt "XviD support"
	help
	  Enable XviD support via xvidcore

config FFMPEG_X264
	bool
	depends on BROKEN
	prompt "X264 support"
	help
	  Enable H.264 encoding via x264

config FFMPEG_A52
	bool
	depends on BROKEN
	prompt "A52 support"
	help
	  Enable GPLed A52 support

config FFMPEG_A52BIN
	bool
	depends on BROKEN
	prompt "A52 runtime support"
	help
	  Open liba52.so.0 at runtime

config FFMPEG_DTS
	bool
	depends on BROKEN
	prompt "DTS support"
	help
	  Enable GPLed DTS support

config FFMPEG_PP
	bool
	depends on FFMPEG_GPL
	prompt "Post Prosessing support"
	help
	  Enable GPLed postprocessing support

config FFMPEG_AMR_NB
        bool
	depends on BROKEN
        prompt "AMR_NB float audio codec"
        help
          Enable amr_nb float audio codec

config FFMPEG_AMR_NB_FIXED
        bool
	depends on BROKEN
        prompt "AMR_NB fixed point audio codec"
        help
          Use fixed point for amr-nb codec

config FFMPEG_AMR_WB
        bool
	depends on BROKEN
        prompt "AMR_WB float audio codec"
        help
          Enable amr_wb float audio codec

config FFMPEG_AMR_IF2
        bool
	depends on BROKEN
        prompt "AMR_IF2 audio codec"
        help
          Enable amr_wb IF2 audio codec

config FFMPEG_DC1394
        bool
	depends on BROKEN
        prompt "IIDC-1394 grabbing"
        help
          Enable IIDC-1394 grabbing using libdc1394
	  and libraw1394

config FFMPEG_AUDIO_OSS
        bool
        prompt "OSS Audio support"
        help
          Enable OSS (Open Sound System) audio support

config FFMPEG_V4L
        bool
        prompt "V4L support"
        help
          Enable video4linux grabbing


config FFMPEG_V4L2
        bool
        prompt "V4L2 support"
        help
          Enable video4linux2 grabbing

config FFMPEG_BKTR
        bool
        prompt "BKTR support"
        help
          Enable bktr video grabbing

config FFMPEG_DV1394
        bool
        prompt "DV1394 grabbing support"
        help
          Enable DV1394 grabbing

config FFMPEG_NETWORK
        bool
        prompt "Network support"

config FFMPEG_ZLIB
        bool
	select ZLIB
        prompt "ZLIB support"
        help
          Include functionality by zlib compression library

config FFMPEG_SIMPLE_IDCT
        bool
        prompt "Simple IDCT support"
        help
          Use simple IDCT routines

config FFMPEG_VHOOK
        bool
        prompt "video hooking support"
        help
          Enable video hooking support

config FFMPEG_MPEGAUDIO_HP
        bool
        prompt "Faster MPEG audio decoding support"
        help
          Selects faster (but less accurate) MPEG audio decoding

config FFMPEG_PROTOCOL
        bool
        prompt "I/O protocols support"
        help
          Enable I/O protocols support

endif