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.

1447 lines
49KB

  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. @end table
  403. @section Audio/Video grab options
  404. @table @option
  405. @item -vd device
  406. sEt video grab device (e.g. @file{/dev/video0}).
  407. @item -vc channel
  408. Set video grab channel (DV1394 only).
  409. @item -tvstd standard
  410. Set television standard (NTSC, PAL (SECAM)).
  411. @item -dv1394
  412. Set DV1394 grab.
  413. @item -ad device
  414. Set audio device (e.g. @file{/dev/dsp}).
  415. @end table
  416. @section Advanced options
  417. @table @option
  418. @item -map input stream id[:input stream id]
  419. Set stream mapping from input streams to output streams.
  420. Just enumerate the input streams in the order you want them in the output.
  421. [input stream id] sets the (input) stream to sync against.
  422. @item -debug
  423. Print specific debug info.
  424. @item -benchmark
  425. Add timings for benchmarking.
  426. @item -hex
  427. Dump each input packet.
  428. @item -bitexact
  429. Only use bit exact algorithms (for codec testing).
  430. @item -ps size
  431. Set packet size in bits.
  432. @item -re
  433. Read input at native frame rate. Mainly used to simulate a grab device.
  434. @item -loop
  435. Loop over the input stream. Currently it works only for image
  436. streams. This option is used for automatic FFserver testing.
  437. @item -loop_output number_of_times
  438. Repeatedly loop output for formats that support looping such as animated GIF
  439. (0 will loop the output infinitely).
  440. @item -vsync parameter
  441. Video sync method. Video will be stretched/squeezed to match the timestamps,
  442. it is done by duplicating and dropping frames. With -map you can select from
  443. which stream the timestamps should be taken. You can leave either video or
  444. audio unchanged and sync the remaining stream(s) to the unchanged one.
  445. @item -async samples_per_second
  446. Audio sync method. "Stretches/squeezes" the audio stream to match the timestamps,
  447. the parameter is the maximum samples per second by which the audio is changed.
  448. -async 1 is a special case where only the start of the audio stream is corrected
  449. without any later correction.
  450. @end table
  451. @node FFmpeg formula evaluator
  452. @section FFmpeg formula evaluator
  453. When evaluating a rate control string, FFmpeg uses an internal formula
  454. evaluator.
  455. The following binary operators are available: @code{+}, @code{-},
  456. @code{*}, @code{/}, @code{^}.
  457. The following unary operators are available: @code{+}, @code{-},
  458. @code{(...)}.
  459. The following functions are available:
  460. @table @var
  461. @item sinh(x)
  462. @item cosh(x)
  463. @item tanh(x)
  464. @item sin(x)
  465. @item cos(x)
  466. @item tan(x)
  467. @item exp(x)
  468. @item log(x)
  469. @item squish(x)
  470. @item gauss(x)
  471. @item abs(x)
  472. @item max(x, y)
  473. @item min(x, y)
  474. @item gt(x, y)
  475. @item lt(x, y)
  476. @item eq(x, y)
  477. @item bits2qp(bits)
  478. @item qp2bits(qp)
  479. @end table
  480. The following constants are available:
  481. @table @var
  482. @item PI
  483. @item E
  484. @item iTex
  485. @item pTex
  486. @item tex
  487. @item mv
  488. @item fCode
  489. @item iCount
  490. @item mcVar
  491. @item var
  492. @item isI
  493. @item isP
  494. @item isB
  495. @item avgQP
  496. @item qComp
  497. @item avgIITex
  498. @item avgPITex
  499. @item avgPPTex
  500. @item avgBPTex
  501. @item avgTex
  502. @end table
  503. @c man end
  504. @ignore
  505. @setfilename ffmpeg
  506. @settitle FFmpeg video converter
  507. @c man begin SEEALSO
  508. ffserver(1), ffplay(1) and the HTML documentation of @file{ffmpeg}.
  509. @c man end
  510. @c man begin AUTHOR
  511. Fabrice Bellard
  512. @c man end
  513. @end ignore
  514. @section Protocols
  515. The filename can be @file{-} to read from standard input or to write
  516. to standard output.
  517. FFmpeg also handles many protocols specified with an URL syntax.
  518. Use 'ffmpeg -formats' to see a list of the supported protocols.
  519. The protocol @code{http:} is currently used only to communicate with
  520. FFserver (see the FFserver documentation). When FFmpeg will be a
  521. video player it will also be used for streaming :-)
  522. @chapter Tips
  523. @itemize
  524. @item For streaming at very low bitrate application, use a low frame rate
  525. and a small GOP size. This is especially true for RealVideo where
  526. the Linux player does not seem to be very fast, so it can miss
  527. frames. An example is:
  528. @example
  529. ffmpeg -g 3 -r 3 -t 10 -b 50k -s qcif -f rv10 /tmp/b.rm
  530. @end example
  531. @item The parameter 'q' which is displayed while encoding is the current
  532. quantizer. The value 1 indicates that a very good quality could
  533. be achieved. The value 31 indicates the worst quality. If q=31 appears
  534. too often, it means that the encoder cannot compress enough to meet
  535. your bitrate. You must either increase the bitrate, decrease the
  536. frame rate or decrease the frame size.
  537. @item If your computer is not fast enough, you can speed up the
  538. compression at the expense of the compression ratio. You can use
  539. '-me zero' to speed up motion estimation, and '-intra' to disable
  540. motion estimation completely (you have only I-frames, which means it
  541. is about as good as JPEG compression).
  542. @item To have very low audio bitrates, reduce the sampling frequency
  543. (down to 22050 kHz for MPEG audio, 22050 or 11025 for AC3).
  544. @item To have a constant quality (but a variable bitrate), use the option
  545. '-qscale n' when 'n' is between 1 (excellent quality) and 31 (worst
  546. quality).
  547. @item When converting video files, you can use the '-sameq' option which
  548. uses the same quality factor in the encoder as in the decoder.
  549. It allows almost lossless encoding.
  550. @end itemize
  551. @chapter Supported File Formats and Codecs
  552. You can use the @code{-formats} option to have an exhaustive list.
  553. @section File Formats
  554. FFmpeg supports the following file formats through the @code{libavformat}
  555. library:
  556. @multitable @columnfractions .4 .1 .1 .4
  557. @item Supported File Format @tab Encoding @tab Decoding @tab Comments
  558. @item MPEG audio @tab X @tab X
  559. @item MPEG-1 systems @tab X @tab X
  560. @tab muxed audio and video
  561. @item MPEG-2 PS @tab X @tab X
  562. @tab also known as @code{VOB} file
  563. @item MPEG-2 TS @tab @tab X
  564. @tab also known as DVB Transport Stream
  565. @item ASF@tab X @tab X
  566. @item AVI@tab X @tab X
  567. @item WAV@tab X @tab X
  568. @item Macromedia Flash@tab X @tab X
  569. @tab Only embedded audio is decoded.
  570. @item FLV @tab X @tab X
  571. @tab Macromedia Flash video files
  572. @item Real Audio and Video @tab X @tab X
  573. @item Raw AC3 @tab X @tab X
  574. @item Raw MJPEG @tab X @tab X
  575. @item Raw MPEG video @tab X @tab X
  576. @item Raw PCM8/16 bits, mulaw/Alaw@tab X @tab X
  577. @item Raw CRI ADX audio @tab X @tab X
  578. @item Raw Shorten audio @tab @tab X
  579. @item SUN AU format @tab X @tab X
  580. @item NUT @tab X @tab X @tab NUT Open Container Format
  581. @item QuickTime @tab X @tab X
  582. @item MPEG-4 @tab X @tab X
  583. @tab MPEG-4 is a variant of QuickTime.
  584. @item Raw MPEG4 video @tab X @tab X
  585. @item DV @tab X @tab X
  586. @item 4xm @tab @tab X
  587. @tab 4X Technologies format, used in some games.
  588. @item Playstation STR @tab @tab X
  589. @item Id RoQ @tab @tab X
  590. @tab Used in Quake III, Jedi Knight 2, other computer games.
  591. @item Interplay MVE @tab @tab X
  592. @tab Format used in various Interplay computer games.
  593. @item WC3 Movie @tab @tab X
  594. @tab Multimedia format used in Origin's Wing Commander III computer game.
  595. @item Sega FILM/CPK @tab @tab X
  596. @tab Used in many Sega Saturn console games.
  597. @item Westwood Studios VQA/AUD @tab @tab X
  598. @tab Multimedia formats used in Westwood Studios games.
  599. @item Id Cinematic (.cin) @tab @tab X
  600. @tab Used in Quake II.
  601. @item FLIC format @tab @tab X
  602. @tab .fli/.flc files
  603. @item Sierra VMD @tab @tab X
  604. @tab Used in Sierra CD-ROM games.
  605. @item Sierra Online @tab @tab X
  606. @tab .sol files used in Sierra Online games.
  607. @item Matroska @tab @tab X
  608. @item Electronic Arts Multimedia @tab @tab X
  609. @tab Used in various EA games; files have extensions like WVE and UV2.
  610. @item Nullsoft Video (NSV) format @tab @tab X
  611. @item ADTS AAC audio @tab X @tab X
  612. @item Creative VOC @tab X @tab X @tab Created for the Sound Blaster Pro.
  613. @item American Laser Games MM @tab @tab X
  614. @tab Multimedia format used in games like Mad Dog McCree
  615. @item AVS @tab @tab X
  616. @tab Multimedia format used by the Creature Shock game.
  617. @item Smacker @tab @tab X
  618. @tab Multimedia format used by many games.
  619. @item GXF @tab @tab X
  620. @end multitable
  621. @code{X} means that encoding (resp. decoding) is supported.
  622. @section Image Formats
  623. FFmpeg can read and write images for each frame of a video sequence. The
  624. following image formats are supported:
  625. @multitable @columnfractions .4 .1 .1 .4
  626. @item Supported Image Format @tab Encoding @tab Decoding @tab Comments
  627. @item PGM, PPM @tab X @tab X
  628. @item PAM @tab X @tab X @tab PAM is a PNM extension with alpha support.
  629. @item PGMYUV @tab X @tab X @tab PGM with U and V components in YUV 4:2:0
  630. @item JPEG @tab X @tab X @tab Progressive JPEG is not supported.
  631. @item .Y.U.V @tab X @tab X @tab one raw file per component
  632. @item animated GIF @tab X @tab X @tab Only uncompressed GIFs are generated.
  633. @item PNG @tab X @tab X @tab 2 bit and 4 bit/pixel not supported yet.
  634. @item SGI @tab X @tab X @tab SGI RGB image format
  635. @end multitable
  636. @code{X} means that encoding (resp. decoding) is supported.
  637. @section Video Codecs
  638. @multitable @columnfractions .4 .1 .1 .4
  639. @item Supported Codec @tab Encoding @tab Decoding @tab Comments
  640. @item MPEG-1 video @tab X @tab X
  641. @item MPEG-2 video @tab X @tab X
  642. @item MPEG-4 @tab X @tab X
  643. @item MSMPEG4 V1 @tab X @tab X
  644. @item MSMPEG4 V2 @tab X @tab X
  645. @item MSMPEG4 V3 @tab X @tab X
  646. @item WMV7 @tab X @tab X
  647. @item WMV8 @tab X @tab X @tab not completely working
  648. @item H.261 @tab X @tab X
  649. @item H.263(+) @tab X @tab X @tab also known as RealVideo 1.0
  650. @item H.264 @tab @tab X
  651. @item RealVideo 1.0 @tab X @tab X
  652. @item RealVideo 2.0 @tab X @tab X
  653. @item MJPEG @tab X @tab X
  654. @item lossless MJPEG @tab X @tab X
  655. @item JPEG-LS @tab X @tab X @tab fourcc: MJLS, lossless and near-lossless is supported
  656. @item Apple MJPEG-B @tab @tab X
  657. @item Sunplus MJPEG @tab @tab X @tab fourcc: SP5X
  658. @item DV @tab X @tab X
  659. @item HuffYUV @tab X @tab X
  660. @item FFmpeg Video 1 @tab X @tab X @tab experimental lossless codec (fourcc: FFV1)
  661. @item FFmpeg Snow @tab X @tab X @tab experimental wavelet codec (fourcc: SNOW)
  662. @item Asus v1 @tab X @tab X @tab fourcc: ASV1
  663. @item Asus v2 @tab X @tab X @tab fourcc: ASV2
  664. @item Creative YUV @tab @tab X @tab fourcc: CYUV
  665. @item Sorenson Video 1 @tab X @tab X @tab fourcc: SVQ1
  666. @item Sorenson Video 3 @tab @tab X @tab fourcc: SVQ3
  667. @item On2 VP3 @tab @tab X @tab still experimental
  668. @item On2 VP5 @tab @tab X @tab fourcc: VP50
  669. @item On2 VP6 @tab @tab X @tab fourcc: VP62
  670. @item Theora @tab @tab X @tab still experimental
  671. @item Intel Indeo 3 @tab @tab X
  672. @item FLV @tab X @tab X @tab Sorenson H.263 used in Flash
  673. @item Flash Screen Video @tab @tab X @tab fourcc: FSV1
  674. @item ATI VCR1 @tab @tab X @tab fourcc: VCR1
  675. @item ATI VCR2 @tab @tab X @tab fourcc: VCR2
  676. @item Cirrus Logic AccuPak @tab @tab X @tab fourcc: CLJR
  677. @item 4X Video @tab @tab X @tab Used in certain computer games.
  678. @item Sony Playstation MDEC @tab @tab X
  679. @item Id RoQ @tab @tab X @tab Used in Quake III, Jedi Knight 2, other computer games.
  680. @item Xan/WC3 @tab @tab X @tab Used in Wing Commander III .MVE files.
  681. @item Interplay Video @tab @tab X @tab Used in Interplay .MVE files.
  682. @item Apple Animation @tab @tab X @tab fourcc: 'rle '
  683. @item Apple Graphics @tab @tab X @tab fourcc: 'smc '
  684. @item Apple Video @tab @tab X @tab fourcc: rpza
  685. @item Apple QuickDraw @tab @tab X @tab fourcc: qdrw
  686. @item Cinepak @tab @tab X
  687. @item Microsoft RLE @tab @tab X
  688. @item Microsoft Video-1 @tab @tab X
  689. @item Westwood VQA @tab @tab X
  690. @item Id Cinematic Video @tab @tab X @tab Used in Quake II.
  691. @item Planar RGB @tab @tab X @tab fourcc: 8BPS
  692. @item FLIC video @tab @tab X
  693. @item Duck TrueMotion v1 @tab @tab X @tab fourcc: DUCK
  694. @item Duck TrueMotion v2 @tab @tab X @tab fourcc: TM20
  695. @item VMD Video @tab @tab X @tab Used in Sierra VMD files.
  696. @item MSZH @tab @tab X @tab Part of LCL
  697. @item ZLIB @tab X @tab X @tab Part of LCL, encoder experimental
  698. @item TechSmith Camtasia @tab @tab X @tab fourcc: TSCC
  699. @item IBM Ultimotion @tab @tab X @tab fourcc: ULTI
  700. @item Miro VideoXL @tab @tab X @tab fourcc: VIXL
  701. @item QPEG @tab @tab X @tab fourccs: QPEG, Q1.0, Q1.1
  702. @item LOCO @tab @tab X @tab
  703. @item Winnov WNV1 @tab @tab X @tab
  704. @item Autodesk Animator Studio Codec @tab @tab X @tab fourcc: AASC
  705. @item Fraps FPS1 @tab @tab X @tab
  706. @item CamStudio @tab @tab X @tab fourcc: CSCD
  707. @item American Laser Games Video @tab @tab X @tab Used in games like Mad Dog McCree
  708. @item ZMBV @tab @tab X @tab
  709. @item AVS Video @tab @tab X @tab Video encoding used by the Creature Shock game.
  710. @item Smacker Video @tab @tab X @tab Video encoding used in Smacker.
  711. @item RTjpeg @tab @tab X @tab Video encoding used in NuppelVideo files.
  712. @item KMVC @tab @tab X @tab Codec used in Worms games.
  713. @item VMware Video @tab @tab X @tab Codec used in videos captured by VMware.
  714. @end multitable
  715. @code{X} means that encoding (resp. decoding) is supported.
  716. @section Audio Codecs
  717. @multitable @columnfractions .4 .1 .1 .1 .7
  718. @item Supported Codec @tab Encoding @tab Decoding @tab Comments
  719. @item MPEG audio layer 2 @tab IX @tab IX
  720. @item MPEG audio layer 1/3 @tab IX @tab IX
  721. @tab MP3 encoding is supported through the external library LAME.
  722. @item AC3 @tab IX @tab IX
  723. @tab liba52 is used internally for decoding.
  724. @item Vorbis @tab X @tab X
  725. @tab Supported through the external library libvorbis.
  726. @item WMA V1/V2 @tab @tab X
  727. @item AAC @tab X @tab X
  728. @tab Supported through the external library libfaac/libfaad.
  729. @item Microsoft ADPCM @tab X @tab X
  730. @item MS IMA ADPCM @tab X @tab X
  731. @item QT IMA ADPCM @tab @tab X
  732. @item 4X IMA ADPCM @tab @tab X
  733. @item G.726 ADPCM @tab X @tab X
  734. @item Duck DK3 IMA ADPCM @tab @tab X
  735. @tab Used in some Sega Saturn console games.
  736. @item Duck DK4 IMA ADPCM @tab @tab X
  737. @tab Used in some Sega Saturn console games.
  738. @item Westwood Studios IMA ADPCM @tab @tab X
  739. @tab Used in Westwood Studios games like Command and Conquer.
  740. @item SMJPEG IMA ADPCM @tab @tab X
  741. @tab Used in certain Loki game ports.
  742. @item CD-ROM XA ADPCM @tab @tab X
  743. @item CRI ADX ADPCM @tab X @tab X
  744. @tab Used in Sega Dreamcast games.
  745. @item Electronic Arts ADPCM @tab @tab X
  746. @tab Used in various EA titles.
  747. @item Creative ADPCM @tab @tab X
  748. @tab 16 -> 4, 8 -> 4, 8 -> 3, 8 -> 2
  749. @item RA144 @tab @tab X
  750. @tab Real 14400 bit/s codec
  751. @item RA288 @tab @tab X
  752. @tab Real 28800 bit/s codec
  753. @item RADnet @tab X @tab IX
  754. @tab Real low bitrate AC3 codec, liba52 is used for decoding.
  755. @item AMR-NB @tab X @tab X
  756. @tab Supported through an external library.
  757. @item AMR-WB @tab X @tab X
  758. @tab Supported through an external library.
  759. @item DV audio @tab @tab X
  760. @item Id RoQ DPCM @tab @tab X
  761. @tab Used in Quake III, Jedi Knight 2, other computer games.
  762. @item Interplay MVE DPCM @tab @tab X
  763. @tab Used in various Interplay computer games.
  764. @item Xan DPCM @tab @tab X
  765. @tab Used in Origin's Wing Commander IV AVI files.
  766. @item Sierra Online DPCM @tab @tab X
  767. @tab Used in Sierra Online game audio files.
  768. @item Apple MACE 3 @tab @tab X
  769. @item Apple MACE 6 @tab @tab X
  770. @item FLAC lossless audio @tab @tab X
  771. @item Shorten lossless audio @tab @tab X
  772. @item Apple lossless audio @tab @tab X
  773. @tab QuickTime fourcc 'alac'
  774. @item FFmpeg Sonic @tab X @tab X
  775. @tab experimental lossy/lossless codec
  776. @item Qdesign QDM2 @tab @tab X
  777. @tab there are still some distortions
  778. @item Real COOK @tab @tab X
  779. @tab All versions except 5.1 are supported
  780. @item DSP Group TrueSpeech @tab @tab X
  781. @item True Audio (TTA) @tab @tab X
  782. @item Smacker Audio @tab @tab X
  783. @item WavPack Audio @tab @tab X
  784. @end multitable
  785. @code{X} means that encoding (resp. decoding) is supported.
  786. @code{I} means that an integer-only version is available, too (ensures high
  787. performance on systems without hardware floating point support).
  788. @chapter Platform Specific information
  789. @section Linux
  790. FFmpeg should be compiled with at least GCC 2.95.3. GCC 3.2 is the
  791. preferred compiler now for FFmpeg. All future optimizations will depend on
  792. features only found in GCC 3.2.
  793. @section BSD
  794. BSD make will not build FFmpeg, you need to install and use GNU Make
  795. (@file{gmake}).
  796. @section Windows
  797. @subsection Native Windows compilation
  798. @itemize
  799. @item Install the current versions of MSYS and MinGW from
  800. @url{http://www.mingw.org/}. You can find detailed installation
  801. instructions in the download section and the FAQ.
  802. @item If you want to test the FFplay, also download
  803. the MinGW development library of SDL 1.2.x
  804. (@file{SDL-devel-1.2.x-mingw32.tar.gz}) from
  805. @url{http://www.libsdl.org}. Unpack it in a temporary directory, and
  806. unpack the archive @file{i386-mingw32msvc.tar.gz} in the MinGW tool
  807. directory. Edit the @file{sdl-config} script so that it gives the
  808. correct SDL directory when invoked.
  809. @item Extract the current version of FFmpeg.
  810. @item Start the MSYS shell (file @file{msys.bat}).
  811. @item Change to the FFmpeg directory and follow
  812. the instructions of how to compile FFmpeg (file
  813. @file{INSTALL}). Usually, launching @file{./configure} and @file{make}
  814. suffices. If you have problems using SDL, verify that
  815. @file{sdl-config} can be launched from the MSYS command line.
  816. @item You can install FFmpeg in @file{Program Files/FFmpeg} by typing
  817. @file{make install}. Don't forget to copy @file{SDL.dll} to the place
  818. you launch @file{ffplay} from.
  819. @end itemize
  820. Notes:
  821. @itemize
  822. @item The target @file{make wininstaller} can be used to create a
  823. Nullsoft based Windows installer for FFmpeg and FFplay. @file{SDL.dll}
  824. must be copied to the FFmpeg directory in order to build the
  825. installer.
  826. @item By using @code{./configure --enable-shared} when configuring FFmpeg,
  827. you can build @file{avcodec.dll} and @file{avformat.dll}. With
  828. @code{make install} you install the FFmpeg DLLs and the associated
  829. headers in @file{Program Files/FFmpeg}.
  830. @item Visual C++ compatibility: If you used @code{./configure --enable-shared}
  831. when configuring FFmpeg, FFmpeg tries to use the Microsoft Visual
  832. C++ @code{lib} tool to build @code{avcodec.lib} and
  833. @code{avformat.lib}. With these libraries you can link your Visual C++
  834. code directly with the FFmpeg DLLs (see below).
  835. @end itemize
  836. @subsection Visual C++ compatibility
  837. FFmpeg will not compile under Visual C++ -- and it has too many
  838. dependencies on the GCC compiler to make a port viable. However,
  839. if you want to use the FFmpeg libraries in your own applications,
  840. you can still compile those applications using Visual C++. An
  841. important restriction to this is that you have to use the
  842. dynamically linked versions of the FFmpeg libraries (i.e. the
  843. DLLs), and you have to make sure that Visual-C++-compatible
  844. import libraries are created during the FFmpeg build process.
  845. This description of how to use the FFmpeg libraries with Visual C++ is
  846. based on Visual C++ 2005 Express Edition Beta 2. If you have a different
  847. version, you might have to modify the procedures slightly.
  848. Here are the step-by-step instructions for building the FFmpeg libraries
  849. so they can be used with Visual C++:
  850. @enumerate
  851. @item Install Visual C++ (if you haven't done so already).
  852. @item Install MinGW and MSYS as described above.
  853. @item Add a call to @file{vcvars32.bat} (which sets up the environment
  854. variables for the Visual C++ tools) as the first line of
  855. @file{msys.bat}. The standard location for @file{vcvars32.bat} is
  856. @file{C:\Program Files\Microsoft Visual Studio 8\VC\bin\vcvars32.bat},
  857. and the standard location for @file{msys.bat} is
  858. @file{C:\msys\1.0\msys.bat}. If this corresponds to your setup, add the
  859. following line as the first line of @file{msys.bat}:
  860. @code{call "C:\Program Files\Microsoft Visual Studio 8\VC\bin\vcvars32.bat"}
  861. @item Start the MSYS shell (file @file{msys.bat}) and type @code{link.exe}.
  862. If you get a help message with the command line options of @code{link.exe},
  863. this means your environment variables are set up correctly, the
  864. Microsoft linker is on the path and will be used by FFmpeg to
  865. create Visual-C++-compatible import libraries.
  866. @item Extract the current version of FFmpeg and change to the FFmpeg directory.
  867. @item Type the command
  868. @code{./configure --enable-shared --disable-static --enable-memalign-hack}
  869. to configure and, if that didn't produce any errors,
  870. type @code{make} to build FFmpeg.
  871. @item The subdirectories @file{libavformat}, @file{libavcodec}, and
  872. @file{libavutil} should now contain the files @file{avformat.dll},
  873. @file{avformat.lib}, @file{avcodec.dll}, @file{avcodec.lib},
  874. @file{avutil.dll}, and @file{avutil.lib}, respectively. Copy the three
  875. DLLs to your System32 directory (typically @file{C:\Windows\System32}).
  876. @end enumerate
  877. And here is how to use these libraries with Visual C++:
  878. @enumerate
  879. @item Create a new console application ("File / New / Project") and then
  880. select "Win32 Console Application". On the appropriate page of the
  881. Application Wizard, uncheck the "Precompiled headers" option.
  882. @item Write the source code for your application, or, for testing, just
  883. copy the code from an existing sample application into the source file
  884. that Visual C++ has already created for you. (Note that your source
  885. filehas to have a @code{.cpp} extension; otherwise, Visual C++ won't
  886. compile the FFmpeg headers correctly because in C mode, it doesn't
  887. recognize the @code{inline} keyword.) For example, you can copy
  888. @file{output_example.c} from the FFmpeg distribution (but you will
  889. have to make minor modifications so the code will compile under
  890. C++, see below).
  891. @item Open the "Project / Properties" dialog box. In the "Configuration"
  892. combo box, select "All Configurations" so that the changes you make will
  893. affect both debug and release builds. In the tree view on the left hand
  894. side, select "C/C++ / General", then edit the "Additional Include
  895. Directories" setting to contain the complete paths to the
  896. @file{libavformat}, @file{libavcodec}, and @file{libavutil}
  897. subdirectories of your FFmpeg directory. Note that the directories have
  898. to be separated using semicolons. Now select "Linker / General" from the
  899. tree view and edit the "Additional Library Directories" setting to
  900. contain the same three directories.
  901. @item Still in the "Project / Properties" dialog box, select "Linker / Input"
  902. from the tree view, then add the files @file{avformat.lib},
  903. @file{avcodec.lib}, and @file{avutil.lib} to the end of the "Additional
  904. Dependencies". Note that the names of the libraries have to be separated
  905. using spaces.
  906. @item Now, select "C/C++ / Code Generation" from the tree view. Select
  907. "Debug" in the "Configuration" combo box. Make sure that "Runtime
  908. Library" is set to "Multi-threaded Debug DLL". Then, select "Release" in
  909. the "Configuration" combo box and make sure that "Runtime Library" is
  910. set to "Multi-threaded DLL".
  911. @item Click "OK" to close the "Project / Properties" dialog box and build
  912. the application. Hopefully, it should compile and run cleanly. If you
  913. used @file{output_example.c} as your sample application, you will get a
  914. few compiler errors, but they are easy to fix. The first type of error
  915. occurs because Visual C++ doesn't allow an @code{int} to be converted to
  916. an @code{enum} without a cast. To solve the problem, insert the required
  917. casts (this error occurs once for a @code{CodecID} and once for a
  918. @code{CodecType}). The second type of error occurs because C++ requires
  919. the return value of @code{malloc} to be cast to the exact type of the
  920. pointer it is being assigned to. Visual C++ will complain that, for
  921. example, @code{(void *)} is being assigned to @code{(uint8_t *)} without
  922. an explicit cast. So insert an explicit cast in these places to silence
  923. the compiler. The third type of error occurs because the @code{snprintf}
  924. library function is called @code{_snprintf} under Visual C++. So just
  925. add an underscore to fix the problem. With these changes,
  926. @file{output_example.c} should compile under Visual C++, and the
  927. resulting executable should produce valid video files.
  928. @end enumerate
  929. @subsection Cross compilation for Windows with Linux
  930. You must use the MinGW cross compilation tools available at
  931. @url{http://www.mingw.org/}.
  932. Then configure FFmpeg with the following options:
  933. @example
  934. ./configure --enable-mingw32 --cross-prefix=i386-mingw32msvc-
  935. @end example
  936. (you can change the cross-prefix according to the prefix chosen for the
  937. MinGW tools).
  938. Then you can easily test FFmpeg with Wine
  939. (@url{http://www.winehq.com/}).
  940. @subsection Compilation under Cygwin
  941. Cygwin works very much like Unix.
  942. Just install your Cygwin with all the "Base" packages, plus the
  943. following "Devel" ones:
  944. @example
  945. binutils, gcc-core, make, subversion
  946. @end example
  947. Do not install binutils-20060709-1 (they are buggy on shared builds);
  948. use binutils-20050610-1 instead.
  949. Then run
  950. @example
  951. ./configure --enable-static --disable-shared
  952. @end example
  953. to make a static build or
  954. @example
  955. ./configure --enable-shared --disable-static
  956. @end example
  957. to build shared libraries.
  958. If you want to build FFmpeg with additional libraries, download Cygwin
  959. "Devel" packages for Ogg and Vorbis from any Cygwin packages repository
  960. and/or SDL, xvid, faac, faad2 packages from Cygwin Ports,
  961. (@url{http://cygwinports.dotsrc.org/}).
  962. @subsection Crosscompilation for Windows under Cygwin
  963. With Cygwin you can create Windows binaries that don't need the cygwin1.dll.
  964. Just install your Cygwin as explained before, plus these additional
  965. "Devel" packages:
  966. @example
  967. gcc-mingw-core, mingw-runtime, mingw-zlib
  968. @end example
  969. and add some special flags to your configure invocation.
  970. For a static build run
  971. @example
  972. ./configure --enable-mingw32 --enable-memalign-hack --enable-static --disable-shared --extra-cflags=-mno-cygwin --extra-libs=-mno-cygwin
  973. @end example
  974. and for a build with shared libraries
  975. @example
  976. ./configure --enable-mingw32 --enable-memalign-hack --enable-shared --disable-static --extra-cflags=-mno-cygwin --extra-libs=-mno-cygwin
  977. @end example
  978. @section Mac OS X
  979. @section BeOS
  980. The configure script should guess the configuration itself.
  981. Networking support is currently not finished.
  982. errno issues fixed by Andrew Bachmann.
  983. Old stuff:
  984. François Revol - revol at free dot fr - April 2002
  985. The configure script should guess the configuration itself,
  986. however I still didn't test building on the net_server version of BeOS.
  987. FFserver is broken (needs poll() implementation).
  988. There are still issues with errno codes, which are negative in BeOS, and
  989. that FFmpeg negates when returning. This ends up turning errors into
  990. valid results, then crashes.
  991. (To be fixed)
  992. @chapter Developers Guide
  993. @section API
  994. @itemize @bullet
  995. @item libavcodec is the library containing the codecs (both encoding and
  996. decoding). Look at @file{libavcodec/apiexample.c} to see how to use it.
  997. @item libavformat is the library containing the file format handling (mux and
  998. demux code for several formats). Look at @file{ffplay.c} to use it in a
  999. player. See @file{output_example.c} to use it to generate audio or video
  1000. streams.
  1001. @end itemize
  1002. @section Integrating libavcodec or libavformat in your program
  1003. You can integrate all the source code of the libraries to link them
  1004. statically to avoid any version problem. All you need is to provide a
  1005. 'config.mak' and a 'config.h' in the parent directory. See the defines
  1006. generated by ./configure to understand what is needed.
  1007. You can use libavcodec or libavformat in your commercial program, but
  1008. @emph{any patch you make must be published}. The best way to proceed is
  1009. to send your patches to the FFmpeg mailing list.
  1010. @node Coding Rules
  1011. @section Coding Rules
  1012. FFmpeg is programmed in the ISO C90 language with a few additional
  1013. features from ISO C99, namely:
  1014. @itemize @bullet
  1015. @item
  1016. the @samp{inline} keyword;
  1017. @item
  1018. @samp{//} comments;
  1019. @item
  1020. designated struct initializers (@samp{struct s x = @{ .i = 17 @};})
  1021. @item
  1022. compound literals (@samp{x = (struct s) @{ 17, 23 @};})
  1023. @end itemize
  1024. These features are supported by all compilers we care about, so we won't
  1025. accept patches to remove their use unless they absolutely don't impair
  1026. clarity and performance.
  1027. All code must compile with GCC 2.95 and GCC 3.3. Currently, FFmpeg also
  1028. compiles with several other compilers, such as the Compaq ccc compiler
  1029. or Sun Studio 9, and we would like to keep it that way unless it would
  1030. be exceedingly involved. To ensure compatibility, please don't use any
  1031. additional C99 features or GCC extensions. Especially watch out for:
  1032. @itemize @bullet
  1033. @item
  1034. mixing statements and declarations;
  1035. @item
  1036. @samp{long long} (use @samp{int64_t} instead);
  1037. @item
  1038. @samp{__attribute__} not protected by @samp{#ifdef __GNUC__} or similar;
  1039. @item
  1040. GCC statement expressions (@samp{(x = (@{ int y = 4; y; @})}).
  1041. @end itemize
  1042. Indent size is 4.
  1043. The presentation is the one specified by 'indent -i4 -kr -nut'.
  1044. The TAB character is forbidden outside of Makefiles as is any
  1045. form of trailing whitespace. Commits containing either will be
  1046. rejected by the Subversion repository.
  1047. Main priority in FFmpeg is simplicity and small code size (=less
  1048. bugs).
  1049. Comments: Use the JavaDoc/Doxygen
  1050. format (see examples below) so that code documentation
  1051. can be generated automatically. All nontrivial functions should have a comment
  1052. above them explaining what the function does, even if it's just one sentence.
  1053. All structures and their member variables should be documented, too.
  1054. @example
  1055. /**
  1056. * @@file mpeg.c
  1057. * MPEG codec.
  1058. * @@author ...
  1059. */
  1060. /**
  1061. * Summary sentence.
  1062. * more text ...
  1063. * ...
  1064. */
  1065. typedef struct Foobar@{
  1066. int var1; /**< var1 description */
  1067. int var2; ///< var2 description
  1068. /** var3 description */
  1069. int var3;
  1070. @} Foobar;
  1071. /**
  1072. * Summary sentence.
  1073. * more text ...
  1074. * ...
  1075. * @@param my_parameter description of my_parameter
  1076. * @@return return value description
  1077. */
  1078. int myfunc(int my_parameter)
  1079. ...
  1080. @end example
  1081. fprintf and printf are forbidden in libavformat and libavcodec,
  1082. please use av_log() instead.
  1083. @section Development Policy
  1084. @enumerate
  1085. @item
  1086. You must not commit code which breaks FFmpeg! (Meaning unfinished but
  1087. enabled code which breaks compilation or compiles but does not work or
  1088. breaks the regression tests)
  1089. You can commit unfinished stuff (for testing etc), but it must be disabled
  1090. (#ifdef etc) by default so it does not interfere with other developers'
  1091. work.
  1092. @item
  1093. You don't have to over-test things. If it works for you, and you think it
  1094. should work for others, then commit. If your code has problems
  1095. (portability, triggers compiler bugs, unusual environment etc) they will be
  1096. reported and eventually fixed.
  1097. @item
  1098. Do not commit unrelated changes together, split them into self-contained
  1099. pieces.
  1100. @item
  1101. Do not change behavior of the program (renaming options etc) without
  1102. first discussing it on the ffmpeg-devel mailing list. Do not remove
  1103. functionality from the code. Just improve!
  1104. Note: Redundant code can be removed.
  1105. @item
  1106. Do not commit changes to the build system (Makefiles, configure script)
  1107. which change behavior, defaults etc, without asking first. The same
  1108. applies to compiler warning fixes, trivial looking fixes and to code
  1109. maintained by other developers. We usually have a reason for doing things
  1110. the way we do. Send your changes as patches to the ffmpeg-devel mailing
  1111. list, and if the code maintainers say OK, you may commit. This does not
  1112. apply to files you wrote and/or maintain.
  1113. @item
  1114. We refuse source indentation and other cosmetic changes if they are mixed
  1115. with functional changes, such commits will be rejected and removed. Every
  1116. developer has his own indentation style, you should not change it. Of course
  1117. if you (re)write something, you can use your own style, even though we would
  1118. prefer if the indentation throughout FFmpeg was consistent (Many projects
  1119. force a given indentation style - we don't.). If you really need to make
  1120. indentation changes (try to avoid this), separate them strictly from real
  1121. changes.
  1122. NOTE: If you had to put if()@{ .. @} over a large (> 5 lines) chunk of code,
  1123. then either do NOT change the indentation of the inner part within (don't
  1124. move it to the right)! or do so in a separate commit
  1125. @item
  1126. Always fill out the commit log message. Describe in a few lines what you
  1127. changed and why. You can refer to mailing list postings if you fix a
  1128. particular bug. Comments such as "fixed!" or "Changed it." are unacceptable.
  1129. @item
  1130. If you apply a patch by someone else, include the name and email address in
  1131. the log message. Since the ffmpeg-cvslog mailing list is publicly
  1132. archived you should add some SPAM protection to the email address. Send an
  1133. answer to ffmpeg-devel (or wherever you got the patch from) saying that
  1134. you applied the patch.
  1135. @item
  1136. Do NOT commit to code actively maintained by others without permission.
  1137. Send a patch to ffmpeg-devel instead. If noone answers within a reasonable
  1138. timeframe (12h for build failures and security fixes, 3 days small changes,
  1139. 1 week for big patches) then commit your patch if you think it's OK.
  1140. Also note, the maintainer can simply ask for more time to review!
  1141. @item
  1142. Subscribe to the ffmpeg-cvslog mailing list. The diffs of all commits
  1143. are sent there and reviewed by all the other developers. Bugs and possible
  1144. improvements or general questions regarding commits are discussed there. We
  1145. expect you to react if problems with your code are uncovered.
  1146. @item
  1147. Update the documentation if you change behavior or add features. If you are
  1148. unsure how best to do this, send a patch to ffmpeg-devel, the documentation
  1149. maintainer(s) will review and commit your stuff.
  1150. @item
  1151. Never write to unallocated memory, never write over the end of arrays,
  1152. always check values read from some untrusted source before using them
  1153. as array index or other risky things.
  1154. @item
  1155. Remember to check if you need to bump versions for the specific libav
  1156. parts (libavutil, libavcodec, libavformat) you are changing. You need
  1157. to change the version integer and the version string.
  1158. Incrementing the first component means no backward compatibility to
  1159. previous versions (e.g. removal of a function from the public API).
  1160. Incrementing the second component means backward compatible change
  1161. (e.g. addition of a function to the public API).
  1162. Incrementing the third component means a noteworthy binary compatible
  1163. change (e.g. encoder bug fix that matters for the decoder).
  1164. @item
  1165. If you add a new codec, remember to update the changelog, add it to
  1166. the supported codecs table in the documentation and bump the second
  1167. component of the @file{libavcodec} version number appropriately. If
  1168. it has a fourcc, add it to @file{libavformat/avienc.c}, even if it
  1169. is only a decoder.
  1170. @end enumerate
  1171. We think our rules are not too hard. If you have comments, contact us.
  1172. Note, these rules are mostly borrowed from the MPlayer project.
  1173. @section Submitting patches
  1174. First, (@pxref{Coding Rules}) above if you didn't yet.
  1175. When you submit your patch, try to send a unified diff (diff '-up'
  1176. option). I cannot read other diffs :-)
  1177. Also please do not submit patches which contain several unrelated changes.
  1178. Split them into individual self-contained patches; this makes reviewing
  1179. them much easier.
  1180. Run the regression tests before submitting a patch so that you can
  1181. verify that there are no big problems.
  1182. Patches should be posted as base64 encoded attachments (or any other
  1183. encoding which ensures that the patch won't be trashed during
  1184. transmission) to the ffmpeg-devel mailing list, see
  1185. @url{http://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-devel}
  1186. It also helps quite a bit if you tell us what the patch does (for example
  1187. 'replaces lrint by lrintf'), and why (for example '*BSD isn't C99 compliant
  1188. and has no lrint()')
  1189. We reply to all submitted patches and either apply or reject with some
  1190. explanation why, but sometimes we are quite busy so it can take a week or two.
  1191. @section Regression tests
  1192. Before submitting a patch (or committing to the repository), you should at least
  1193. test that you did not break anything.
  1194. The regression tests build a synthetic video stream and a synthetic
  1195. audio stream. These are then encoded and decoded with all codecs or
  1196. formats. The CRC (or MD5) of each generated file is recorded in a
  1197. result file. A 'diff' is launched to compare the reference results and
  1198. the result file.
  1199. The regression tests then go on to test the FFserver code with a
  1200. limited set of streams. It is important that this step runs correctly
  1201. as well.
  1202. Run 'make test' to test all the codecs and formats.
  1203. Run 'make fulltest' to test all the codecs, formats and FFserver.
  1204. [Of course, some patches may change the results of the regression tests. In
  1205. this case, the reference results of the regression tests shall be modified
  1206. accordingly].
  1207. @bye