ffmpeg-doc.texi 61 KB

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