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.

1586 lines
53KB

  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 external libraries
  628. FFmpeg can be hooked up with a number of external libraries to add support
  629. for more formats.
  630. @section AMR
  631. AMR comes in two different flavors, WB and NB. FFmpeg can make use of the
  632. AMR WB (floating-point mode) and the AMR NB (both floating-point and
  633. fixed-point mode) reference decoders and encoders.
  634. @itemize
  635. @item For AMR WB floating-point download TS26.204 V5.1.0 from
  636. @url{http://www.3gpp.org/ftp/Specs/archive/26_series/26.204/26204-510.zip}
  637. and extract the source to @file{libavcodec/amrwb_float/}.
  638. @item For AMR NB floating-point download TS26.104 REL-5 V5.1.0 from
  639. @url{http://www.3gpp.org/ftp/Specs/archive/26_series/26.104/26104-510.zip}
  640. and extract the source to @file{libavcodec/amr_float/}.
  641. If you try this on Alpha, you may need to change @code{Word32} to
  642. @code{int} in @file{amr/typedef.h}.
  643. @item For AMR NB fixed-point download TS26.073 REL-5 V5.1.0 from
  644. @url{http://www.3gpp.org/ftp/Specs/archive/26_series/26.073/26073-510.zip}
  645. and extract the source to @file{libavcodec/amr}.
  646. You must also add @code{-DMMS_IO} and remove @code{-pedantic-errors}
  647. to/from @code{CFLAGS} in @file{libavcodec/amr/makefile}, i.e.
  648. ``@code{CFLAGS = -Wall -I. \$(CFLAGS_\$(MODE)) -D\$(VAD) -DMMS_IO}''.
  649. @end itemize
  650. @chapter Supported File Formats and Codecs
  651. You can use the @code{-formats} option to have an exhaustive list.
  652. @section File Formats
  653. FFmpeg supports the following file formats through the @code{libavformat}
  654. library:
  655. @multitable @columnfractions .4 .1 .1 .4
  656. @item Supported File Format @tab Encoding @tab Decoding @tab Comments
  657. @item MPEG audio @tab X @tab X
  658. @item MPEG-1 systems @tab X @tab X
  659. @tab muxed audio and video
  660. @item MPEG-2 PS @tab X @tab X
  661. @tab also known as @code{VOB} file
  662. @item MPEG-2 TS @tab @tab X
  663. @tab also known as DVB Transport Stream
  664. @item ASF@tab X @tab X
  665. @item AVI@tab X @tab X
  666. @item WAV@tab X @tab X
  667. @item Macromedia Flash@tab X @tab X
  668. @tab Only embedded audio is decoded.
  669. @item FLV @tab X @tab X
  670. @tab Macromedia Flash video files
  671. @item Real Audio and Video @tab X @tab X
  672. @item Raw AC3 @tab X @tab X
  673. @item Raw MJPEG @tab X @tab X
  674. @item Raw MPEG video @tab X @tab X
  675. @item Raw PCM8/16 bits, mulaw/Alaw@tab X @tab X
  676. @item Raw CRI ADX audio @tab X @tab X
  677. @item Raw Shorten audio @tab @tab X
  678. @item SUN AU format @tab X @tab X
  679. @item NUT @tab X @tab X @tab NUT Open Container Format
  680. @item QuickTime @tab X @tab X
  681. @item MPEG-4 @tab X @tab X
  682. @tab MPEG-4 is a variant of QuickTime.
  683. @item Raw MPEG4 video @tab X @tab X
  684. @item DV @tab X @tab X
  685. @item 4xm @tab @tab X
  686. @tab 4X Technologies format, used in some games.
  687. @item Playstation STR @tab @tab X
  688. @item Id RoQ @tab @tab X
  689. @tab Used in Quake III, Jedi Knight 2, other computer games.
  690. @item Interplay MVE @tab @tab X
  691. @tab Format used in various Interplay computer games.
  692. @item WC3 Movie @tab @tab X
  693. @tab Multimedia format used in Origin's Wing Commander III computer game.
  694. @item Sega FILM/CPK @tab @tab X
  695. @tab Used in many Sega Saturn console games.
  696. @item Westwood Studios VQA/AUD @tab @tab X
  697. @tab Multimedia formats used in Westwood Studios games.
  698. @item Id Cinematic (.cin) @tab @tab X
  699. @tab Used in Quake II.
  700. @item FLIC format @tab @tab X
  701. @tab .fli/.flc files
  702. @item Sierra VMD @tab @tab X
  703. @tab Used in Sierra CD-ROM games.
  704. @item Sierra Online @tab @tab X
  705. @tab .sol files used in Sierra Online games.
  706. @item Matroska @tab @tab X
  707. @item Electronic Arts Multimedia @tab @tab X
  708. @tab Used in various EA games; files have extensions like WVE and UV2.
  709. @item Nullsoft Video (NSV) format @tab @tab X
  710. @item ADTS AAC audio @tab X @tab X
  711. @item Creative VOC @tab X @tab X @tab Created for the Sound Blaster Pro.
  712. @item American Laser Games MM @tab @tab X
  713. @tab Multimedia format used in games like Mad Dog McCree
  714. @item AVS @tab @tab X
  715. @tab Multimedia format used by the Creature Shock game.
  716. @item Smacker @tab @tab X
  717. @tab Multimedia format used by many games.
  718. @item GXF @tab X @tab X
  719. @tab General eXchange Format SMPTE 360M, used by Thomson Grass Valley playout servers.
  720. @item CIN @tab @tab X
  721. @tab Multimedia format used by Delphine Software games.
  722. @item MXF @tab @tab X
  723. @tab Material eXchange Format SMPTE 377M, used by D-Cinema, broadcast industry.
  724. @item SEQ @tab @tab X
  725. @tab Tiertex .seq files used in the DOS CDROM version of the game Flashback.
  726. @end multitable
  727. @code{X} means that encoding (resp. decoding) is supported.
  728. @section Image Formats
  729. FFmpeg can read and write images for each frame of a video sequence. The
  730. following image formats are supported:
  731. @multitable @columnfractions .4 .1 .1 .4
  732. @item Supported Image Format @tab Encoding @tab Decoding @tab Comments
  733. @item PGM, PPM @tab X @tab X
  734. @item PAM @tab X @tab X @tab PAM is a PNM extension with alpha support.
  735. @item PGMYUV @tab X @tab X @tab PGM with U and V components in YUV 4:2:0
  736. @item JPEG @tab X @tab X @tab Progressive JPEG is not supported.
  737. @item .Y.U.V @tab X @tab X @tab one raw file per component
  738. @item animated GIF @tab X @tab X @tab Only uncompressed GIFs are generated.
  739. @item PNG @tab X @tab X @tab 2 bit and 4 bit/pixel not supported yet.
  740. @item Targa @tab @tab X @tab Targa (.TGA) image format.
  741. @item TIFF @tab @tab X @tab Only 24 bit/pixel images are supported.
  742. @item SGI @tab X @tab X @tab SGI RGB image format
  743. @end multitable
  744. @code{X} means that encoding (resp. decoding) is supported.
  745. @section Video Codecs
  746. @multitable @columnfractions .4 .1 .1 .4
  747. @item Supported Codec @tab Encoding @tab Decoding @tab Comments
  748. @item MPEG-1 video @tab X @tab X
  749. @item MPEG-2 video @tab X @tab X
  750. @item MPEG-4 @tab X @tab X
  751. @item MSMPEG4 V1 @tab X @tab X
  752. @item MSMPEG4 V2 @tab X @tab X
  753. @item MSMPEG4 V3 @tab X @tab X
  754. @item WMV7 @tab X @tab X
  755. @item WMV8 @tab X @tab X @tab not completely working
  756. @item WMV9 @tab @tab X @tab not completely working
  757. @item VC1 @tab @tab X
  758. @item H.261 @tab X @tab X
  759. @item H.263(+) @tab X @tab X @tab also known as RealVideo 1.0
  760. @item H.264 @tab @tab X
  761. @item RealVideo 1.0 @tab X @tab X
  762. @item RealVideo 2.0 @tab X @tab X
  763. @item MJPEG @tab X @tab X
  764. @item lossless MJPEG @tab X @tab X
  765. @item JPEG-LS @tab X @tab X @tab fourcc: MJLS, lossless and near-lossless is supported
  766. @item Apple MJPEG-B @tab @tab X
  767. @item Sunplus MJPEG @tab @tab X @tab fourcc: SP5X
  768. @item DV @tab X @tab X
  769. @item HuffYUV @tab X @tab X
  770. @item FFmpeg Video 1 @tab X @tab X @tab experimental lossless codec (fourcc: FFV1)
  771. @item FFmpeg Snow @tab X @tab X @tab experimental wavelet codec (fourcc: SNOW)
  772. @item Asus v1 @tab X @tab X @tab fourcc: ASV1
  773. @item Asus v2 @tab X @tab X @tab fourcc: ASV2
  774. @item Creative YUV @tab @tab X @tab fourcc: CYUV
  775. @item Sorenson Video 1 @tab X @tab X @tab fourcc: SVQ1
  776. @item Sorenson Video 3 @tab @tab X @tab fourcc: SVQ3
  777. @item On2 VP3 @tab @tab X @tab still experimental
  778. @item On2 VP5 @tab @tab X @tab fourcc: VP50
  779. @item On2 VP6 @tab @tab X @tab fourcc: VP62
  780. @item Theora @tab @tab X @tab still experimental
  781. @item Intel Indeo 3 @tab @tab X
  782. @item FLV @tab X @tab X @tab Sorenson H.263 used in Flash
  783. @item Flash Screen Video @tab @tab X @tab fourcc: FSV1
  784. @item ATI VCR1 @tab @tab X @tab fourcc: VCR1
  785. @item ATI VCR2 @tab @tab X @tab fourcc: VCR2
  786. @item Cirrus Logic AccuPak @tab @tab X @tab fourcc: CLJR
  787. @item 4X Video @tab @tab X @tab Used in certain computer games.
  788. @item Sony Playstation MDEC @tab @tab X
  789. @item Id RoQ @tab @tab X @tab Used in Quake III, Jedi Knight 2, other computer games.
  790. @item Xan/WC3 @tab @tab X @tab Used in Wing Commander III .MVE files.
  791. @item Interplay Video @tab @tab X @tab Used in Interplay .MVE files.
  792. @item Apple Animation @tab @tab X @tab fourcc: 'rle '
  793. @item Apple Graphics @tab @tab X @tab fourcc: 'smc '
  794. @item Apple Video @tab @tab X @tab fourcc: rpza
  795. @item Apple QuickDraw @tab @tab X @tab fourcc: qdrw
  796. @item Cinepak @tab @tab X
  797. @item Microsoft RLE @tab @tab X
  798. @item Microsoft Video-1 @tab @tab X
  799. @item Westwood VQA @tab @tab X
  800. @item Id Cinematic Video @tab @tab X @tab Used in Quake II.
  801. @item Planar RGB @tab @tab X @tab fourcc: 8BPS
  802. @item FLIC video @tab @tab X
  803. @item Duck TrueMotion v1 @tab @tab X @tab fourcc: DUCK
  804. @item Duck TrueMotion v2 @tab @tab X @tab fourcc: TM20
  805. @item VMD Video @tab @tab X @tab Used in Sierra VMD files.
  806. @item MSZH @tab @tab X @tab Part of LCL
  807. @item ZLIB @tab X @tab X @tab Part of LCL, encoder experimental
  808. @item TechSmith Camtasia @tab @tab X @tab fourcc: TSCC
  809. @item IBM Ultimotion @tab @tab X @tab fourcc: ULTI
  810. @item Miro VideoXL @tab @tab X @tab fourcc: VIXL
  811. @item QPEG @tab @tab X @tab fourccs: QPEG, Q1.0, Q1.1
  812. @item LOCO @tab @tab X @tab
  813. @item Winnov WNV1 @tab @tab X @tab
  814. @item Autodesk Animator Studio Codec @tab @tab X @tab fourcc: AASC
  815. @item Fraps FPS1 @tab @tab X @tab
  816. @item CamStudio @tab @tab X @tab fourcc: CSCD
  817. @item American Laser Games Video @tab @tab X @tab Used in games like Mad Dog McCree
  818. @item ZMBV @tab @tab X @tab
  819. @item AVS Video @tab @tab X @tab Video encoding used by the Creature Shock game.
  820. @item Smacker Video @tab @tab X @tab Video encoding used in Smacker.
  821. @item RTjpeg @tab @tab X @tab Video encoding used in NuppelVideo files.
  822. @item KMVC @tab @tab X @tab Codec used in Worms games.
  823. @item VMware Video @tab @tab X @tab Codec used in videos captured by VMware.
  824. @item Cin Video @tab @tab X @tab Codec used in Delphine Software games.
  825. @item Tiertex Seq Video @tab @tab X @tab Codec used in DOS CDROM FlashBack game.
  826. @end multitable
  827. @code{X} means that encoding (resp. decoding) is supported.
  828. @section Audio Codecs
  829. @multitable @columnfractions .4 .1 .1 .1 .7
  830. @item Supported Codec @tab Encoding @tab Decoding @tab Comments
  831. @item MPEG audio layer 2 @tab IX @tab IX
  832. @item MPEG audio layer 1/3 @tab IX @tab IX
  833. @tab MP3 encoding is supported through the external library LAME.
  834. @item AC3 @tab IX @tab IX
  835. @tab liba52 is used internally for decoding.
  836. @item Vorbis @tab X @tab X
  837. @item WMA V1/V2 @tab @tab X
  838. @item AAC @tab X @tab X
  839. @tab Supported through the external library libfaac/libfaad.
  840. @item Microsoft ADPCM @tab X @tab X
  841. @item MS IMA ADPCM @tab X @tab X
  842. @item QT IMA ADPCM @tab @tab X
  843. @item 4X IMA ADPCM @tab @tab X
  844. @item G.726 ADPCM @tab X @tab X
  845. @item Duck DK3 IMA ADPCM @tab @tab X
  846. @tab Used in some Sega Saturn console games.
  847. @item Duck DK4 IMA ADPCM @tab @tab X
  848. @tab Used in some Sega Saturn console games.
  849. @item Westwood Studios IMA ADPCM @tab @tab X
  850. @tab Used in Westwood Studios games like Command and Conquer.
  851. @item SMJPEG IMA ADPCM @tab @tab X
  852. @tab Used in certain Loki game ports.
  853. @item CD-ROM XA ADPCM @tab @tab X
  854. @item CRI ADX ADPCM @tab X @tab X
  855. @tab Used in Sega Dreamcast games.
  856. @item Electronic Arts ADPCM @tab @tab X
  857. @tab Used in various EA titles.
  858. @item Creative ADPCM @tab @tab X
  859. @tab 16 -> 4, 8 -> 4, 8 -> 3, 8 -> 2
  860. @item RA144 @tab @tab X
  861. @tab Real 14400 bit/s codec
  862. @item RA288 @tab @tab X
  863. @tab Real 28800 bit/s codec
  864. @item RADnet @tab X @tab IX
  865. @tab Real low bitrate AC3 codec, liba52 is used for decoding.
  866. @item AMR-NB @tab X @tab X
  867. @tab Supported through an external library.
  868. @item AMR-WB @tab X @tab X
  869. @tab Supported through an external library.
  870. @item DV audio @tab @tab X
  871. @item Id RoQ DPCM @tab @tab X
  872. @tab Used in Quake III, Jedi Knight 2, other computer games.
  873. @item Interplay MVE DPCM @tab @tab X
  874. @tab Used in various Interplay computer games.
  875. @item Xan DPCM @tab @tab X
  876. @tab Used in Origin's Wing Commander IV AVI files.
  877. @item Sierra Online DPCM @tab @tab X
  878. @tab Used in Sierra Online game audio files.
  879. @item Apple MACE 3 @tab @tab X
  880. @item Apple MACE 6 @tab @tab X
  881. @item FLAC lossless audio @tab @tab X
  882. @item Shorten lossless audio @tab @tab X
  883. @item Apple lossless audio @tab @tab X
  884. @tab QuickTime fourcc 'alac'
  885. @item FFmpeg Sonic @tab X @tab X
  886. @tab experimental lossy/lossless codec
  887. @item Qdesign QDM2 @tab @tab X
  888. @tab there are still some distortions
  889. @item Real COOK @tab @tab X
  890. @tab All versions except 5.1 are supported
  891. @item DSP Group TrueSpeech @tab @tab X
  892. @item True Audio (TTA) @tab @tab X
  893. @item Smacker Audio @tab @tab X
  894. @item WavPack Audio @tab @tab X
  895. @item Cin Audio @tab @tab X
  896. @tab Codec used in Delphine Software games.
  897. @item Intel Music Coder @tab @tab X
  898. @end multitable
  899. @code{X} means that encoding (resp. decoding) is supported.
  900. @code{I} means that an integer-only version is available, too (ensures high
  901. performance on systems without hardware floating point support).
  902. @chapter Platform Specific information
  903. @section Linux
  904. FFmpeg should be compiled with at least GCC 2.95.3. GCC 3.2 is the
  905. preferred compiler now for FFmpeg. All future optimizations will depend on
  906. features only found in GCC 3.2.
  907. @section BSD
  908. BSD make will not build FFmpeg, you need to install and use GNU Make
  909. (@file{gmake}).
  910. @section Windows
  911. @subsection Native Windows compilation
  912. @itemize
  913. @item Install the current versions of MSYS and MinGW from
  914. @url{http://www.mingw.org/}. You can find detailed installation
  915. instructions in the download section and the FAQ.
  916. @item If you want to test the FFplay, also download
  917. the MinGW development library of SDL 1.2.x
  918. (@file{SDL-devel-1.2.x-mingw32.tar.gz}) from
  919. @url{http://www.libsdl.org}. Unpack it in a temporary directory, and
  920. unpack the archive @file{i386-mingw32msvc.tar.gz} in the MinGW tool
  921. directory. Edit the @file{sdl-config} script so that it gives the
  922. correct SDL directory when invoked.
  923. @item Extract the current version of FFmpeg.
  924. @item Start the MSYS shell (file @file{msys.bat}).
  925. @item Change to the FFmpeg directory and follow
  926. the instructions of how to compile FFmpeg (file
  927. @file{INSTALL}). Usually, launching @file{./configure} and @file{make}
  928. suffices. If you have problems using SDL, verify that
  929. @file{sdl-config} can be launched from the MSYS command line.
  930. @item You can install FFmpeg in @file{Program Files/FFmpeg} by typing
  931. @file{make install}. Don't forget to copy @file{SDL.dll} to the place
  932. you launch @file{ffplay} from.
  933. @end itemize
  934. Notes:
  935. @itemize
  936. @item The target @file{make wininstaller} can be used to create a
  937. Nullsoft based Windows installer for FFmpeg and FFplay. @file{SDL.dll}
  938. must be copied to the FFmpeg directory in order to build the
  939. installer.
  940. @item By using @code{./configure --enable-shared} when configuring FFmpeg,
  941. you can build @file{avcodec.dll} and @file{avformat.dll}. With
  942. @code{make install} you install the FFmpeg DLLs and the associated
  943. headers in @file{Program Files/FFmpeg}.
  944. @item Visual C++ compatibility: If you used @code{./configure --enable-shared}
  945. when configuring FFmpeg, FFmpeg tries to use the Microsoft Visual
  946. C++ @code{lib} tool to build @code{avcodec.lib} and
  947. @code{avformat.lib}. With these libraries you can link your Visual C++
  948. code directly with the FFmpeg DLLs (see below).
  949. @end itemize
  950. @subsection Visual C++ compatibility
  951. FFmpeg will not compile under Visual C++ -- and it has too many
  952. dependencies on the GCC compiler to make a port viable. However,
  953. if you want to use the FFmpeg libraries in your own applications,
  954. you can still compile those applications using Visual C++. An
  955. important restriction to this is that you have to use the
  956. dynamically linked versions of the FFmpeg libraries (i.e. the
  957. DLLs), and you have to make sure that Visual-C++-compatible
  958. import libraries are created during the FFmpeg build process.
  959. This description of how to use the FFmpeg libraries with Visual C++ is
  960. based on Visual C++ 2005 Express Edition Beta 2. If you have a different
  961. version, you might have to modify the procedures slightly.
  962. Here are the step-by-step instructions for building the FFmpeg libraries
  963. so they can be used with Visual C++:
  964. @enumerate
  965. @item Install Visual C++ (if you haven't done so already).
  966. @item Install MinGW and MSYS as described above.
  967. @item Add a call to @file{vcvars32.bat} (which sets up the environment
  968. variables for the Visual C++ tools) as the first line of
  969. @file{msys.bat}. The standard location for @file{vcvars32.bat} is
  970. @file{C:\Program Files\Microsoft Visual Studio 8\VC\bin\vcvars32.bat},
  971. and the standard location for @file{msys.bat} is
  972. @file{C:\msys\1.0\msys.bat}. If this corresponds to your setup, add the
  973. following line as the first line of @file{msys.bat}:
  974. @code{call "C:\Program Files\Microsoft Visual Studio 8\VC\bin\vcvars32.bat"}
  975. @item Start the MSYS shell (file @file{msys.bat}) and type @code{link.exe}.
  976. If you get a help message with the command line options of @code{link.exe},
  977. this means your environment variables are set up correctly, the
  978. Microsoft linker is on the path and will be used by FFmpeg to
  979. create Visual-C++-compatible import libraries.
  980. @item Extract the current version of FFmpeg and change to the FFmpeg directory.
  981. @item Type the command
  982. @code{./configure --enable-shared --disable-static --enable-memalign-hack}
  983. to configure and, if that didn't produce any errors,
  984. type @code{make} to build FFmpeg.
  985. @item The subdirectories @file{libavformat}, @file{libavcodec}, and
  986. @file{libavutil} should now contain the files @file{avformat.dll},
  987. @file{avformat.lib}, @file{avcodec.dll}, @file{avcodec.lib},
  988. @file{avutil.dll}, and @file{avutil.lib}, respectively. Copy the three
  989. DLLs to your System32 directory (typically @file{C:\Windows\System32}).
  990. @end enumerate
  991. And here is how to use these libraries with Visual C++:
  992. @enumerate
  993. @item Create a new console application ("File / New / Project") and then
  994. select "Win32 Console Application". On the appropriate page of the
  995. Application Wizard, uncheck the "Precompiled headers" option.
  996. @item Write the source code for your application, or, for testing, just
  997. copy the code from an existing sample application into the source file
  998. that Visual C++ has already created for you. (Note that your source
  999. filehas to have a @code{.cpp} extension; otherwise, Visual C++ won't
  1000. compile the FFmpeg headers correctly because in C mode, it doesn't
  1001. recognize the @code{inline} keyword.) For example, you can copy
  1002. @file{output_example.c} from the FFmpeg distribution (but you will
  1003. have to make minor modifications so the code will compile under
  1004. C++, see below).
  1005. @item Open the "Project / Properties" dialog box. In the "Configuration"
  1006. combo box, select "All Configurations" so that the changes you make will
  1007. affect both debug and release builds. In the tree view on the left hand
  1008. side, select "C/C++ / General", then edit the "Additional Include
  1009. Directories" setting to contain the complete paths to the
  1010. @file{libavformat}, @file{libavcodec}, and @file{libavutil}
  1011. subdirectories of your FFmpeg directory. Note that the directories have
  1012. to be separated using semicolons. Now select "Linker / General" from the
  1013. tree view and edit the "Additional Library Directories" setting to
  1014. contain the same three directories.
  1015. @item Still in the "Project / Properties" dialog box, select "Linker / Input"
  1016. from the tree view, then add the files @file{avformat.lib},
  1017. @file{avcodec.lib}, and @file{avutil.lib} to the end of the "Additional
  1018. Dependencies". Note that the names of the libraries have to be separated
  1019. using spaces.
  1020. @item Now, select "C/C++ / Code Generation" from the tree view. Select
  1021. "Debug" in the "Configuration" combo box. Make sure that "Runtime
  1022. Library" is set to "Multi-threaded Debug DLL". Then, select "Release" in
  1023. the "Configuration" combo box and make sure that "Runtime Library" is
  1024. set to "Multi-threaded DLL".
  1025. @item Click "OK" to close the "Project / Properties" dialog box and build
  1026. the application. Hopefully, it should compile and run cleanly. If you
  1027. used @file{output_example.c} as your sample application, you will get a
  1028. few compiler errors, but they are easy to fix. The first type of error
  1029. occurs because Visual C++ doesn't allow an @code{int} to be converted to
  1030. an @code{enum} without a cast. To solve the problem, insert the required
  1031. casts (this error occurs once for a @code{CodecID} and once for a
  1032. @code{CodecType}). The second type of error occurs because C++ requires
  1033. the return value of @code{malloc} to be cast to the exact type of the
  1034. pointer it is being assigned to. Visual C++ will complain that, for
  1035. example, @code{(void *)} is being assigned to @code{(uint8_t *)} without
  1036. an explicit cast. So insert an explicit cast in these places to silence
  1037. the compiler. The third type of error occurs because the @code{snprintf}
  1038. library function is called @code{_snprintf} under Visual C++. So just
  1039. add an underscore to fix the problem. With these changes,
  1040. @file{output_example.c} should compile under Visual C++, and the
  1041. resulting executable should produce valid video files.
  1042. @end enumerate
  1043. @subsection Cross compilation for Windows with Linux
  1044. You must use the MinGW cross compilation tools available at
  1045. @url{http://www.mingw.org/}.
  1046. Then configure FFmpeg with the following options:
  1047. @example
  1048. ./configure --enable-mingw32 --cross-prefix=i386-mingw32msvc-
  1049. @end example
  1050. (you can change the cross-prefix according to the prefix chosen for the
  1051. MinGW tools).
  1052. Then you can easily test FFmpeg with Wine
  1053. (@url{http://www.winehq.com/}).
  1054. @subsection Compilation under Cygwin
  1055. Cygwin works very much like Unix.
  1056. Just install your Cygwin with all the "Base" packages, plus the
  1057. following "Devel" ones:
  1058. @example
  1059. binutils, gcc-core, make, subversion
  1060. @end example
  1061. Do not install binutils-20060709-1 (they are buggy on shared builds);
  1062. use binutils-20050610-1 instead.
  1063. Then run
  1064. @example
  1065. ./configure --enable-static --disable-shared
  1066. @end example
  1067. to make a static build or
  1068. @example
  1069. ./configure --enable-shared --disable-static
  1070. @end example
  1071. to build shared libraries.
  1072. If you want to build FFmpeg with additional libraries, download Cygwin
  1073. "Devel" packages for Ogg and Vorbis from any Cygwin packages repository
  1074. and/or SDL, xvid, faac, faad2 packages from Cygwin Ports,
  1075. (@url{http://cygwinports.dotsrc.org/}).
  1076. @subsection Crosscompilation for Windows under Cygwin
  1077. With Cygwin you can create Windows binaries that don't need the cygwin1.dll.
  1078. Just install your Cygwin as explained before, plus these additional
  1079. "Devel" packages:
  1080. @example
  1081. gcc-mingw-core, mingw-runtime, mingw-zlib
  1082. @end example
  1083. and add some special flags to your configure invocation.
  1084. For a static build run
  1085. @example
  1086. ./configure --enable-mingw32 --enable-memalign-hack --enable-static --disable-shared --extra-cflags=-mno-cygwin --extra-libs=-mno-cygwin
  1087. @end example
  1088. and for a build with shared libraries
  1089. @example
  1090. ./configure --enable-mingw32 --enable-memalign-hack --enable-shared --disable-static --extra-cflags=-mno-cygwin --extra-libs=-mno-cygwin
  1091. @end example
  1092. @section BeOS
  1093. The configure script should guess the configuration itself.
  1094. Networking support is currently not finished.
  1095. errno issues fixed by Andrew Bachmann.
  1096. Old stuff:
  1097. François Revol - revol at free dot fr - April 2002
  1098. The configure script should guess the configuration itself,
  1099. however I still didn't test building on the net_server version of BeOS.
  1100. FFserver is broken (needs poll() implementation).
  1101. There are still issues with errno codes, which are negative in BeOS, and
  1102. that FFmpeg negates when returning. This ends up turning errors into
  1103. valid results, then crashes.
  1104. (To be fixed)
  1105. @chapter Developers Guide
  1106. @section API
  1107. @itemize @bullet
  1108. @item libavcodec is the library containing the codecs (both encoding and
  1109. decoding). Look at @file{libavcodec/apiexample.c} to see how to use it.
  1110. @item libavformat is the library containing the file format handling (mux and
  1111. demux code for several formats). Look at @file{ffplay.c} to use it in a
  1112. player. See @file{output_example.c} to use it to generate audio or video
  1113. streams.
  1114. @end itemize
  1115. @section Integrating libavcodec or libavformat in your program
  1116. You can integrate all the source code of the libraries to link them
  1117. statically to avoid any version problem. All you need is to provide a
  1118. 'config.mak' and a 'config.h' in the parent directory. See the defines
  1119. generated by ./configure to understand what is needed.
  1120. You can use libavcodec or libavformat in your commercial program, but
  1121. @emph{any patch you make must be published}. The best way to proceed is
  1122. to send your patches to the FFmpeg mailing list.
  1123. @node Coding Rules
  1124. @section Coding Rules
  1125. FFmpeg is programmed in the ISO C90 language with a few additional
  1126. features from ISO C99, namely:
  1127. @itemize @bullet
  1128. @item
  1129. the @samp{inline} keyword;
  1130. @item
  1131. @samp{//} comments;
  1132. @item
  1133. designated struct initializers (@samp{struct s x = @{ .i = 17 @};})
  1134. @item
  1135. compound literals (@samp{x = (struct s) @{ 17, 23 @};})
  1136. @end itemize
  1137. These features are supported by all compilers we care about, so we won't
  1138. accept patches to remove their use unless they absolutely don't impair
  1139. clarity and performance.
  1140. All code must compile with GCC 2.95 and GCC 3.3. Currently, FFmpeg also
  1141. compiles with several other compilers, such as the Compaq ccc compiler
  1142. or Sun Studio 9, and we would like to keep it that way unless it would
  1143. be exceedingly involved. To ensure compatibility, please don't use any
  1144. additional C99 features or GCC extensions. Especially watch out for:
  1145. @itemize @bullet
  1146. @item
  1147. mixing statements and declarations;
  1148. @item
  1149. @samp{long long} (use @samp{int64_t} instead);
  1150. @item
  1151. @samp{__attribute__} not protected by @samp{#ifdef __GNUC__} or similar;
  1152. @item
  1153. GCC statement expressions (@samp{(x = (@{ int y = 4; y; @})}).
  1154. @end itemize
  1155. Indent size is 4.
  1156. The presentation is the one specified by 'indent -i4 -kr -nut'.
  1157. The TAB character is forbidden outside of Makefiles as is any
  1158. form of trailing whitespace. Commits containing either will be
  1159. rejected by the Subversion repository.
  1160. Main priority in FFmpeg is simplicity and small code size (=less
  1161. bugs).
  1162. Comments: Use the JavaDoc/Doxygen
  1163. format (see examples below) so that code documentation
  1164. can be generated automatically. All nontrivial functions should have a comment
  1165. above them explaining what the function does, even if it's just one sentence.
  1166. All structures and their member variables should be documented, too.
  1167. @example
  1168. /**
  1169. * @@file mpeg.c
  1170. * MPEG codec.
  1171. * @@author ...
  1172. */
  1173. /**
  1174. * Summary sentence.
  1175. * more text ...
  1176. * ...
  1177. */
  1178. typedef struct Foobar@{
  1179. int var1; /**< var1 description */
  1180. int var2; ///< var2 description
  1181. /** var3 description */
  1182. int var3;
  1183. @} Foobar;
  1184. /**
  1185. * Summary sentence.
  1186. * more text ...
  1187. * ...
  1188. * @@param my_parameter description of my_parameter
  1189. * @@return return value description
  1190. */
  1191. int myfunc(int my_parameter)
  1192. ...
  1193. @end example
  1194. fprintf and printf are forbidden in libavformat and libavcodec,
  1195. please use av_log() instead.
  1196. @section Development Policy
  1197. @enumerate
  1198. @item
  1199. You must not commit code which breaks FFmpeg! (Meaning unfinished but
  1200. enabled code which breaks compilation or compiles but does not work or
  1201. breaks the regression tests)
  1202. You can commit unfinished stuff (for testing etc), but it must be disabled
  1203. (#ifdef etc) by default so it does not interfere with other developers'
  1204. work.
  1205. @item
  1206. You don't have to over-test things. If it works for you, and you think it
  1207. should work for others, then commit. If your code has problems
  1208. (portability, triggers compiler bugs, unusual environment etc) they will be
  1209. reported and eventually fixed.
  1210. @item
  1211. Do not commit unrelated changes together, split them into self-contained
  1212. pieces.
  1213. @item
  1214. Do not change behavior of the program (renaming options etc) without
  1215. first discussing it on the ffmpeg-devel mailing list. Do not remove
  1216. functionality from the code. Just improve!
  1217. Note: Redundant code can be removed.
  1218. @item
  1219. Do not commit changes to the build system (Makefiles, configure script)
  1220. which change behavior, defaults etc, without asking first. The same
  1221. applies to compiler warning fixes, trivial looking fixes and to code
  1222. maintained by other developers. We usually have a reason for doing things
  1223. the way we do. Send your changes as patches to the ffmpeg-devel mailing
  1224. list, and if the code maintainers say OK, you may commit. This does not
  1225. apply to files you wrote and/or maintain.
  1226. @item
  1227. We refuse source indentation and other cosmetic changes if they are mixed
  1228. with functional changes, such commits will be rejected and removed. Every
  1229. developer has his own indentation style, you should not change it. Of course
  1230. if you (re)write something, you can use your own style, even though we would
  1231. prefer if the indentation throughout FFmpeg was consistent (Many projects
  1232. force a given indentation style - we don't.). If you really need to make
  1233. indentation changes (try to avoid this), separate them strictly from real
  1234. changes.
  1235. NOTE: If you had to put if()@{ .. @} over a large (> 5 lines) chunk of code,
  1236. then either do NOT change the indentation of the inner part within (don't
  1237. move it to the right)! or do so in a separate commit
  1238. @item
  1239. Always fill out the commit log message. Describe in a few lines what you
  1240. changed and why. You can refer to mailing list postings if you fix a
  1241. particular bug. Comments such as "fixed!" or "Changed it." are unacceptable.
  1242. @item
  1243. If you apply a patch by someone else, include the name and email address in
  1244. the log message. Since the ffmpeg-cvslog mailing list is publicly
  1245. archived you should add some SPAM protection to the email address. Send an
  1246. answer to ffmpeg-devel (or wherever you got the patch from) saying that
  1247. you applied the patch.
  1248. @item
  1249. Do NOT commit to code actively maintained by others without permission.
  1250. Send a patch to ffmpeg-devel instead. If noone answers within a reasonable
  1251. timeframe (12h for build failures and security fixes, 3 days small changes,
  1252. 1 week for big patches) then commit your patch if you think it's OK.
  1253. Also note, the maintainer can simply ask for more time to review!
  1254. @item
  1255. Subscribe to the ffmpeg-cvslog mailing list. The diffs of all commits
  1256. are sent there and reviewed by all the other developers. Bugs and possible
  1257. improvements or general questions regarding commits are discussed there. We
  1258. expect you to react if problems with your code are uncovered.
  1259. @item
  1260. Update the documentation if you change behavior or add features. If you are
  1261. unsure how best to do this, send a patch to ffmpeg-devel, the documentation
  1262. maintainer(s) will review and commit your stuff.
  1263. @item
  1264. Never write to unallocated memory, never write over the end of arrays,
  1265. always check values read from some untrusted source before using them
  1266. as array index or other risky things.
  1267. @item
  1268. Remember to check if you need to bump versions for the specific libav
  1269. parts (libavutil, libavcodec, libavformat) you are changing. You need
  1270. to change the version integer and the version string.
  1271. Incrementing the first component means no backward compatibility to
  1272. previous versions (e.g. removal of a function from the public API).
  1273. Incrementing the second component means backward compatible change
  1274. (e.g. addition of a function to the public API).
  1275. Incrementing the third component means a noteworthy binary compatible
  1276. change (e.g. encoder bug fix that matters for the decoder).
  1277. @item
  1278. If you add a new codec, remember to update the changelog, add it to
  1279. the supported codecs table in the documentation and bump the second
  1280. component of the @file{libavcodec} version number appropriately. If
  1281. it has a fourcc, add it to @file{libavformat/avienc.c}, even if it
  1282. is only a decoder.
  1283. @end enumerate
  1284. We think our rules are not too hard. If you have comments, contact us.
  1285. Note, these rules are mostly borrowed from the MPlayer project.
  1286. @section Submitting patches
  1287. First, (@pxref{Coding Rules}) above if you didn't yet.
  1288. When you submit your patch, try to send a unified diff (diff '-up'
  1289. option). I cannot read other diffs :-)
  1290. Also please do not submit patches which contain several unrelated changes.
  1291. Split them into individual self-contained patches; this makes reviewing
  1292. them much easier.
  1293. Run the regression tests before submitting a patch so that you can
  1294. verify that there are no big problems.
  1295. Patches should be posted as base64 encoded attachments (or any other
  1296. encoding which ensures that the patch won't be trashed during
  1297. transmission) to the ffmpeg-devel mailing list, see
  1298. @url{http://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-devel}
  1299. It also helps quite a bit if you tell us what the patch does (for example
  1300. 'replaces lrint by lrintf'), and why (for example '*BSD isn't C99 compliant
  1301. and has no lrint()')
  1302. We reply to all submitted patches and either apply or reject with some
  1303. explanation why, but sometimes we are quite busy so it can take a week or two.
  1304. @section Regression tests
  1305. Before submitting a patch (or committing to the repository), you should at least
  1306. test that you did not break anything.
  1307. The regression tests build a synthetic video stream and a synthetic
  1308. audio stream. These are then encoded and decoded with all codecs or
  1309. formats. The CRC (or MD5) of each generated file is recorded in a
  1310. result file. A 'diff' is launched to compare the reference results and
  1311. the result file.
  1312. The regression tests then go on to test the FFserver code with a
  1313. limited set of streams. It is important that this step runs correctly
  1314. as well.
  1315. Run 'make test' to test all the codecs and formats.
  1316. Run 'make fulltest' to test all the codecs, formats and FFserver.
  1317. [Of course, some patches may change the results of the regression tests. In
  1318. this case, the reference results of the regression tests shall be modified
  1319. accordingly].
  1320. @bye