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.

1430 lines
48KB

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