You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1473 lines
50KB

  1. \input texinfo @c -*- texinfo -*-
  2. @settitle FFmpeg Documentation
  3. @titlepage
  4. @sp 7
  5. @center @titlefont{FFmpeg Documentation}
  6. @sp 3
  7. @end titlepage
  8. @chapter Introduction
  9. FFmpeg is a very fast video and audio converter. It can also grab from
  10. a live audio/video source.
  11. The command line interface is designed to be intuitive, in the sense
  12. that FFmpeg tries to figure out all parameters that can possibly be
  13. derived automatically. You usually only have to specify the target
  14. bitrate you want.
  15. FFmpeg can also convert from any sample rate to any other, and resize
  16. video on the fly with a high quality polyphase filter.
  17. @chapter Quick Start
  18. @c man begin EXAMPLES
  19. @section Video and Audio grabbing
  20. FFmpeg can use a video4linux compatible video source and any Open Sound
  21. System audio source:
  22. @example
  23. ffmpeg /tmp/out.mpg
  24. @end example
  25. Note that you must activate the right video source and channel before
  26. launching FFmpeg with any TV viewer such as xawtv
  27. (@url{http://bytesex.org/xawtv/}) by Gerd Knorr. You also
  28. have to set the audio recording levels correctly with a
  29. standard mixer.
  30. @section Video and Audio file format conversion
  31. * FFmpeg can use any supported file format and protocol as input:
  32. Examples:
  33. * You can use YUV files as input:
  34. @example
  35. ffmpeg -i /tmp/test%d.Y /tmp/out.mpg
  36. @end example
  37. It will use the files:
  38. @example
  39. /tmp/test0.Y, /tmp/test0.U, /tmp/test0.V,
  40. /tmp/test1.Y, /tmp/test1.U, /tmp/test1.V, etc...
  41. @end example
  42. The Y files use twice the resolution of the U and V files. They are
  43. raw files, without header. They can be generated by all decent video
  44. decoders. You must specify the size of the image with the @option{-s} option
  45. if FFmpeg cannot guess it.
  46. * You can input from a raw YUV420P file:
  47. @example
  48. ffmpeg -i /tmp/test.yuv /tmp/out.avi
  49. @end example
  50. test.yuv is a file containing raw YUV planar data. Each frame is composed
  51. of the Y plane followed by the U and V planes at half vertical and
  52. horizontal resolution.
  53. * You can output to a raw YUV420P file:
  54. @example
  55. ffmpeg -i mydivx.avi hugefile.yuv
  56. @end example
  57. * You can set several input files and output files:
  58. @example
  59. ffmpeg -i /tmp/a.wav -s 640x480 -i /tmp/a.yuv /tmp/a.mpg
  60. @end example
  61. Converts the audio file a.wav and the raw YUV video file a.yuv
  62. to MPEG file a.mpg.
  63. * You can also do audio and video conversions at the same time:
  64. @example
  65. ffmpeg -i /tmp/a.wav -ar 22050 /tmp/a.mp2
  66. @end example
  67. Converts a.wav to MPEG audio at 22050Hz sample rate.
  68. * You can encode to several formats at the same time and define a
  69. mapping from input stream to output streams:
  70. @example
  71. ffmpeg -i /tmp/a.wav -ab 64 /tmp/a.mp2 -ab 128 /tmp/b.mp2 -map 0:0 -map 0:0
  72. @end example
  73. Converts a.wav to a.mp2 at 64 kbits and to b.mp2 at 128 kbits. '-map
  74. file:index' specifies which input stream is used for each output
  75. stream, in the order of the definition of output streams.
  76. * You can transcode decrypted VOBs
  77. @example
  78. ffmpeg -i snatch_1.vob -f avi -vcodec mpeg4 -b 800k -g 300 -bf 2 -acodec mp3 -ab 128 snatch.avi
  79. @end example
  80. This is a typical DVD ripping example; the input is a VOB file, the
  81. output an AVI file with MPEG-4 video and MP3 audio. Note that in this
  82. command we use B-frames so the MPEG-4 stream is DivX5 compatible, and
  83. GOP size is 300 which means one intra frame every 10 seconds for 29.97fps
  84. input video. Furthermore, the audio stream is MP3-encoded so you need
  85. to enable LAME support by passing @code{--enable-mp3lame} to configure.
  86. The mapping is particularly useful for DVD transcoding
  87. to get the desired audio language.
  88. NOTE: To see the supported input formats, use @code{ffmpeg -formats}.
  89. @c man end
  90. @chapter Invocation
  91. @section Syntax
  92. The generic syntax is:
  93. @example
  94. @c man begin SYNOPSIS
  95. ffmpeg [[infile options][@option{-i} @var{infile}]]... @{[outfile options] @var{outfile}@}...
  96. @c man end
  97. @end example
  98. @c man begin DESCRIPTION
  99. If no input file is given, audio/video grabbing is done.
  100. As a general rule, options are applied to the next specified
  101. file. For example, if you give the @option{-b 64k} option, it sets the video
  102. bitrate of the next file. The format option may be needed for raw input
  103. files.
  104. By default, FFmpeg tries to convert as losslessly as possible: It
  105. uses the same audio and video parameters for the outputs as the one
  106. specified for the inputs.
  107. @c man end
  108. @c man begin OPTIONS
  109. @section Main options
  110. @table @option
  111. @item -L
  112. Show license.
  113. @item -h
  114. Show help.
  115. @item -formats
  116. Show available formats, codecs, protocols, ...
  117. @item -f fmt
  118. Force format.
  119. @item -i filename
  120. input filename
  121. @item -y
  122. Overwrite output files.
  123. @item -t duration
  124. Set the recording time in seconds.
  125. @code{hh:mm:ss[.xxx]} syntax is also supported.
  126. @item -ss position
  127. Seek to given time position in seconds.
  128. @code{hh:mm:ss[.xxx]} syntax is also supported.
  129. @item -title string
  130. Set the title.
  131. @item -author string
  132. Set the author.
  133. @item -copyright string
  134. Set the copyright.
  135. @item -comment string
  136. Set the comment.
  137. @item -track number
  138. Set the track.
  139. @item -year number
  140. Set the year.
  141. @item -target type
  142. Specify target file type ("vcd", "svcd", "dvd", "dv", "pal-vcd",
  143. "ntsc-svcd", ... ). All the format options (bitrate, codecs,
  144. buffer sizes) are then set automatically. You can just type:
  145. @example
  146. ffmpeg -i myfile.avi -target vcd /tmp/vcd.mpg
  147. @end example
  148. Nevertheless you can specify additional options as long as you know
  149. they do not conflict with the standard, as in:
  150. @example
  151. ffmpeg -i myfile.avi -target vcd -bf 2 /tmp/vcd.mpg
  152. @end example
  153. @item -itsoffset offset
  154. Set the input time offset in seconds.
  155. @code{[-]hh:mm:ss[.xxx]} syntax is also supported.
  156. This option affects all the input files that follow it.
  157. The offset is added to the timestamps of the input files.
  158. Specifying a positive offset means that the corresponding
  159. streams are delayed by 'offset' seconds.
  160. @end table
  161. @section Video Options
  162. @table @option
  163. @item -b bitrate
  164. Set the video bitrate in bit/s (default = 200 kb/s).
  165. @item -r fps
  166. Set frame rate (default = 25).
  167. @item -s size
  168. Set frame size. The format is @samp{wxh} (default = 160x128).
  169. The following abbreviations are recognized:
  170. @table @samp
  171. @item sqcif
  172. 128x96
  173. @item qcif
  174. 176x144
  175. @item cif
  176. 352x288
  177. @item 4cif
  178. 704x576
  179. @end table
  180. @item -aspect aspect
  181. Set aspect ratio (4:3, 16:9 or 1.3333, 1.7777).
  182. @item -croptop size
  183. Set top crop band size (in pixels).
  184. @item -cropbottom size
  185. Set bottom crop band size (in pixels).
  186. @item -cropleft size
  187. Set left crop band size (in pixels).
  188. @item -cropright size
  189. Set right crop band size (in pixels).
  190. @item -padtop size
  191. Set top pad band size (in pixels).
  192. @item -padbottom size
  193. Set bottom pad band size (in pixels).
  194. @item -padleft size
  195. Set left pad band size (in pixels).
  196. @item -padright size
  197. Set right pad band size (in pixels).
  198. @item -padcolor (hex color)
  199. Set color of padded bands. The value for padcolor is expressed
  200. as a six digit hexadecimal number where the first two digits
  201. represent red, the middle two digits green and last two digits
  202. blue (default = 000000 (black)).
  203. @item -vn
  204. Disable video recording.
  205. @item -bt tolerance
  206. Set video bitrate tolerance (in bit/s).
  207. @item -maxrate bitrate
  208. Set max video bitrate tolerance (in bit/s).
  209. @item -minrate bitrate
  210. Set min video bitrate tolerance (in bit/s).
  211. @item -bufsize size
  212. Set rate control buffer size (in bits).
  213. @item -vcodec codec
  214. Force video codec to @var{codec}. Use the @code{copy} special value to
  215. tell that the raw codec data must be copied as is.
  216. @item -sameq
  217. Use same video quality as source (implies VBR).
  218. @item -pass n
  219. Select the pass number (1 or 2). It is useful to do two pass
  220. encoding. The statistics of the video are recorded in the first
  221. pass and the video is generated at the exact requested bitrate
  222. in the second pass.
  223. @item -passlogfile file
  224. Set two pass logfile name to @var{file}.
  225. @end table
  226. @section Advanced Video Options
  227. @table @option
  228. @item -g gop_size
  229. Set the group of pictures size.
  230. @item -intra
  231. Use only intra frames.
  232. @item -qscale q
  233. Use fixed video quantizer scale (VBR).
  234. @item -qmin q
  235. minimum video quantizer scale (VBR)
  236. @item -qmax q
  237. maximum video quantizer scale (VBR)
  238. @item -qdiff q
  239. maximum difference between the quantizer scales (VBR)
  240. @item -qblur blur
  241. video quantizer scale blur (VBR)
  242. @item -qcomp compression
  243. video quantizer scale compression (VBR)
  244. @item -lmin lambda
  245. minimum video lagrange factor (VBR)
  246. @item -lmax lambda
  247. max video lagrange factor (VBR)
  248. @item -mblmin lambda
  249. minimum macroblock quantizer scale (VBR)
  250. @item -mblmax lambda
  251. maximum macroblock quantizer scale (VBR)
  252. These four options (lmin, lmax, mblmin, mblmax) use 'lambda' units,
  253. but you may use the QP2LAMBDA constant to easily convert from 'q' units:
  254. @example
  255. ffmpeg -i src.ext -lmax 21*QP2LAMBDA dst.ext
  256. @end example
  257. @item -rc_init_cplx complexity
  258. initial complexity for single pass encoding
  259. @item -b_qfactor factor
  260. qp factor between P- and B-frames
  261. @item -i_qfactor factor
  262. qp factor between P- and I-frames
  263. @item -b_qoffset offset
  264. qp offset between P- and B-frames
  265. @item -i_qoffset offset
  266. qp offset between P- and I-frames
  267. @item -rc_eq equation
  268. Set rate control equation (@pxref{FFmpeg formula
  269. evaluator}) (default = @code{tex^qComp}).
  270. @item -rc_override override
  271. rate control override for specific intervals
  272. @item -me method
  273. Set motion estimation method to @var{method}.
  274. Available methods are (from lowest to best quality):
  275. @table @samp
  276. @item zero
  277. Try just the (0, 0) vector.
  278. @item phods
  279. @item log
  280. @item x1
  281. @item epzs
  282. (default method)
  283. @item full
  284. exhaustive search (slow and marginally better than epzs)
  285. @end table
  286. @item -dct_algo algo
  287. Set DCT algorithm to @var{algo}. Available values are:
  288. @table @samp
  289. @item 0
  290. FF_DCT_AUTO (default)
  291. @item 1
  292. FF_DCT_FASTINT
  293. @item 2
  294. FF_DCT_INT
  295. @item 3
  296. FF_DCT_MMX
  297. @item 4
  298. FF_DCT_MLIB
  299. @item 5
  300. FF_DCT_ALTIVEC
  301. @end table
  302. @item -idct_algo algo
  303. Set IDCT algorithm to @var{algo}. Available values are:
  304. @table @samp
  305. @item 0
  306. FF_IDCT_AUTO (default)
  307. @item 1
  308. FF_IDCT_INT
  309. @item 2
  310. FF_IDCT_SIMPLE
  311. @item 3
  312. FF_IDCT_SIMPLEMMX
  313. @item 4
  314. FF_IDCT_LIBMPEG2MMX
  315. @item 5
  316. FF_IDCT_PS2
  317. @item 6
  318. FF_IDCT_MLIB
  319. @item 7
  320. FF_IDCT_ARM
  321. @item 8
  322. FF_IDCT_ALTIVEC
  323. @item 9
  324. FF_IDCT_SH4
  325. @item 10
  326. FF_IDCT_SIMPLEARM
  327. @end table
  328. @item -er n
  329. Set error resilience to @var{n}.
  330. @table @samp
  331. @item 1
  332. FF_ER_CAREFUL (default)
  333. @item 2
  334. FF_ER_COMPLIANT
  335. @item 3
  336. FF_ER_AGGRESSIVE
  337. @item 4
  338. FF_ER_VERY_AGGRESSIVE
  339. @end table
  340. @item -ec bit_mask
  341. Set error concealment to @var{bit_mask}. @var{bit_mask} is a bit mask of
  342. the following values:
  343. @table @samp
  344. @item 1
  345. FF_EC_GUESS_MVS (default = enabled)
  346. @item 2
  347. FF_EC_DEBLOCK (default = enabled)
  348. @end table
  349. @item -bf frames
  350. Use 'frames' B-frames (supported for MPEG-1, MPEG-2 and MPEG-4).
  351. @item -mbd mode
  352. macroblock decision
  353. @table @samp
  354. @item 0
  355. FF_MB_DECISION_SIMPLE: Use mb_cmp (cannot change it yet in FFmpeg).
  356. @item 1
  357. FF_MB_DECISION_BITS: Choose the one which needs the fewest bits.
  358. @item 2
  359. FF_MB_DECISION_RD: rate distortion
  360. @end table
  361. @item -4mv
  362. Use four motion vector by macroblock (MPEG-4 only).
  363. @item -part
  364. Use data partitioning (MPEG-4 only).
  365. @item -bug param
  366. Work around encoder bugs that are not auto-detected.
  367. @item -strict strictness
  368. How strictly to follow the standards.
  369. @item -aic
  370. Enable Advanced intra coding (h263+).
  371. @item -umv
  372. Enable Unlimited Motion Vector (h263+)
  373. @item -deinterlace
  374. Deinterlace pictures.
  375. @item -ilme
  376. Force interlacing support in encoder (MPEG-2 and MPEG-4 only).
  377. Use this option if your input file is interlaced and you want
  378. to keep the interlaced format for minimum losses.
  379. The alternative is to deinterlace the input stream with
  380. @option{-deinterlace}, but deinterlacing introduces losses.
  381. @item -psnr
  382. Calculate PSNR of compressed frames.
  383. @item -vstats
  384. Dump video coding statistics to @file{vstats_HHMMSS.log}.
  385. @item -vhook module
  386. Insert video processing @var{module}. @var{module} contains the module
  387. name and its parameters separated by spaces.
  388. @end table
  389. @section Audio Options
  390. @table @option
  391. @item -ar freq
  392. Set the audio sampling frequency (default = 44100 Hz).
  393. @item -ab bitrate
  394. Set the audio bitrate in kbit/s (default = 64).
  395. @item -ac channels
  396. Set the number of audio channels (default = 1).
  397. @item -an
  398. Disable audio recording.
  399. @item -acodec codec
  400. Force audio codec to @var{codec}. Use the @code{copy} special value to
  401. specify that the raw codec data must be copied as is.
  402. @item -newaudio
  403. Add a new audio track to the output file. If you want to specify parameters,
  404. do so before @code{-newaudio} (@code{-acodec}, @code{-ab}, etc..).
  405. Mapping will be done automatically, if the number of output streams is equal to
  406. the number of input streams, else it will pick the first one that matches. You
  407. can override the mapping using @code{-map} as usual.
  408. Example:
  409. @example
  410. ffmpeg -i file.mpg -vcodec copy -acodec ac3 -ab 384 test.mpg -acodec mp2 -ab 192 -newaudio
  411. @end example
  412. @end table
  413. @section Audio/Video grab options
  414. @table @option
  415. @item -vd device
  416. sEt video grab device (e.g. @file{/dev/video0}).
  417. @item -vc channel
  418. Set video grab channel (DV1394 only).
  419. @item -tvstd standard
  420. Set television standard (NTSC, PAL (SECAM)).
  421. @item -dv1394
  422. Set DV1394 grab.
  423. @item -ad device
  424. Set audio device (e.g. @file{/dev/dsp}).
  425. @end table
  426. @section Advanced options
  427. @table @option
  428. @item -map input stream id[:input stream id]
  429. Set stream mapping from input streams to output streams.
  430. Just enumerate the input streams in the order you want them in the output.
  431. [input stream id] sets the (input) stream to sync against.
  432. @item -debug
  433. Print specific debug info.
  434. @item -benchmark
  435. Add timings for benchmarking.
  436. @item -hex
  437. Dump each input packet.
  438. @item -bitexact
  439. Only use bit exact algorithms (for codec testing).
  440. @item -ps size
  441. Set packet size in bits.
  442. @item -re
  443. Read input at native frame rate. Mainly used to simulate a grab device.
  444. @item -loop
  445. Loop over the input stream. Currently it works only for image
  446. streams. This option is used for automatic FFserver testing.
  447. @item -loop_output number_of_times
  448. Repeatedly loop output for formats that support looping such as animated GIF
  449. (0 will loop the output infinitely).
  450. @item -vsync parameter
  451. Video sync method. Video will be stretched/squeezed to match the timestamps,
  452. it is done by duplicating and dropping frames. With -map you can select from
  453. which stream the timestamps should be taken. You can leave either video or
  454. audio unchanged and sync the remaining stream(s) to the unchanged one.
  455. @item -async samples_per_second
  456. Audio sync method. "Stretches/squeezes" the audio stream to match the timestamps,
  457. the parameter is the maximum samples per second by which the audio is changed.
  458. -async 1 is a special case where only the start of the audio stream is corrected
  459. without any later correction.
  460. @end table
  461. @node FFmpeg formula evaluator
  462. @section FFmpeg formula evaluator
  463. When evaluating a rate control string, FFmpeg uses an internal formula
  464. evaluator.
  465. The following binary operators are available: @code{+}, @code{-},
  466. @code{*}, @code{/}, @code{^}.
  467. The following unary operators are available: @code{+}, @code{-},
  468. @code{(...)}.
  469. The following functions are available:
  470. @table @var
  471. @item sinh(x)
  472. @item cosh(x)
  473. @item tanh(x)
  474. @item sin(x)
  475. @item cos(x)
  476. @item tan(x)
  477. @item exp(x)
  478. @item log(x)
  479. @item squish(x)
  480. @item gauss(x)
  481. @item abs(x)
  482. @item max(x, y)
  483. @item min(x, y)
  484. @item gt(x, y)
  485. @item lt(x, y)
  486. @item eq(x, y)
  487. @item bits2qp(bits)
  488. @item qp2bits(qp)
  489. @end table
  490. The following constants are available:
  491. @table @var
  492. @item PI
  493. @item E
  494. @item iTex
  495. @item pTex
  496. @item tex
  497. @item mv
  498. @item fCode
  499. @item iCount
  500. @item mcVar
  501. @item var
  502. @item isI
  503. @item isP
  504. @item isB
  505. @item avgQP
  506. @item qComp
  507. @item avgIITex
  508. @item avgPITex
  509. @item avgPPTex
  510. @item avgBPTex
  511. @item avgTex
  512. @end table
  513. @c man end
  514. @ignore
  515. @setfilename ffmpeg
  516. @settitle FFmpeg video converter
  517. @c man begin SEEALSO
  518. ffserver(1), ffplay(1) and the HTML documentation of @file{ffmpeg}.
  519. @c man end
  520. @c man begin AUTHOR
  521. Fabrice Bellard
  522. @c man end
  523. @end ignore
  524. @section Protocols
  525. The filename can be @file{-} to read from standard input or to write
  526. to standard output.
  527. FFmpeg also handles many protocols specified with an URL syntax.
  528. Use 'ffmpeg -formats' to see a list of the supported protocols.
  529. The protocol @code{http:} is currently used only to communicate with
  530. FFserver (see the FFserver documentation). When FFmpeg will be a
  531. video player it will also be used for streaming :-)
  532. @chapter Tips
  533. @itemize
  534. @item For streaming at very low bitrate application, use a low frame rate
  535. and a small GOP size. This is especially true for RealVideo where
  536. the Linux player does not seem to be very fast, so it can miss
  537. frames. An example is:
  538. @example
  539. ffmpeg -g 3 -r 3 -t 10 -b 50k -s qcif -f rv10 /tmp/b.rm
  540. @end example
  541. @item The parameter 'q' which is displayed while encoding is the current
  542. quantizer. The value 1 indicates that a very good quality could
  543. be achieved. The value 31 indicates the worst quality. If q=31 appears
  544. too often, it means that the encoder cannot compress enough to meet
  545. your bitrate. You must either increase the bitrate, decrease the
  546. frame rate or decrease the frame size.
  547. @item If your computer is not fast enough, you can speed up the
  548. compression at the expense of the compression ratio. You can use
  549. '-me zero' to speed up motion estimation, and '-intra' to disable
  550. motion estimation completely (you have only I-frames, which means it
  551. is about as good as JPEG compression).
  552. @item To have very low audio bitrates, reduce the sampling frequency
  553. (down to 22050 kHz for MPEG audio, 22050 or 11025 for AC3).
  554. @item To have a constant quality (but a variable bitrate), use the option
  555. '-qscale n' when 'n' is between 1 (excellent quality) and 31 (worst
  556. quality).
  557. @item When converting video files, you can use the '-sameq' option which
  558. uses the same quality factor in the encoder as in the decoder.
  559. It allows almost lossless encoding.
  560. @end itemize
  561. @chapter Supported File Formats and Codecs
  562. You can use the @code{-formats} option to have an exhaustive list.
  563. @section File Formats
  564. FFmpeg supports the following file formats through the @code{libavformat}
  565. library:
  566. @multitable @columnfractions .4 .1 .1 .4
  567. @item Supported File Format @tab Encoding @tab Decoding @tab Comments
  568. @item MPEG audio @tab X @tab X
  569. @item MPEG-1 systems @tab X @tab X
  570. @tab muxed audio and video
  571. @item MPEG-2 PS @tab X @tab X
  572. @tab also known as @code{VOB} file
  573. @item MPEG-2 TS @tab @tab X
  574. @tab also known as DVB Transport Stream
  575. @item ASF@tab X @tab X
  576. @item AVI@tab X @tab X
  577. @item WAV@tab X @tab X
  578. @item Macromedia Flash@tab X @tab X
  579. @tab Only embedded audio is decoded.
  580. @item FLV @tab X @tab X
  581. @tab Macromedia Flash video files
  582. @item Real Audio and Video @tab X @tab X
  583. @item Raw AC3 @tab X @tab X
  584. @item Raw MJPEG @tab X @tab X
  585. @item Raw MPEG video @tab X @tab X
  586. @item Raw PCM8/16 bits, mulaw/Alaw@tab X @tab X
  587. @item Raw CRI ADX audio @tab X @tab X
  588. @item Raw Shorten audio @tab @tab X
  589. @item SUN AU format @tab X @tab X
  590. @item NUT @tab X @tab X @tab NUT Open Container Format
  591. @item QuickTime @tab X @tab X
  592. @item MPEG-4 @tab X @tab X
  593. @tab MPEG-4 is a variant of QuickTime.
  594. @item Raw MPEG4 video @tab X @tab X
  595. @item DV @tab X @tab X
  596. @item 4xm @tab @tab X
  597. @tab 4X Technologies format, used in some games.
  598. @item Playstation STR @tab @tab X
  599. @item Id RoQ @tab @tab X
  600. @tab Used in Quake III, Jedi Knight 2, other computer games.
  601. @item Interplay MVE @tab @tab X
  602. @tab Format used in various Interplay computer games.
  603. @item WC3 Movie @tab @tab X
  604. @tab Multimedia format used in Origin's Wing Commander III computer game.
  605. @item Sega FILM/CPK @tab @tab X
  606. @tab Used in many Sega Saturn console games.
  607. @item Westwood Studios VQA/AUD @tab @tab X
  608. @tab Multimedia formats used in Westwood Studios games.
  609. @item Id Cinematic (.cin) @tab @tab X
  610. @tab Used in Quake II.
  611. @item FLIC format @tab @tab X
  612. @tab .fli/.flc files
  613. @item Sierra VMD @tab @tab X
  614. @tab Used in Sierra CD-ROM games.
  615. @item Sierra Online @tab @tab X
  616. @tab .sol files used in Sierra Online games.
  617. @item Matroska @tab @tab X
  618. @item Electronic Arts Multimedia @tab @tab X
  619. @tab Used in various EA games; files have extensions like WVE and UV2.
  620. @item Nullsoft Video (NSV) format @tab @tab X
  621. @item ADTS AAC audio @tab X @tab X
  622. @item Creative VOC @tab X @tab X @tab Created for the Sound Blaster Pro.
  623. @item American Laser Games MM @tab @tab X
  624. @tab Multimedia format used in games like Mad Dog McCree
  625. @item AVS @tab @tab X
  626. @tab Multimedia format used by the Creature Shock game.
  627. @item Smacker @tab @tab X
  628. @tab Multimedia format used by many games.
  629. @item GXF @tab X @tab X
  630. @tab General eXchange Format SMPTE 360M, used by Thomson Grass Valley playout servers.
  631. @item CIN @tab @tab X
  632. @tab Multimedia format used by Delphine Software games.
  633. @item MXF @tab @tab X
  634. @tab Material eXchange Format SMPTE 377M, used by D-Cinema, broadcast industry.
  635. @item SEQ @tab @tab X
  636. @tab Tiertex .seq files used in the DOS CDROM version of the game Flashback.
  637. @end multitable
  638. @code{X} means that encoding (resp. decoding) is supported.
  639. @section Image Formats
  640. FFmpeg can read and write images for each frame of a video sequence. The
  641. following image formats are supported:
  642. @multitable @columnfractions .4 .1 .1 .4
  643. @item Supported Image Format @tab Encoding @tab Decoding @tab Comments
  644. @item PGM, PPM @tab X @tab X
  645. @item PAM @tab X @tab X @tab PAM is a PNM extension with alpha support.
  646. @item PGMYUV @tab X @tab X @tab PGM with U and V components in YUV 4:2:0
  647. @item JPEG @tab X @tab X @tab Progressive JPEG is not supported.
  648. @item .Y.U.V @tab X @tab X @tab one raw file per component
  649. @item animated GIF @tab X @tab X @tab Only uncompressed GIFs are generated.
  650. @item PNG @tab X @tab X @tab 2 bit and 4 bit/pixel not supported yet.
  651. @item Targa @tab @tab X @tab Targa (.TGA) image format.
  652. @item TIFF @tab @tab X @tab Only 24 bit/pixel images are supported.
  653. @item SGI @tab X @tab X @tab SGI RGB image format
  654. @end multitable
  655. @code{X} means that encoding (resp. decoding) is supported.
  656. @section Video Codecs
  657. @multitable @columnfractions .4 .1 .1 .4
  658. @item Supported Codec @tab Encoding @tab Decoding @tab Comments
  659. @item MPEG-1 video @tab X @tab X
  660. @item MPEG-2 video @tab X @tab X
  661. @item MPEG-4 @tab X @tab X
  662. @item MSMPEG4 V1 @tab X @tab X
  663. @item MSMPEG4 V2 @tab X @tab X
  664. @item MSMPEG4 V3 @tab X @tab X
  665. @item WMV7 @tab X @tab X
  666. @item WMV8 @tab X @tab X @tab not completely working
  667. @item H.261 @tab X @tab X
  668. @item H.263(+) @tab X @tab X @tab also known as RealVideo 1.0
  669. @item H.264 @tab @tab X
  670. @item RealVideo 1.0 @tab X @tab X
  671. @item RealVideo 2.0 @tab X @tab X
  672. @item MJPEG @tab X @tab X
  673. @item lossless MJPEG @tab X @tab X
  674. @item JPEG-LS @tab X @tab X @tab fourcc: MJLS, lossless and near-lossless is supported
  675. @item Apple MJPEG-B @tab @tab X
  676. @item Sunplus MJPEG @tab @tab X @tab fourcc: SP5X
  677. @item DV @tab X @tab X
  678. @item HuffYUV @tab X @tab X
  679. @item FFmpeg Video 1 @tab X @tab X @tab experimental lossless codec (fourcc: FFV1)
  680. @item FFmpeg Snow @tab X @tab X @tab experimental wavelet codec (fourcc: SNOW)
  681. @item Asus v1 @tab X @tab X @tab fourcc: ASV1
  682. @item Asus v2 @tab X @tab X @tab fourcc: ASV2
  683. @item Creative YUV @tab @tab X @tab fourcc: CYUV
  684. @item Sorenson Video 1 @tab X @tab X @tab fourcc: SVQ1
  685. @item Sorenson Video 3 @tab @tab X @tab fourcc: SVQ3
  686. @item On2 VP3 @tab @tab X @tab still experimental
  687. @item On2 VP5 @tab @tab X @tab fourcc: VP50
  688. @item On2 VP6 @tab @tab X @tab fourcc: VP62
  689. @item Theora @tab @tab X @tab still experimental
  690. @item Intel Indeo 3 @tab @tab X
  691. @item FLV @tab X @tab X @tab Sorenson H.263 used in Flash
  692. @item Flash Screen Video @tab @tab X @tab fourcc: FSV1
  693. @item ATI VCR1 @tab @tab X @tab fourcc: VCR1
  694. @item ATI VCR2 @tab @tab X @tab fourcc: VCR2
  695. @item Cirrus Logic AccuPak @tab @tab X @tab fourcc: CLJR
  696. @item 4X Video @tab @tab X @tab Used in certain computer games.
  697. @item Sony Playstation MDEC @tab @tab X
  698. @item Id RoQ @tab @tab X @tab Used in Quake III, Jedi Knight 2, other computer games.
  699. @item Xan/WC3 @tab @tab X @tab Used in Wing Commander III .MVE files.
  700. @item Interplay Video @tab @tab X @tab Used in Interplay .MVE files.
  701. @item Apple Animation @tab @tab X @tab fourcc: 'rle '
  702. @item Apple Graphics @tab @tab X @tab fourcc: 'smc '
  703. @item Apple Video @tab @tab X @tab fourcc: rpza
  704. @item Apple QuickDraw @tab @tab X @tab fourcc: qdrw
  705. @item Cinepak @tab @tab X
  706. @item Microsoft RLE @tab @tab X
  707. @item Microsoft Video-1 @tab @tab X
  708. @item Westwood VQA @tab @tab X
  709. @item Id Cinematic Video @tab @tab X @tab Used in Quake II.
  710. @item Planar RGB @tab @tab X @tab fourcc: 8BPS
  711. @item FLIC video @tab @tab X
  712. @item Duck TrueMotion v1 @tab @tab X @tab fourcc: DUCK
  713. @item Duck TrueMotion v2 @tab @tab X @tab fourcc: TM20
  714. @item VMD Video @tab @tab X @tab Used in Sierra VMD files.
  715. @item MSZH @tab @tab X @tab Part of LCL
  716. @item ZLIB @tab X @tab X @tab Part of LCL, encoder experimental
  717. @item TechSmith Camtasia @tab @tab X @tab fourcc: TSCC
  718. @item IBM Ultimotion @tab @tab X @tab fourcc: ULTI
  719. @item Miro VideoXL @tab @tab X @tab fourcc: VIXL
  720. @item QPEG @tab @tab X @tab fourccs: QPEG, Q1.0, Q1.1
  721. @item LOCO @tab @tab X @tab
  722. @item Winnov WNV1 @tab @tab X @tab
  723. @item Autodesk Animator Studio Codec @tab @tab X @tab fourcc: AASC
  724. @item Fraps FPS1 @tab @tab X @tab
  725. @item CamStudio @tab @tab X @tab fourcc: CSCD
  726. @item American Laser Games Video @tab @tab X @tab Used in games like Mad Dog McCree
  727. @item ZMBV @tab @tab X @tab
  728. @item AVS Video @tab @tab X @tab Video encoding used by the Creature Shock game.
  729. @item Smacker Video @tab @tab X @tab Video encoding used in Smacker.
  730. @item RTjpeg @tab @tab X @tab Video encoding used in NuppelVideo files.
  731. @item KMVC @tab @tab X @tab Codec used in Worms games.
  732. @item VMware Video @tab @tab X @tab Codec used in videos captured by VMware.
  733. @item Cin Video @tab @tab X @tab Codec used in Delphine Software games.
  734. @item Tiertex Seq Video @tab @tab X @tab Codec used in DOS CDROM FlashBack game.
  735. @end multitable
  736. @code{X} means that encoding (resp. decoding) is supported.
  737. @section Audio Codecs
  738. @multitable @columnfractions .4 .1 .1 .1 .7
  739. @item Supported Codec @tab Encoding @tab Decoding @tab Comments
  740. @item MPEG audio layer 2 @tab IX @tab IX
  741. @item MPEG audio layer 1/3 @tab IX @tab IX
  742. @tab MP3 encoding is supported through the external library LAME.
  743. @item AC3 @tab IX @tab IX
  744. @tab liba52 is used internally for decoding.
  745. @item Vorbis @tab X @tab X
  746. @tab Supported through the external library libvorbis.
  747. @item WMA V1/V2 @tab @tab X
  748. @item AAC @tab X @tab X
  749. @tab Supported through the external library libfaac/libfaad.
  750. @item Microsoft ADPCM @tab X @tab X
  751. @item MS IMA ADPCM @tab X @tab X
  752. @item QT IMA ADPCM @tab @tab X
  753. @item 4X IMA ADPCM @tab @tab X
  754. @item G.726 ADPCM @tab X @tab X
  755. @item Duck DK3 IMA ADPCM @tab @tab X
  756. @tab Used in some Sega Saturn console games.
  757. @item Duck DK4 IMA ADPCM @tab @tab X
  758. @tab Used in some Sega Saturn console games.
  759. @item Westwood Studios IMA ADPCM @tab @tab X
  760. @tab Used in Westwood Studios games like Command and Conquer.
  761. @item SMJPEG IMA ADPCM @tab @tab X
  762. @tab Used in certain Loki game ports.
  763. @item CD-ROM XA ADPCM @tab @tab X
  764. @item CRI ADX ADPCM @tab X @tab X
  765. @tab Used in Sega Dreamcast games.
  766. @item Electronic Arts ADPCM @tab @tab X
  767. @tab Used in various EA titles.
  768. @item Creative ADPCM @tab @tab X
  769. @tab 16 -> 4, 8 -> 4, 8 -> 3, 8 -> 2
  770. @item RA144 @tab @tab X
  771. @tab Real 14400 bit/s codec
  772. @item RA288 @tab @tab X
  773. @tab Real 28800 bit/s codec
  774. @item RADnet @tab X @tab IX
  775. @tab Real low bitrate AC3 codec, liba52 is used for decoding.
  776. @item AMR-NB @tab X @tab X
  777. @tab Supported through an external library.
  778. @item AMR-WB @tab X @tab X
  779. @tab Supported through an external library.
  780. @item DV audio @tab @tab X
  781. @item Id RoQ DPCM @tab @tab X
  782. @tab Used in Quake III, Jedi Knight 2, other computer games.
  783. @item Interplay MVE DPCM @tab @tab X
  784. @tab Used in various Interplay computer games.
  785. @item Xan DPCM @tab @tab X
  786. @tab Used in Origin's Wing Commander IV AVI files.
  787. @item Sierra Online DPCM @tab @tab X
  788. @tab Used in Sierra Online game audio files.
  789. @item Apple MACE 3 @tab @tab X
  790. @item Apple MACE 6 @tab @tab X
  791. @item FLAC lossless audio @tab @tab X
  792. @item Shorten lossless audio @tab @tab X
  793. @item Apple lossless audio @tab @tab X
  794. @tab QuickTime fourcc 'alac'
  795. @item FFmpeg Sonic @tab X @tab X
  796. @tab experimental lossy/lossless codec
  797. @item Qdesign QDM2 @tab @tab X
  798. @tab there are still some distortions
  799. @item Real COOK @tab @tab X
  800. @tab All versions except 5.1 are supported
  801. @item DSP Group TrueSpeech @tab @tab X
  802. @item True Audio (TTA) @tab @tab X
  803. @item Smacker Audio @tab @tab X
  804. @item WavPack Audio @tab @tab X
  805. @item Cin Audio @tab @tab X
  806. @tab Codec used in Delphine Software games.
  807. @item Intel Music Coder @tab @tab X
  808. @end multitable
  809. @code{X} means that encoding (resp. decoding) is supported.
  810. @code{I} means that an integer-only version is available, too (ensures high
  811. performance on systems without hardware floating point support).
  812. @chapter Platform Specific information
  813. @section Linux
  814. FFmpeg should be compiled with at least GCC 2.95.3. GCC 3.2 is the
  815. preferred compiler now for FFmpeg. All future optimizations will depend on
  816. features only found in GCC 3.2.
  817. @section BSD
  818. BSD make will not build FFmpeg, you need to install and use GNU Make
  819. (@file{gmake}).
  820. @section Windows
  821. @subsection Native Windows compilation
  822. @itemize
  823. @item Install the current versions of MSYS and MinGW from
  824. @url{http://www.mingw.org/}. You can find detailed installation
  825. instructions in the download section and the FAQ.
  826. @item If you want to test the FFplay, also download
  827. the MinGW development library of SDL 1.2.x
  828. (@file{SDL-devel-1.2.x-mingw32.tar.gz}) from
  829. @url{http://www.libsdl.org}. Unpack it in a temporary directory, and
  830. unpack the archive @file{i386-mingw32msvc.tar.gz} in the MinGW tool
  831. directory. Edit the @file{sdl-config} script so that it gives the
  832. correct SDL directory when invoked.
  833. @item Extract the current version of FFmpeg.
  834. @item Start the MSYS shell (file @file{msys.bat}).
  835. @item Change to the FFmpeg directory and follow
  836. the instructions of how to compile FFmpeg (file
  837. @file{INSTALL}). Usually, launching @file{./configure} and @file{make}
  838. suffices. If you have problems using SDL, verify that
  839. @file{sdl-config} can be launched from the MSYS command line.
  840. @item You can install FFmpeg in @file{Program Files/FFmpeg} by typing
  841. @file{make install}. Don't forget to copy @file{SDL.dll} to the place
  842. you launch @file{ffplay} from.
  843. @end itemize
  844. Notes:
  845. @itemize
  846. @item The target @file{make wininstaller} can be used to create a
  847. Nullsoft based Windows installer for FFmpeg and FFplay. @file{SDL.dll}
  848. must be copied to the FFmpeg directory in order to build the
  849. installer.
  850. @item By using @code{./configure --enable-shared} when configuring FFmpeg,
  851. you can build @file{avcodec.dll} and @file{avformat.dll}. With
  852. @code{make install} you install the FFmpeg DLLs and the associated
  853. headers in @file{Program Files/FFmpeg}.
  854. @item Visual C++ compatibility: If you used @code{./configure --enable-shared}
  855. when configuring FFmpeg, FFmpeg tries to use the Microsoft Visual
  856. C++ @code{lib} tool to build @code{avcodec.lib} and
  857. @code{avformat.lib}. With these libraries you can link your Visual C++
  858. code directly with the FFmpeg DLLs (see below).
  859. @end itemize
  860. @subsection Visual C++ compatibility
  861. FFmpeg will not compile under Visual C++ -- and it has too many
  862. dependencies on the GCC compiler to make a port viable. However,
  863. if you want to use the FFmpeg libraries in your own applications,
  864. you can still compile those applications using Visual C++. An
  865. important restriction to this is that you have to use the
  866. dynamically linked versions of the FFmpeg libraries (i.e. the
  867. DLLs), and you have to make sure that Visual-C++-compatible
  868. import libraries are created during the FFmpeg build process.
  869. This description of how to use the FFmpeg libraries with Visual C++ is
  870. based on Visual C++ 2005 Express Edition Beta 2. If you have a different
  871. version, you might have to modify the procedures slightly.
  872. Here are the step-by-step instructions for building the FFmpeg libraries
  873. so they can be used with Visual C++:
  874. @enumerate
  875. @item Install Visual C++ (if you haven't done so already).
  876. @item Install MinGW and MSYS as described above.
  877. @item Add a call to @file{vcvars32.bat} (which sets up the environment
  878. variables for the Visual C++ tools) as the first line of
  879. @file{msys.bat}. The standard location for @file{vcvars32.bat} is
  880. @file{C:\Program Files\Microsoft Visual Studio 8\VC\bin\vcvars32.bat},
  881. and the standard location for @file{msys.bat} is
  882. @file{C:\msys\1.0\msys.bat}. If this corresponds to your setup, add the
  883. following line as the first line of @file{msys.bat}:
  884. @code{call "C:\Program Files\Microsoft Visual Studio 8\VC\bin\vcvars32.bat"}
  885. @item Start the MSYS shell (file @file{msys.bat}) and type @code{link.exe}.
  886. If you get a help message with the command line options of @code{link.exe},
  887. this means your environment variables are set up correctly, the
  888. Microsoft linker is on the path and will be used by FFmpeg to
  889. create Visual-C++-compatible import libraries.
  890. @item Extract the current version of FFmpeg and change to the FFmpeg directory.
  891. @item Type the command
  892. @code{./configure --enable-shared --disable-static --enable-memalign-hack}
  893. to configure and, if that didn't produce any errors,
  894. type @code{make} to build FFmpeg.
  895. @item The subdirectories @file{libavformat}, @file{libavcodec}, and
  896. @file{libavutil} should now contain the files @file{avformat.dll},
  897. @file{avformat.lib}, @file{avcodec.dll}, @file{avcodec.lib},
  898. @file{avutil.dll}, and @file{avutil.lib}, respectively. Copy the three
  899. DLLs to your System32 directory (typically @file{C:\Windows\System32}).
  900. @end enumerate
  901. And here is how to use these libraries with Visual C++:
  902. @enumerate
  903. @item Create a new console application ("File / New / Project") and then
  904. select "Win32 Console Application". On the appropriate page of the
  905. Application Wizard, uncheck the "Precompiled headers" option.
  906. @item Write the source code for your application, or, for testing, just
  907. copy the code from an existing sample application into the source file
  908. that Visual C++ has already created for you. (Note that your source
  909. filehas to have a @code{.cpp} extension; otherwise, Visual C++ won't
  910. compile the FFmpeg headers correctly because in C mode, it doesn't
  911. recognize the @code{inline} keyword.) For example, you can copy
  912. @file{output_example.c} from the FFmpeg distribution (but you will
  913. have to make minor modifications so the code will compile under
  914. C++, see below).
  915. @item Open the "Project / Properties" dialog box. In the "Configuration"
  916. combo box, select "All Configurations" so that the changes you make will
  917. affect both debug and release builds. In the tree view on the left hand
  918. side, select "C/C++ / General", then edit the "Additional Include
  919. Directories" setting to contain the complete paths to the
  920. @file{libavformat}, @file{libavcodec}, and @file{libavutil}
  921. subdirectories of your FFmpeg directory. Note that the directories have
  922. to be separated using semicolons. Now select "Linker / General" from the
  923. tree view and edit the "Additional Library Directories" setting to
  924. contain the same three directories.
  925. @item Still in the "Project / Properties" dialog box, select "Linker / Input"
  926. from the tree view, then add the files @file{avformat.lib},
  927. @file{avcodec.lib}, and @file{avutil.lib} to the end of the "Additional
  928. Dependencies". Note that the names of the libraries have to be separated
  929. using spaces.
  930. @item Now, select "C/C++ / Code Generation" from the tree view. Select
  931. "Debug" in the "Configuration" combo box. Make sure that "Runtime
  932. Library" is set to "Multi-threaded Debug DLL". Then, select "Release" in
  933. the "Configuration" combo box and make sure that "Runtime Library" is
  934. set to "Multi-threaded DLL".
  935. @item Click "OK" to close the "Project / Properties" dialog box and build
  936. the application. Hopefully, it should compile and run cleanly. If you
  937. used @file{output_example.c} as your sample application, you will get a
  938. few compiler errors, but they are easy to fix. The first type of error
  939. occurs because Visual C++ doesn't allow an @code{int} to be converted to
  940. an @code{enum} without a cast. To solve the problem, insert the required
  941. casts (this error occurs once for a @code{CodecID} and once for a
  942. @code{CodecType}). The second type of error occurs because C++ requires
  943. the return value of @code{malloc} to be cast to the exact type of the
  944. pointer it is being assigned to. Visual C++ will complain that, for
  945. example, @code{(void *)} is being assigned to @code{(uint8_t *)} without
  946. an explicit cast. So insert an explicit cast in these places to silence
  947. the compiler. The third type of error occurs because the @code{snprintf}
  948. library function is called @code{_snprintf} under Visual C++. So just
  949. add an underscore to fix the problem. With these changes,
  950. @file{output_example.c} should compile under Visual C++, and the
  951. resulting executable should produce valid video files.
  952. @end enumerate
  953. @subsection Cross compilation for Windows with Linux
  954. You must use the MinGW cross compilation tools available at
  955. @url{http://www.mingw.org/}.
  956. Then configure FFmpeg with the following options:
  957. @example
  958. ./configure --enable-mingw32 --cross-prefix=i386-mingw32msvc-
  959. @end example
  960. (you can change the cross-prefix according to the prefix chosen for the
  961. MinGW tools).
  962. Then you can easily test FFmpeg with Wine
  963. (@url{http://www.winehq.com/}).
  964. @subsection Compilation under Cygwin
  965. Cygwin works very much like Unix.
  966. Just install your Cygwin with all the "Base" packages, plus the
  967. following "Devel" ones:
  968. @example
  969. binutils, gcc-core, make, subversion
  970. @end example
  971. Do not install binutils-20060709-1 (they are buggy on shared builds);
  972. use binutils-20050610-1 instead.
  973. Then run
  974. @example
  975. ./configure --enable-static --disable-shared
  976. @end example
  977. to make a static build or
  978. @example
  979. ./configure --enable-shared --disable-static
  980. @end example
  981. to build shared libraries.
  982. If you want to build FFmpeg with additional libraries, download Cygwin
  983. "Devel" packages for Ogg and Vorbis from any Cygwin packages repository
  984. and/or SDL, xvid, faac, faad2 packages from Cygwin Ports,
  985. (@url{http://cygwinports.dotsrc.org/}).
  986. @subsection Crosscompilation for Windows under Cygwin
  987. With Cygwin you can create Windows binaries that don't need the cygwin1.dll.
  988. Just install your Cygwin as explained before, plus these additional
  989. "Devel" packages:
  990. @example
  991. gcc-mingw-core, mingw-runtime, mingw-zlib
  992. @end example
  993. and add some special flags to your configure invocation.
  994. For a static build run
  995. @example
  996. ./configure --enable-mingw32 --enable-memalign-hack --enable-static --disable-shared --extra-cflags=-mno-cygwin --extra-libs=-mno-cygwin
  997. @end example
  998. and for a build with shared libraries
  999. @example
  1000. ./configure --enable-mingw32 --enable-memalign-hack --enable-shared --disable-static --extra-cflags=-mno-cygwin --extra-libs=-mno-cygwin
  1001. @end example
  1002. @section Mac OS X
  1003. @section BeOS
  1004. The configure script should guess the configuration itself.
  1005. Networking support is currently not finished.
  1006. errno issues fixed by Andrew Bachmann.
  1007. Old stuff:
  1008. François Revol - revol at free dot fr - April 2002
  1009. The configure script should guess the configuration itself,
  1010. however I still didn't test building on the net_server version of BeOS.
  1011. FFserver is broken (needs poll() implementation).
  1012. There are still issues with errno codes, which are negative in BeOS, and
  1013. that FFmpeg negates when returning. This ends up turning errors into
  1014. valid results, then crashes.
  1015. (To be fixed)
  1016. @chapter Developers Guide
  1017. @section API
  1018. @itemize @bullet
  1019. @item libavcodec is the library containing the codecs (both encoding and
  1020. decoding). Look at @file{libavcodec/apiexample.c} to see how to use it.
  1021. @item libavformat is the library containing the file format handling (mux and
  1022. demux code for several formats). Look at @file{ffplay.c} to use it in a
  1023. player. See @file{output_example.c} to use it to generate audio or video
  1024. streams.
  1025. @end itemize
  1026. @section Integrating libavcodec or libavformat in your program
  1027. You can integrate all the source code of the libraries to link them
  1028. statically to avoid any version problem. All you need is to provide a
  1029. 'config.mak' and a 'config.h' in the parent directory. See the defines
  1030. generated by ./configure to understand what is needed.
  1031. You can use libavcodec or libavformat in your commercial program, but
  1032. @emph{any patch you make must be published}. The best way to proceed is
  1033. to send your patches to the FFmpeg mailing list.
  1034. @node Coding Rules
  1035. @section Coding Rules
  1036. FFmpeg is programmed in the ISO C90 language with a few additional
  1037. features from ISO C99, namely:
  1038. @itemize @bullet
  1039. @item
  1040. the @samp{inline} keyword;
  1041. @item
  1042. @samp{//} comments;
  1043. @item
  1044. designated struct initializers (@samp{struct s x = @{ .i = 17 @};})
  1045. @item
  1046. compound literals (@samp{x = (struct s) @{ 17, 23 @};})
  1047. @end itemize
  1048. These features are supported by all compilers we care about, so we won't
  1049. accept patches to remove their use unless they absolutely don't impair
  1050. clarity and performance.
  1051. All code must compile with GCC 2.95 and GCC 3.3. Currently, FFmpeg also
  1052. compiles with several other compilers, such as the Compaq ccc compiler
  1053. or Sun Studio 9, and we would like to keep it that way unless it would
  1054. be exceedingly involved. To ensure compatibility, please don't use any
  1055. additional C99 features or GCC extensions. Especially watch out for:
  1056. @itemize @bullet
  1057. @item
  1058. mixing statements and declarations;
  1059. @item
  1060. @samp{long long} (use @samp{int64_t} instead);
  1061. @item
  1062. @samp{__attribute__} not protected by @samp{#ifdef __GNUC__} or similar;
  1063. @item
  1064. GCC statement expressions (@samp{(x = (@{ int y = 4; y; @})}).
  1065. @end itemize
  1066. Indent size is 4.
  1067. The presentation is the one specified by 'indent -i4 -kr -nut'.
  1068. The TAB character is forbidden outside of Makefiles as is any
  1069. form of trailing whitespace. Commits containing either will be
  1070. rejected by the Subversion repository.
  1071. Main priority in FFmpeg is simplicity and small code size (=less
  1072. bugs).
  1073. Comments: Use the JavaDoc/Doxygen
  1074. format (see examples below) so that code documentation
  1075. can be generated automatically. All nontrivial functions should have a comment
  1076. above them explaining what the function does, even if it's just one sentence.
  1077. All structures and their member variables should be documented, too.
  1078. @example
  1079. /**
  1080. * @@file mpeg.c
  1081. * MPEG codec.
  1082. * @@author ...
  1083. */
  1084. /**
  1085. * Summary sentence.
  1086. * more text ...
  1087. * ...
  1088. */
  1089. typedef struct Foobar@{
  1090. int var1; /**< var1 description */
  1091. int var2; ///< var2 description
  1092. /** var3 description */
  1093. int var3;
  1094. @} Foobar;
  1095. /**
  1096. * Summary sentence.
  1097. * more text ...
  1098. * ...
  1099. * @@param my_parameter description of my_parameter
  1100. * @@return return value description
  1101. */
  1102. int myfunc(int my_parameter)
  1103. ...
  1104. @end example
  1105. fprintf and printf are forbidden in libavformat and libavcodec,
  1106. please use av_log() instead.
  1107. @section Development Policy
  1108. @enumerate
  1109. @item
  1110. You must not commit code which breaks FFmpeg! (Meaning unfinished but
  1111. enabled code which breaks compilation or compiles but does not work or
  1112. breaks the regression tests)
  1113. You can commit unfinished stuff (for testing etc), but it must be disabled
  1114. (#ifdef etc) by default so it does not interfere with other developers'
  1115. work.
  1116. @item
  1117. You don't have to over-test things. If it works for you, and you think it
  1118. should work for others, then commit. If your code has problems
  1119. (portability, triggers compiler bugs, unusual environment etc) they will be
  1120. reported and eventually fixed.
  1121. @item
  1122. Do not commit unrelated changes together, split them into self-contained
  1123. pieces.
  1124. @item
  1125. Do not change behavior of the program (renaming options etc) without
  1126. first discussing it on the ffmpeg-devel mailing list. Do not remove
  1127. functionality from the code. Just improve!
  1128. Note: Redundant code can be removed.
  1129. @item
  1130. Do not commit changes to the build system (Makefiles, configure script)
  1131. which change behavior, defaults etc, without asking first. The same
  1132. applies to compiler warning fixes, trivial looking fixes and to code
  1133. maintained by other developers. We usually have a reason for doing things
  1134. the way we do. Send your changes as patches to the ffmpeg-devel mailing
  1135. list, and if the code maintainers say OK, you may commit. This does not
  1136. apply to files you wrote and/or maintain.
  1137. @item
  1138. We refuse source indentation and other cosmetic changes if they are mixed
  1139. with functional changes, such commits will be rejected and removed. Every
  1140. developer has his own indentation style, you should not change it. Of course
  1141. if you (re)write something, you can use your own style, even though we would
  1142. prefer if the indentation throughout FFmpeg was consistent (Many projects
  1143. force a given indentation style - we don't.). If you really need to make
  1144. indentation changes (try to avoid this), separate them strictly from real
  1145. changes.
  1146. NOTE: If you had to put if()@{ .. @} over a large (> 5 lines) chunk of code,
  1147. then either do NOT change the indentation of the inner part within (don't
  1148. move it to the right)! or do so in a separate commit
  1149. @item
  1150. Always fill out the commit log message. Describe in a few lines what you
  1151. changed and why. You can refer to mailing list postings if you fix a
  1152. particular bug. Comments such as "fixed!" or "Changed it." are unacceptable.
  1153. @item
  1154. If you apply a patch by someone else, include the name and email address in
  1155. the log message. Since the ffmpeg-cvslog mailing list is publicly
  1156. archived you should add some SPAM protection to the email address. Send an
  1157. answer to ffmpeg-devel (or wherever you got the patch from) saying that
  1158. you applied the patch.
  1159. @item
  1160. Do NOT commit to code actively maintained by others without permission.
  1161. Send a patch to ffmpeg-devel instead. If noone answers within a reasonable
  1162. timeframe (12h for build failures and security fixes, 3 days small changes,
  1163. 1 week for big patches) then commit your patch if you think it's OK.
  1164. Also note, the maintainer can simply ask for more time to review!
  1165. @item
  1166. Subscribe to the ffmpeg-cvslog mailing list. The diffs of all commits
  1167. are sent there and reviewed by all the other developers. Bugs and possible
  1168. improvements or general questions regarding commits are discussed there. We
  1169. expect you to react if problems with your code are uncovered.
  1170. @item
  1171. Update the documentation if you change behavior or add features. If you are
  1172. unsure how best to do this, send a patch to ffmpeg-devel, the documentation
  1173. maintainer(s) will review and commit your stuff.
  1174. @item
  1175. Never write to unallocated memory, never write over the end of arrays,
  1176. always check values read from some untrusted source before using them
  1177. as array index or other risky things.
  1178. @item
  1179. Remember to check if you need to bump versions for the specific libav
  1180. parts (libavutil, libavcodec, libavformat) you are changing. You need
  1181. to change the version integer and the version string.
  1182. Incrementing the first component means no backward compatibility to
  1183. previous versions (e.g. removal of a function from the public API).
  1184. Incrementing the second component means backward compatible change
  1185. (e.g. addition of a function to the public API).
  1186. Incrementing the third component means a noteworthy binary compatible
  1187. change (e.g. encoder bug fix that matters for the decoder).
  1188. @item
  1189. If you add a new codec, remember to update the changelog, add it to
  1190. the supported codecs table in the documentation and bump the second
  1191. component of the @file{libavcodec} version number appropriately. If
  1192. it has a fourcc, add it to @file{libavformat/avienc.c}, even if it
  1193. is only a decoder.
  1194. @end enumerate
  1195. We think our rules are not too hard. If you have comments, contact us.
  1196. Note, these rules are mostly borrowed from the MPlayer project.
  1197. @section Submitting patches
  1198. First, (@pxref{Coding Rules}) above if you didn't yet.
  1199. When you submit your patch, try to send a unified diff (diff '-up'
  1200. option). I cannot read other diffs :-)
  1201. Also please do not submit patches which contain several unrelated changes.
  1202. Split them into individual self-contained patches; this makes reviewing
  1203. them much easier.
  1204. Run the regression tests before submitting a patch so that you can
  1205. verify that there are no big problems.
  1206. Patches should be posted as base64 encoded attachments (or any other
  1207. encoding which ensures that the patch won't be trashed during
  1208. transmission) to the ffmpeg-devel mailing list, see
  1209. @url{http://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-devel}
  1210. It also helps quite a bit if you tell us what the patch does (for example
  1211. 'replaces lrint by lrintf'), and why (for example '*BSD isn't C99 compliant
  1212. and has no lrint()')
  1213. We reply to all submitted patches and either apply or reject with some
  1214. explanation why, but sometimes we are quite busy so it can take a week or two.
  1215. @section Regression tests
  1216. Before submitting a patch (or committing to the repository), you should at least
  1217. test that you did not break anything.
  1218. The regression tests build a synthetic video stream and a synthetic
  1219. audio stream. These are then encoded and decoded with all codecs or
  1220. formats. The CRC (or MD5) of each generated file is recorded in a
  1221. result file. A 'diff' is launched to compare the reference results and
  1222. the result file.
  1223. The regression tests then go on to test the FFserver code with a
  1224. limited set of streams. It is important that this step runs correctly
  1225. as well.
  1226. Run 'make test' to test all the codecs and formats.
  1227. Run 'make fulltest' to test all the codecs, formats and FFserver.
  1228. [Of course, some patches may change the results of the regression tests. In
  1229. this case, the reference results of the regression tests shall be modified
  1230. accordingly].
  1231. @bye