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.

1553 lines
52KB

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