Changelog 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290
  1. Entries are sorted chronologically from oldest to youngest within each release,
  2. releases are sorted from youngest to oldest.
  3. version 2.3.3:
  4. - h264: fix grayscale only decoding with weighted prediction
  5. - mjpegdec: support AV_PIX_FMT_YUV420P16 with upscale_h
  6. - proresenc_ks: fix buffer overflow
  7. - matroskadec: fix crash
  8. version 2.3.2:
  9. - snow: fix null pointer dereference
  10. - huffyucdec: fix overread
  11. - vc1dec: fix crash
  12. - iff: fix out of array access
  13. - matroskaenc: fix assertion failure
  14. - cdgraphics: fix infinite loop
  15. - dvdsub_parser: fix infinite loop
  16. - mpeg12dec: support decoding some broken files
  17. - v4l2enc: fix crash
  18. - h264_parser: fix handling huge resolutions
  19. - h264_mp4toannexb_bsf: multiple bugfixes
  20. version 2.3.1:
  21. - public AVDCT API/ABI for DCT functions
  22. - g2meet: allow size changes within original sizes
  23. - dv: improved error resilience, fixing Ticket2340 and Ticket2341
  24. version 2.3:
  25. - AC3 fixed-point decoding
  26. - shuffleplanes filter
  27. - subfile protocol
  28. - Phantom Cine demuxer
  29. - replaygain data export
  30. - VP7 video decoder
  31. - Alias PIX image encoder and decoder
  32. - Improvements to the BRender PIX image decoder
  33. - Improvements to the XBM decoder
  34. - QTKit input device
  35. - improvements to OpenEXR image decoder
  36. - support decoding 16-bit RLE SGI images
  37. - GDI screen grabbing for Windows
  38. - alternative rendition support for HTTP Live Streaming
  39. - AVFoundation input device
  40. - Direct Stream Digital (DSD) decoder
  41. - Magic Lantern Video (MLV) demuxer
  42. - On2 AVC (Audio for Video) decoder
  43. - support for decoding through DXVA2 in ffmpeg
  44. - libbs2b-based stereo-to-binaural audio filter
  45. - libx264 reference frames count limiting depending on level
  46. - native Opus decoder
  47. - display matrix export and rotation api
  48. - WebVTT encoder
  49. - showcqt multimedia filter
  50. - zoompan filter
  51. - signalstats filter
  52. - hqx filter (hq2x, hq3x, hq4x)
  53. - flanger filter
  54. - Image format auto-detection
  55. - LRC demuxer and muxer
  56. - Samba protocol (via libsmbclient)
  57. - WebM DASH Manifest muxer
  58. - libfribidi support in drawtext
  59. version 2.2:
  60. - HNM version 4 demuxer and video decoder
  61. - Live HDS muxer
  62. - setsar/setdar filters now support variables in ratio expressions
  63. - elbg filter
  64. - string validation in ffprobe
  65. - support for decoding through VDPAU in ffmpeg (the -hwaccel option)
  66. - complete Voxware MetaSound decoder
  67. - remove mp3_header_compress bitstream filter
  68. - Windows resource files for shared libraries
  69. - aeval filter
  70. - stereoscopic 3d metadata handling
  71. - WebP encoding via libwebp
  72. - ATRAC3+ decoder
  73. - VP8 in Ogg demuxing
  74. - side & metadata support in NUT
  75. - framepack filter
  76. - XYZ12 rawvideo support in NUT
  77. - Exif metadata support in WebP decoder
  78. - OpenGL device
  79. - Use metadata_header_padding to control padding in ID3 tags (currently used in
  80. MP3, AIFF, and OMA files), FLAC header, and the AVI "junk" block.
  81. - Mirillis FIC video decoder
  82. - Support DNx444
  83. - libx265 encoder
  84. - dejudder filter
  85. - Autodetect VDA like all other hardware accelerations
  86. version 2.1:
  87. - aecho filter
  88. - perspective filter ported from libmpcodecs
  89. - ffprobe -show_programs option
  90. - compand filter
  91. - RTMP seek support
  92. - when transcoding with ffmpeg (i.e. not streamcopying), -ss is now accurate
  93. even when used as an input option. Previous behavior can be restored with
  94. the -noaccurate_seek option.
  95. - ffmpeg -t option can now be used for inputs, to limit the duration of
  96. data read from an input file
  97. - incomplete Voxware MetaSound decoder
  98. - read EXIF metadata from JPEG
  99. - DVB teletext decoder
  100. - phase filter ported from libmpcodecs
  101. - w3fdif filter
  102. - Opus support in Matroska
  103. - FFV1 version 1.3 is stable and no longer experimental
  104. - FFV1: YUVA(444,422,420) 9, 10 and 16 bit support
  105. - changed DTS stream id in lavf mpeg ps muxer from 0x8a to 0x88, to be
  106. more consistent with other muxers.
  107. - adelay filter
  108. - pullup filter ported from libmpcodecs
  109. - ffprobe -read_intervals option
  110. - Lossless and alpha support for WebP decoder
  111. - Error Resilient AAC syntax (ER AAC LC) decoding
  112. - Low Delay AAC (ER AAC LD) decoding
  113. - mux chapters in ASF files
  114. - SFTP protocol (via libssh)
  115. - libx264: add ability to encode in YUVJ422P and YUVJ444P
  116. - Fraps: use BT.709 colorspace by default for yuv, as reference fraps decoder does
  117. - make decoding alpha optional for prores, ffv1 and vp6 by setting
  118. the skip_alpha flag.
  119. - ladspa wrapper filter
  120. - native VP9 decoder
  121. - dpx parser
  122. - max_error_rate parameter in ffmpeg
  123. - PulseAudio output device
  124. - ReplayGain scanner
  125. - Enhanced Low Delay AAC (ER AAC ELD) decoding (no LD SBR support)
  126. - Linux framebuffer output device
  127. - HEVC decoder
  128. - raw HEVC, HEVC in MOV/MP4, HEVC in Matroska, HEVC in MPEG-TS demuxing
  129. - mergeplanes filter
  130. version 2.0:
  131. - curves filter
  132. - reference-counting for AVFrame and AVPacket data
  133. - ffmpeg now fails when input options are used for output file
  134. or vice versa
  135. - support for Monkey's Audio versions from 3.93
  136. - perms and aperms filters
  137. - audio filtering support in ffplay
  138. - 10% faster aac encoding on x86 and MIPS
  139. - sine audio filter source
  140. - WebP demuxing and decoding support
  141. - ffmpeg options -filter_script and -filter_complex_script, which allow a
  142. filtergraph description to be read from a file
  143. - OpenCL support
  144. - audio phaser filter
  145. - separatefields filter
  146. - libquvi demuxer
  147. - uniform options syntax across all filters
  148. - telecine filter
  149. - interlace filter
  150. - smptehdbars source
  151. - inverse telecine filters (fieldmatch and decimate)
  152. - colorbalance filter
  153. - colorchannelmixer filter
  154. - The matroska demuxer can now output proper verbatim ASS packets. It will
  155. become the default at the next libavformat major bump.
  156. - decent native animated GIF encoding
  157. - asetrate filter
  158. - interleave filter
  159. - timeline editing with filters
  160. - vidstabdetect and vidstabtransform filters for video stabilization using
  161. the vid.stab library
  162. - astats filter
  163. - trim and atrim filters
  164. - ffmpeg -t and -ss (output-only) options are now sample-accurate when
  165. transcoding audio
  166. - Matroska muxer can now put the index at the beginning of the file.
  167. - extractplanes filter
  168. - avectorscope filter
  169. - ADPCM DTK decoder
  170. - ADP demuxer
  171. - RSD demuxer
  172. - RedSpark demuxer
  173. - ADPCM IMA Radical decoder
  174. - zmq filters
  175. - DCT denoiser filter (dctdnoiz)
  176. - Wavelet denoiser filter ported from libmpcodecs as owdenoise (formerly "ow")
  177. - Apple Intermediate Codec decoder
  178. - Escape 130 video decoder
  179. - FTP protocol support
  180. - V4L2 output device
  181. - 3D LUT filter (lut3d)
  182. - SMPTE 302M audio encoder
  183. - support for slice multithreading in libavfilter
  184. - Hald CLUT support (generation and filtering)
  185. - VC-1 interlaced B-frame support
  186. - support for WavPack muxing (raw and in Matroska)
  187. - XVideo output device
  188. - vignette filter
  189. - True Audio (TTA) encoder
  190. - Go2Webinar decoder
  191. - mcdeint filter ported from libmpcodecs
  192. - sab filter ported from libmpcodecs
  193. - ffprobe -show_chapters option
  194. - WavPack encoding through libwavpack
  195. - rotate filter
  196. - spp filter ported from libmpcodecs
  197. - libgme support
  198. - psnr filter
  199. version 1.2:
  200. - VDPAU hardware acceleration through normal hwaccel
  201. - SRTP support
  202. - Error diffusion dither in Swscale
  203. - Chained Ogg support
  204. - Theora Midstream reconfiguration support
  205. - EVRC decoder
  206. - audio fade filter
  207. - filtering audio with unknown channel layout
  208. - allpass, bass, bandpass, bandreject, biquad, equalizer, highpass, lowpass
  209. and treble audio filter
  210. - improved showspectrum filter, with multichannel support and sox-like colors
  211. - histogram filter
  212. - tee muxer
  213. - il filter ported from libmpcodecs
  214. - support ID3v2 tags in ASF files
  215. - encrypted TTA stream decoding support
  216. - RF64 support in WAV muxer
  217. - noise filter ported from libmpcodecs
  218. - Subtitles character encoding conversion
  219. - blend filter
  220. - stereo3d filter ported from libmpcodecs
  221. version 1.1:
  222. - stream disposition information printing in ffprobe
  223. - filter for loudness analysis following EBU R128
  224. - Opus encoder using libopus
  225. - ffprobe -select_streams option
  226. - Pinnacle TARGA CineWave YUV16 decoder
  227. - TAK demuxer, decoder and parser
  228. - DTS-HD demuxer
  229. - remove -same_quant, it hasn't worked for years
  230. - FFM2 support
  231. - X-Face image encoder and decoder
  232. - 24-bit FLAC encoding
  233. - multi-channel ALAC encoding up to 7.1
  234. - metadata (INFO tag) support in WAV muxer
  235. - subtitles raw text decoder
  236. - support for building DLLs using MSVC
  237. - LVF demuxer
  238. - ffescape tool
  239. - metadata (info chunk) support in CAF muxer
  240. - field filter ported from libmpcodecs
  241. - AVR demuxer
  242. - geq filter ported from libmpcodecs
  243. - remove ffserver daemon mode
  244. - AST muxer/demuxer
  245. - new expansion syntax for drawtext
  246. - BRender PIX image decoder
  247. - ffprobe -show_entries option
  248. - ffprobe -sections option
  249. - ADPCM IMA Dialogic decoder
  250. - BRSTM demuxer
  251. - animated GIF decoder and demuxer
  252. - PVF demuxer
  253. - subtitles filter
  254. - IRCAM muxer/demuxer
  255. - Paris Audio File demuxer
  256. - Virtual concatenation demuxer
  257. - VobSub demuxer
  258. - JSON captions for TED talks decoding support
  259. - SOX Resampler support in libswresample
  260. - aselect filter
  261. - SGI RLE 8-bit / Silicon Graphics RLE 8-bit video decoder
  262. - Silicon Graphics Motion Video Compressor 1 & 2 decoder
  263. - Silicon Graphics Movie demuxer
  264. - apad filter
  265. - Resolution & pixel format change support with multithreading for H.264
  266. - documentation split into per-component manuals
  267. - pp (postproc) filter ported from MPlayer
  268. - NIST Sphere demuxer
  269. - MPL2, VPlayer, MPlayer, AQTitle, PJS and SubViewer v1 subtitles demuxers and decoders
  270. - Sony Wave64 muxer
  271. - adobe and limelight publisher authentication in RTMP
  272. - data: URI scheme
  273. - support building on the Plan 9 operating system
  274. - kerndeint filter ported from MPlayer
  275. - histeq filter ported from VirtualDub
  276. - Megalux Frame demuxer
  277. - 012v decoder
  278. - Improved AVC Intra decoding support
  279. version 1.0:
  280. - INI and flat output in ffprobe
  281. - Scene detection in libavfilter
  282. - Indeo Audio decoder
  283. - channelsplit audio filter
  284. - setnsamples audio filter
  285. - atempo filter
  286. - ffprobe -show_data option
  287. - RTMPT protocol support
  288. - iLBC encoding/decoding via libilbc
  289. - Microsoft Screen 1 decoder
  290. - join audio filter
  291. - audio channel mapping filter
  292. - Microsoft ATC Screen decoder
  293. - RTSP listen mode
  294. - TechSmith Screen Codec 2 decoder
  295. - AAC encoding via libfdk-aac
  296. - Microsoft Expression Encoder Screen decoder
  297. - RTMPS protocol support
  298. - RTMPTS protocol support
  299. - RTMPE protocol support
  300. - RTMPTE protocol support
  301. - showwaves and showspectrum filter
  302. - LucasArts SMUSH SANM playback support
  303. - LucasArts SMUSH VIMA audio decoder (ADPCM)
  304. - LucasArts SMUSH demuxer
  305. - SAMI, RealText and SubViewer demuxers and decoders
  306. - Heart Of Darkness PAF playback support
  307. - iec61883 device
  308. - asettb filter
  309. - new option: -progress
  310. - 3GPP Timed Text encoder/decoder
  311. - GeoTIFF decoder support
  312. - ffmpeg -(no)stdin option
  313. - Opus decoder using libopus
  314. - caca output device using libcaca
  315. - alphaextract and alphamerge filters
  316. - concat filter
  317. - flite filter
  318. - Canopus Lossless Codec decoder
  319. - bitmap subtitles in filters (experimental and temporary)
  320. - MP2 encoding via TwoLAME
  321. - bmp parser
  322. - smptebars source
  323. - asetpts filter
  324. - hue filter
  325. - ICO muxer
  326. - SubRip encoder and decoder without embedded timing
  327. - edge detection filter
  328. - framestep filter
  329. - ffmpeg -shortest option is now per-output file
  330. -pass and -passlogfile are now per-output stream
  331. - volume measurement filter
  332. - Ut Video encoder
  333. - Microsoft Screen 2 decoder
  334. - smartblur filter ported from MPlayer
  335. - CPiA decoder
  336. - decimate filter ported from MPlayer
  337. - RTP depacketization of JPEG
  338. - Smooth Streaming live segmenter muxer
  339. - F4V muxer
  340. - sendcmd and asendcmd filters
  341. - WebVTT demuxer and decoder (simple tags supported)
  342. - RTP packetization of JPEG
  343. - faststart option in the MOV/MP4 muxer
  344. - support for building with MSVC
  345. version 0.11:
  346. - Fixes: CVE-2012-2772, CVE-2012-2774, CVE-2012-2775, CVE-2012-2776, CVE-2012-2777,
  347. CVE-2012-2779, CVE-2012-2782, CVE-2012-2783, CVE-2012-2784, CVE-2012-2785,
  348. CVE-2012-2786, CVE-2012-2787, CVE-2012-2788, CVE-2012-2789, CVE-2012-2790,
  349. CVE-2012-2791, CVE-2012-2792, CVE-2012-2793, CVE-2012-2794, CVE-2012-2795,
  350. CVE-2012-2796, CVE-2012-2797, CVE-2012-2798, CVE-2012-2799, CVE-2012-2800,
  351. CVE-2012-2801, CVE-2012-2802, CVE-2012-2803, CVE-2012-2804,
  352. - v408 Quicktime and Microsoft AYUV Uncompressed 4:4:4:4 encoder and decoder
  353. - setfield filter
  354. - CDXL demuxer and decoder
  355. - Apple ProRes encoder
  356. - ffprobe -count_packets and -count_frames options
  357. - Sun Rasterfile Encoder
  358. - ID3v2 attached pictures reading and writing
  359. - WMA Lossless decoder
  360. - bluray protocol
  361. - blackdetect filter
  362. - libutvideo encoder wrapper (--enable-libutvideo)
  363. - swapuv filter
  364. - bbox filter
  365. - XBM encoder and decoder
  366. - RealAudio Lossless decoder
  367. - ZeroCodec decoder
  368. - tile video filter
  369. - Metal Gear Solid: The Twin Snakes demuxer
  370. - OpenEXR image decoder
  371. - removelogo filter
  372. - drop support for ffmpeg without libavfilter
  373. - drawtext video filter: fontconfig support
  374. - ffmpeg -benchmark_all option
  375. - super2xsai filter ported from libmpcodecs
  376. - add libavresample audio conversion library for compatibility
  377. - MicroDVD decoder
  378. - Avid Meridien (AVUI) encoder and decoder
  379. - accept + prefix to -pix_fmt option to disable automatic conversions.
  380. - complete audio filtering in libavfilter and ffmpeg
  381. - add fps filter
  382. - vorbis parser
  383. - png parser
  384. - audio mix filter
  385. - ffv1: support (draft) version 1.3
  386. version 0.10:
  387. - Fixes: CVE-2011-3929, CVE-2011-3934, CVE-2011-3935, CVE-2011-3936,
  388. CVE-2011-3937, CVE-2011-3940, CVE-2011-3941, CVE-2011-3944,
  389. CVE-2011-3945, CVE-2011-3946, CVE-2011-3947, CVE-2011-3949,
  390. CVE-2011-3950, CVE-2011-3951, CVE-2011-3952
  391. - v410 Quicktime Uncompressed 4:4:4 10-bit encoder and decoder
  392. - SBaGen (SBG) binaural beats script demuxer
  393. - OpenMG Audio muxer
  394. - Timecode extraction in DV and MOV
  395. - thumbnail video filter
  396. - XML output in ffprobe
  397. - asplit audio filter
  398. - tinterlace video filter
  399. - astreamsync audio filter
  400. - amerge audio filter
  401. - ISMV (Smooth Streaming) muxer
  402. - GSM audio parser
  403. - SMJPEG muxer
  404. - XWD encoder and decoder
  405. - Automatic thread count based on detection number of (available) CPU cores
  406. - y41p Brooktree Uncompressed 4:1:1 12-bit encoder and decoder
  407. - ffprobe -show_error option
  408. - Avid 1:1 10-bit RGB Packer codec
  409. - v308 Quicktime Uncompressed 4:4:4 encoder and decoder
  410. - yuv4 libquicktime packed 4:2:0 encoder and decoder
  411. - ffprobe -show_frames option
  412. - silencedetect audio filter
  413. - ffprobe -show_program_version, -show_library_versions, -show_versions options
  414. - rv34: frame-level multi-threading
  415. - optimized iMDCT transform on x86 using SSE for for mpegaudiodec
  416. - Improved PGS subtitle decoder
  417. - dumpgraph option to lavfi device
  418. - r210 and r10k encoders
  419. - ffwavesynth decoder
  420. - aviocat tool
  421. - ffeval tool
  422. - support encoding and decoding 4-channel SGI images
  423. version 0.9:
  424. - openal input device added
  425. - boxblur filter added
  426. - BWF muxer
  427. - Flash Screen Video 2 decoder
  428. - lavfi input device added
  429. - added avconv, which is almost the same for now, except
  430. for a few incompatible changes in the options, which will hopefully make them
  431. easier to use. The changes are:
  432. * The options placement is now strictly enforced! While in theory the
  433. options for ffmpeg should be given in [input options] -i INPUT [output
  434. options] OUTPUT order, in practice it was possible to give output options
  435. before the -i and it mostly worked. Except when it didn't - the behavior was
  436. a bit inconsistent. In avconv, it is not possible to mix input and output
  437. options. All non-global options are reset after an input or output filename.
  438. * All per-file options are now truly per-file - they apply only to the next
  439. input or output file and specifying different values for different files
  440. will now work properly (notably -ss and -t options).
  441. * All per-stream options are now truly per-stream - it is possible to
  442. specify which stream(s) should a given option apply to. See the Stream
  443. specifiers section in the avconv manual for details.
  444. * In ffmpeg some options (like -newvideo/-newaudio/...) are irregular in the
  445. sense that they're specified after the output filename instead of before,
  446. like all other options. In avconv this irregularity is removed, all options
  447. apply to the next input or output file.
  448. * -newvideo/-newaudio/-newsubtitle options were removed. Not only were they
  449. irregular and highly confusing, they were also redundant. In avconv the -map
  450. option will create new streams in the output file and map input streams to
  451. them. E.g. avconv -i INPUT -map 0 OUTPUT will create an output stream for
  452. each stream in the first input file.
  453. * The -map option now has slightly different and more powerful syntax:
  454. + Colons (':') are used to separate file index/stream type/stream index
  455. instead of dots. Comma (',') is used to separate the sync stream instead
  456. of colon.. This is done for consistency with other options.
  457. + It's possible to specify stream type. E.g. -map 0:a:2 creates an
  458. output stream from the third input audio stream.
  459. + Omitting the stream index now maps all the streams of the given type,
  460. not just the first. E.g. -map 0:s creates output streams for all the
  461. subtitle streams in the first input file.
  462. + Since -map can now match multiple streams, negative mappings were
  463. introduced. Negative mappings disable some streams from an already
  464. defined map. E.g. '-map 0 -map -0:a:1' means 'create output streams for
  465. all the stream in the first input file, except for the second audio
  466. stream'.
  467. * There is a new option -c (or -codec) for choosing the decoder/encoder to
  468. use, which allows to precisely specify target stream(s) consistently with
  469. other options. E.g. -c:v lib264 sets the codec for all video streams, -c:a:0
  470. libvorbis sets the codec for the first audio stream and -c copy copies all
  471. the streams without reencoding. Old -vcodec/-acodec/-scodec options are now
  472. aliases to -c:v/a/s
  473. * It is now possible to precisely specify which stream should an AVOption
  474. apply to. E.g. -b:v:0 2M sets the bitrate for the first video stream, while
  475. -b:a 128k sets the bitrate for all audio streams. Note that the old -ab 128k
  476. syntax is deprecated and will stop working soon.
  477. * -map_chapters now takes only an input file index and applies to the next
  478. output file. This is consistent with how all the other options work.
  479. * -map_metadata now takes only an input metadata specifier and applies to
  480. the next output file. Output metadata specifier is now part of the option
  481. name, similarly to the AVOptions/map/codec feature above.
  482. * -metadata can now be used to set metadata on streams and chapters, e.g.
  483. -metadata:s:1 language=eng sets the language of the first stream to 'eng'.
  484. This made -vlang/-alang/-slang options redundant, so they were removed.
  485. * -qscale option now uses stream specifiers and applies to all streams, not
  486. just video. I.e. plain -qscale number would now apply to all streams. To get
  487. the old behavior, use -qscale:v. Also there is now a shortcut -q for -qscale
  488. and -aq is now an alias for -q:a.
  489. * -vbsf/-absf/-sbsf options were removed and replaced by a -bsf option which
  490. uses stream specifiers. Use -bsf:v/a/s instead of the old options.
  491. * -itsscale option now uses stream specifiers, so its argument is only the
  492. scale parameter.
  493. * -intra option was removed, use -g 0 for the same effect.
  494. * -psnr option was removed, use -flags +psnr for the same effect.
  495. * -vf option is now an alias to the new -filter option, which uses stream specifiers.
  496. * -vframes/-aframes/-dframes options are now aliases to the new -frames option.
  497. * -vtag/-atag/-stag options are now aliases to the new -tag option.
  498. - XMV demuxer
  499. - LOAS demuxer
  500. - ashowinfo filter added
  501. - Windows Media Image decoder
  502. - amovie source added
  503. - LATM muxer/demuxer
  504. - Speex encoder via libspeex
  505. - JSON output in ffprobe
  506. - WTV muxer
  507. - Optional C++ Support (needed for libstagefright)
  508. - H.264 Decoding on Android via Stagefright
  509. - Prores decoder
  510. - BIN/XBIN/ADF/IDF text file decoder
  511. - aconvert audio filter added
  512. - audio support to lavfi input device added
  513. - libcdio-paranoia input device for audio CD grabbing
  514. - Apple ProRes decoder
  515. - CELT in Ogg demuxing
  516. - G.723.1 demuxer and decoder
  517. - libmodplug support (--enable-libmodplug)
  518. - VC-1 interlaced decoding
  519. - libutvideo wrapper (--enable-libutvideo)
  520. - aevalsrc audio source added
  521. - Ut Video decoder
  522. - Speex encoding via libspeex
  523. - 4:2:2 H.264 decoding support
  524. - 4:2:2 and 4:4:4 H.264 encoding with libx264
  525. - Pulseaudio input device
  526. - Prores encoder
  527. - Video Decoder Acceleration (VDA) HWAccel module.
  528. - replacement Indeo 3 decoder
  529. - new ffmpeg option: -map_channel
  530. - volume audio filter added
  531. - earwax audio filter added
  532. - libv4l2 support (--enable-libv4l2)
  533. - TLS/SSL and HTTPS protocol support
  534. - AVOptions API rewritten and documented
  535. - most of CODEC_FLAG2_*, some CODEC_FLAG_* and many codec-specific fields in
  536. AVCodecContext deprecated. Codec private options should be used instead.
  537. - Properly working defaults in libx264 wrapper, support for native presets.
  538. - Encrypted OMA files support
  539. - Discworld II BMV decoding support
  540. - VBLE Decoder
  541. - OS X Video Decoder Acceleration (VDA) support
  542. - compact and csv output in ffprobe
  543. - pan audio filter
  544. - IFF Amiga Continuous Bitmap (ACBM) decoder
  545. - ass filter
  546. - CRI ADX audio format muxer and demuxer
  547. - Playstation Portable PMP format demuxer
  548. - Microsoft Windows ICO demuxer
  549. - life source
  550. - PCM format support in OMA demuxer
  551. - CLJR encoder
  552. - new option: -report
  553. - Dxtory capture format decoder
  554. - cellauto source
  555. - Simple segmenting muxer
  556. - Indeo 4 decoder
  557. - SMJPEG demuxer
  558. version 0.8:
  559. - many many things we forgot because we rather write code than changelogs
  560. - WebM support in Matroska de/muxer
  561. - low overhead Ogg muxing
  562. - MMS-TCP support
  563. - VP8 de/encoding via libvpx
  564. - Demuxer for On2's IVF format
  565. - Pictor/PC Paint decoder
  566. - HE-AAC v2 decoder
  567. - HE-AAC v2 encoding with libaacplus
  568. - libfaad2 wrapper removed
  569. - DTS-ES extension (XCh) decoding support
  570. - native VP8 decoder
  571. - RTSP tunneling over HTTP
  572. - RTP depacketization of SVQ3
  573. - -strict inofficial replaced by -strict unofficial
  574. - ffplay -exitonkeydown and -exitonmousedown options added
  575. - native GSM / GSM MS decoder
  576. - RTP depacketization of QDM2
  577. - ANSI/ASCII art playback system
  578. - Lego Mindstorms RSO de/muxer
  579. - libavcore added (and subsequently removed)
  580. - SubRip subtitle file muxer and demuxer
  581. - Chinese AVS encoding via libxavs
  582. - ffprobe -show_packets option added
  583. - RTP packetization of Theora and Vorbis
  584. - RTP depacketization of MP4A-LATM
  585. - RTP packetization and depacketization of VP8
  586. - hflip filter
  587. - Apple HTTP Live Streaming demuxer
  588. - a64 codec
  589. - MMS-HTTP support
  590. - G.722 ADPCM audio encoder/decoder
  591. - R10k video decoder
  592. - ocv_smooth filter
  593. - frei0r wrapper filter
  594. - change crop filter syntax to width:height:x:y
  595. - make the crop filter accept parametric expressions
  596. - make ffprobe accept AVFormatContext options
  597. - yadif filter
  598. - blackframe filter
  599. - Demuxer for Leitch/Harris' VR native stream format (LXF)
  600. - RTP depacketization of the X-QT QuickTime format
  601. - SAP (Session Announcement Protocol, RFC 2974) muxer and demuxer
  602. - cropdetect filter
  603. - ffmpeg -crop* options removed
  604. - transpose filter added
  605. - ffmpeg -force_key_frames option added
  606. - demuxer for receiving raw rtp:// URLs without an SDP description
  607. - single stream LATM/LOAS decoder
  608. - setpts filter added
  609. - Win64 support for optimized x86 assembly functions
  610. - MJPEG/AVI1 to JPEG/JFIF bitstream filter
  611. - ASS subtitle encoder and decoder
  612. - IEC 61937 encapsulation for E-AC-3, TrueHD, DTS-HD (for HDMI passthrough)
  613. - overlay filter added
  614. - rename aspect filter to setdar, and pixelaspect to setsar
  615. - IEC 61937 demuxer
  616. - Mobotix .mxg demuxer
  617. - frei0r source added
  618. - hqdn3d filter added
  619. - RTP depacketization of QCELP
  620. - FLAC parser added
  621. - gradfun filter added
  622. - AMR-WB decoder
  623. - replace the ocv_smooth filter with a more generic ocv filter
  624. - Windows Televison (WTV) demuxer
  625. - FFmpeg metadata format muxer and demuxer
  626. - SubRip (srt) subtitle encoder and decoder
  627. - floating-point AC-3 encoder added
  628. - Lagarith decoder
  629. - ffmpeg -copytb option added
  630. - IVF muxer added
  631. - Wing Commander IV movies decoder added
  632. - movie source added
  633. - Bink version 'b' audio and video decoder
  634. - Bitmap Brothers JV playback system
  635. - Apple HTTP Live Streaming protocol handler
  636. - sndio support for playback and record
  637. - Linux framebuffer input device added
  638. - Chronomaster DFA decoder
  639. - DPX image encoder
  640. - MicroDVD subtitle file muxer and demuxer
  641. - Playstation Portable PMP format demuxer
  642. - fieldorder video filter added
  643. - AAC encoding via libvo-aacenc
  644. - AMR-WB encoding via libvo-amrwbenc
  645. - xWMA demuxer
  646. - Mobotix MxPEG decoder
  647. - VP8 frame-multithreading
  648. - NEON optimizations for VP8
  649. - Lots of deprecated API cruft removed
  650. - fft and imdct optimizations for AVX (Sandy Bridge) processors
  651. - showinfo filter added
  652. - SMPTE 302M AES3 audio decoder
  653. - Apple Core Audio Format muxer
  654. - 9bit and 10bit per sample support in the H.264 decoder
  655. - 9bit and 10bit FFV1 encoding / decoding
  656. - split filter added
  657. - select filter added
  658. - sdl output device added
  659. - libmpcodecs video filter support (3 times as many filters than before)
  660. - mpeg2 aspect ratio dection fixed
  661. - libxvid aspect pickiness fixed
  662. - Frame multithreaded decoding
  663. - E-AC-3 audio encoder
  664. - ac3enc: add channel coupling support
  665. - floating-point sample format support to the ac3, eac3, dca, aac, and vorbis decoders.
  666. - H264/MPEG frame-level multi-threading
  667. - All av_metadata_* functions renamed to av_dict_* and moved to libavutil
  668. - 4:4:4 H.264 decoding support
  669. - 10-bit H.264 optimizations for x86
  670. - lut, lutrgb, and lutyuv filters added
  671. - buffersink libavfilter sink added
  672. - Bump libswscale for recently reported ABI break
  673. - New J2K encoder (via OpenJPEG)
  674. version 0.7:
  675. - all the changes for 0.8, but keeping API/ABI compatibility with the 0.6 release
  676. version 0.6:
  677. - PB-frame decoding for H.263
  678. - deprecated vhook subsystem removed
  679. - deprecated old scaler removed
  680. - VQF demuxer
  681. - Alpha channel scaler
  682. - PCX encoder
  683. - RTP packetization of H.263
  684. - RTP packetization of AMR
  685. - RTP depacketization of Vorbis
  686. - CorePNG decoding support
  687. - Cook multichannel decoding support
  688. - introduced avlanguage helpers in libavformat
  689. - 8088flex TMV demuxer and decoder
  690. - per-stream language-tags extraction in asfdec
  691. - V210 decoder and encoder
  692. - remaining GPL parts in AC-3 decoder converted to LGPL
  693. - QCP demuxer
  694. - SoX native format muxer and demuxer
  695. - AMR-NB decoding/encoding, AMR-WB decoding via OpenCORE libraries
  696. - DPX image decoder
  697. - Electronic Arts Madcow decoder
  698. - DivX (XSUB) subtitle encoder
  699. - nonfree libamr support for AMR-NB/WB decoding/encoding removed
  700. - experimental AAC encoder
  701. - RTP depacketization of ASF and RTSP from WMS servers
  702. - RTMP support in libavformat
  703. - noX handling for OPT_BOOL X options
  704. - Wave64 demuxer
  705. - IEC-61937 compatible Muxer
  706. - TwinVQ decoder
  707. - Bluray (PGS) subtitle decoder
  708. - LPCM support in MPEG-TS (HDMV RID as found on Blu-ray disks)
  709. - WMA Pro decoder
  710. - Core Audio Format demuxer
  711. - ATRAC1 decoder
  712. - MD STUDIO audio demuxer
  713. - RF64 support in WAV demuxer
  714. - MPEG-4 Audio Lossless Coding (ALS) decoder
  715. - -formats option split into -formats, -codecs, -bsfs, and -protocols
  716. - IV8 demuxer
  717. - CDG demuxer and decoder
  718. - R210 decoder
  719. - Auravision Aura 1 and 2 decoders
  720. - Deluxe Paint Animation playback system
  721. - SIPR decoder
  722. - Adobe Filmstrip muxer and demuxer
  723. - RTP depacketization of H.263
  724. - Bink demuxer and audio/video decoders
  725. - enable symbol versioning by default for linkers that support it
  726. - IFF PBM/ILBM bitmap decoder
  727. - concat protocol
  728. - Indeo 5 decoder
  729. - RTP depacketization of AMR
  730. - WMA Voice decoder
  731. - ffprobe tool
  732. - AMR-NB decoder
  733. - RTSP muxer
  734. - HE-AAC v1 decoder
  735. - Kega Game Video (KGV1) decoder
  736. - VorbisComment writing for FLAC, Ogg FLAC and Ogg Speex files
  737. - RTP depacketization of Theora
  738. - HTTP Digest authentication
  739. - RTMP/RTMPT/RTMPS/RTMPE/RTMPTE protocol support via librtmp
  740. - Psygnosis YOP demuxer and video decoder
  741. - spectral extension support in the E-AC-3 decoder
  742. - unsharp video filter
  743. - RTP hinting in the mov/3gp/mp4 muxer
  744. - Dirac in Ogg demuxing
  745. - seek to keyframes in Ogg
  746. - 4:2:2 and 4:4:4 Theora decoding
  747. - 35% faster VP3/Theora decoding
  748. - faster AAC decoding
  749. - faster H.264 decoding
  750. - RealAudio 1.0 (14.4K) encoder
  751. version 0.5:
  752. - DV50 AKA DVCPRO50 encoder, decoder, muxer and demuxer
  753. - TechSmith Camtasia (TSCC) video decoder
  754. - IBM Ultimotion (ULTI) video decoder
  755. - Sierra Online audio file demuxer and decoder
  756. - Apple QuickDraw (qdrw) video decoder
  757. - Creative ADPCM audio decoder (16 bits as well as 8 bits schemes)
  758. - Electronic Arts Multimedia (WVE/UV2/etc.) file demuxer
  759. - Miro VideoXL (VIXL) video decoder
  760. - H.261 video encoder
  761. - QPEG video decoder
  762. - Nullsoft Video (NSV) file demuxer
  763. - Shorten audio decoder
  764. - LOCO video decoder
  765. - Apple Lossless Audio Codec (ALAC) decoder
  766. - Winnov WNV1 video decoder
  767. - Autodesk Animator Studio Codec (AASC) decoder
  768. - Indeo 2 video decoder
  769. - Fraps FPS1 video decoder
  770. - Snow video encoder/decoder
  771. - Sonic audio encoder/decoder
  772. - Vorbis audio decoder
  773. - Macromedia ADPCM decoder
  774. - Duck TrueMotion 2 video decoder
  775. - support for decoding FLX and DTA extensions in FLIC files
  776. - H.264 custom quantization matrices support
  777. - ffserver fixed, it should now be usable again
  778. - QDM2 audio decoder
  779. - Real Cooker audio decoder
  780. - TrueSpeech audio decoder
  781. - WMA2 audio decoder fixed, now all files should play correctly
  782. - RealAudio 14.4 and 28.8 decoders fixed
  783. - JPEG-LS decoder
  784. - build system improvements
  785. - tabs and trailing whitespace removed from the codebase
  786. - CamStudio video decoder
  787. - AIFF/AIFF-C audio format, encoding and decoding
  788. - ADTS AAC file reading and writing
  789. - Creative VOC file reading and writing
  790. - American Laser Games multimedia (*.mm) playback system
  791. - Zip Motion Blocks Video decoder
  792. - improved Theora/VP3 decoder
  793. - True Audio (TTA) decoder
  794. - AVS demuxer and video decoder
  795. - JPEG-LS encoder
  796. - Smacker demuxer and decoder
  797. - NuppelVideo/MythTV demuxer and RTjpeg decoder
  798. - KMVC decoder
  799. - MPEG-2 intra VLC support
  800. - MPEG-2 4:2:2 encoder
  801. - Flash Screen Video decoder
  802. - GXF demuxer
  803. - Chinese AVS decoder
  804. - GXF muxer
  805. - MXF demuxer
  806. - VC-1/WMV3/WMV9 video decoder
  807. - MacIntel support
  808. - AviSynth support
  809. - VMware video decoder
  810. - VP5 video decoder
  811. - VP6 video decoder
  812. - WavPack lossless audio decoder
  813. - Targa (.TGA) picture decoder
  814. - Vorbis audio encoder
  815. - Delphine Software .cin demuxer/audio and video decoder
  816. - Tiertex .seq demuxer/video decoder
  817. - MTV demuxer
  818. - TIFF picture encoder and decoder
  819. - GIF picture decoder
  820. - Intel Music Coder decoder
  821. - Zip Motion Blocks Video encoder
  822. - Musepack decoder
  823. - Flash Screen Video encoder
  824. - Theora encoding via libtheora
  825. - BMP encoder
  826. - WMA encoder
  827. - GSM-MS encoder and decoder
  828. - DCA decoder
  829. - DXA demuxer and decoder
  830. - DNxHD decoder
  831. - Gamecube movie (.THP) playback system
  832. - Blackfin optimizations
  833. - Interplay C93 demuxer and video decoder
  834. - Bethsoft VID demuxer and video decoder
  835. - CRYO APC demuxer
  836. - ATRAC3 decoder
  837. - V.Flash PTX decoder
  838. - RoQ muxer, RoQ audio encoder
  839. - Renderware TXD demuxer and decoder
  840. - extern C declarations for C++ removed from headers
  841. - sws_flags command line option
  842. - codebook generator
  843. - RoQ video encoder
  844. - QTRLE encoder
  845. - OS/2 support removed and restored again
  846. - AC-3 decoder
  847. - NUT muxer
  848. - additional SPARC (VIS) optimizations
  849. - Matroska muxer
  850. - slice-based parallel H.264 decoding
  851. - Monkey's Audio demuxer and decoder
  852. - AMV audio and video decoder
  853. - DNxHD encoder
  854. - H.264 PAFF decoding
  855. - Nellymoser ASAO decoder
  856. - Beam Software SIFF demuxer and decoder
  857. - libvorbis Vorbis decoding removed in favor of native decoder
  858. - IntraX8 (J-Frame) subdecoder for WMV2 and VC-1
  859. - Ogg (Theora, Vorbis and FLAC) muxer
  860. - The "device" muxers and demuxers are now in a new libavdevice library
  861. - PC Paintbrush PCX decoder
  862. - Sun Rasterfile decoder
  863. - TechnoTrend PVA demuxer
  864. - Linux Media Labs MPEG-4 (LMLM4) demuxer
  865. - AVM2 (Flash 9) SWF muxer
  866. - QT variant of IMA ADPCM encoder
  867. - VFW grabber
  868. - iPod/iPhone compatible mp4 muxer
  869. - Mimic decoder
  870. - MSN TCP Webcam stream demuxer
  871. - RL2 demuxer / decoder
  872. - IFF demuxer
  873. - 8SVX audio decoder
  874. - non-recursive Makefiles
  875. - BFI demuxer
  876. - MAXIS EA XA (.xa) demuxer / decoder
  877. - BFI video decoder
  878. - OMA demuxer
  879. - MLP/TrueHD decoder
  880. - Electronic Arts CMV decoder
  881. - Motion Pixels Video decoder
  882. - Motion Pixels MVI demuxer
  883. - removed animated GIF decoder/demuxer
  884. - D-Cinema audio muxer
  885. - Electronic Arts TGV decoder
  886. - Apple Lossless Audio Codec (ALAC) encoder
  887. - AAC decoder
  888. - floating point PCM encoder/decoder
  889. - MXF muxer
  890. - DV100 AKA DVCPRO HD decoder and demuxer
  891. - E-AC-3 support added to AC-3 decoder
  892. - Nellymoser ASAO encoder
  893. - ASS and SSA demuxer and muxer
  894. - liba52 wrapper removed
  895. - SVQ3 watermark decoding support
  896. - Speex decoding via libspeex
  897. - Electronic Arts TGQ decoder
  898. - RV40 decoder
  899. - QCELP / PureVoice decoder
  900. - RV30 decoder
  901. - hybrid WavPack support
  902. - R3D REDCODE demuxer
  903. - ALSA support for playback and record
  904. - Electronic Arts TQI decoder
  905. - OpenJPEG based JPEG 2000 decoder
  906. - NC (NC4600) camera file demuxer
  907. - Gopher client support
  908. - MXF D-10 muxer
  909. - generic metadata API
  910. - flash ScreenVideo2 encoder
  911. version 0.4.9-pre1:
  912. - DV encoder, DV muxer
  913. - Microsoft RLE video decoder
  914. - Microsoft Video-1 decoder
  915. - Apple Animation (RLE) decoder
  916. - Apple Graphics (SMC) decoder
  917. - Apple Video (RPZA) decoder
  918. - Cinepak decoder
  919. - Sega FILM (CPK) file demuxer
  920. - Westwood multimedia support (VQA & AUD files)
  921. - Id Quake II CIN playback support
  922. - 8BPS video decoder
  923. - FLIC playback support
  924. - RealVideo 2.0 (RV20) decoder
  925. - Duck TrueMotion v1 (DUCK) video decoder
  926. - Sierra VMD demuxer and video decoder
  927. - MSZH and ZLIB decoder support
  928. - SVQ1 video encoder
  929. - AMR-WB support
  930. - PPC optimizations
  931. - rate distortion optimal cbp support
  932. - rate distorted optimal ac prediction for MPEG-4
  933. - rate distorted optimal lambda->qp support
  934. - AAC encoding with libfaac
  935. - Sunplus JPEG codec (SP5X) support
  936. - use Lagrange multipler instead of QP for ratecontrol
  937. - Theora/VP3 decoding support
  938. - XA and ADX ADPCM codecs
  939. - export MPEG-2 active display area / pan scan
  940. - Add support for configuring with IBM XLC
  941. - floating point AAN DCT
  942. - initial support for zygo video (not complete)
  943. - RGB ffv1 support
  944. - new audio/video parser API
  945. - av_log() system
  946. - av_read_frame() and av_seek_frame() support
  947. - missing last frame fixes
  948. - seek by mouse in ffplay
  949. - noise reduction of DCT coefficients
  950. - H.263 OBMC & 4MV support
  951. - H.263 alternative inter vlc support
  952. - H.263 loop filter
  953. - H.263 slice structured mode
  954. - interlaced DCT support for MPEG-2 encoding
  955. - stuffing to stay above min_bitrate
  956. - MB type & QP visualization
  957. - frame stepping for ffplay
  958. - interlaced motion estimation
  959. - alternate scantable support
  960. - SVCD scan offset support
  961. - closed GOP support
  962. - SSE2 FDCT
  963. - quantizer noise shaping
  964. - G.726 ADPCM audio codec
  965. - MS ADPCM encoding
  966. - multithreaded/SMP motion estimation
  967. - multithreaded/SMP encoding for MPEG-1/MPEG-2/MPEG-4/H.263
  968. - multithreaded/SMP decoding for MPEG-2
  969. - FLAC decoder
  970. - Metrowerks CodeWarrior suppport
  971. - H.263+ custom pcf support
  972. - nicer output for 'ffmpeg -formats'
  973. - Matroska demuxer
  974. - SGI image format, encoding and decoding
  975. - H.264 loop filter support
  976. - H.264 CABAC support
  977. - nicer looking arrows for the motion vector visualization
  978. - improved VCD support
  979. - audio timestamp drift compensation
  980. - MPEG-2 YUV 422/444 support
  981. - polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample
  982. - better image scaling
  983. - H.261 support
  984. - correctly interleave packets during encoding
  985. - VIS optimized motion compensation
  986. - intra_dc_precision>0 encoding support
  987. - support reuse of motion vectors/MB types/field select values of the source video
  988. - more accurate deblock filter
  989. - padding support
  990. - many optimizations and bugfixes
  991. - FunCom ISS audio file demuxer and according ADPCM decoding
  992. version 0.4.8:
  993. - MPEG-2 video encoding (Michael)
  994. - Id RoQ playback subsystem (Mike Melanson and Tim Ferguson)
  995. - Wing Commander III Movie (.mve) file playback subsystem (Mike Melanson
  996. and Mario Brito)
  997. - Xan DPCM audio decoder (Mario Brito)
  998. - Interplay MVE playback subsystem (Mike Melanson)
  999. - Duck DK3 and DK4 ADPCM audio decoders (Mike Melanson)
  1000. version 0.4.7:
  1001. - RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from mplayerhq
  1002. (originally from public domain player for Amiga at http://www.honeypot.net/audio)
  1003. - current version now also compiles with older GCC (Fabrice)
  1004. - 4X multimedia playback system including 4xm file demuxer (Mike
  1005. Melanson), and 4X video and audio codecs (Michael)
  1006. - Creative YUV (CYUV) decoder (Mike Melanson)
  1007. - FFV1 codec (our very simple lossless intra only codec, compresses much better
  1008. than HuffYUV) (Michael)
  1009. - ASV1 (Asus), H.264, Intel indeo3 codecs have been added (various)
  1010. - tiny PNG encoder and decoder, tiny GIF decoder, PAM decoder (PPM with
  1011. alpha support), JPEG YUV colorspace support. (Fabrice Bellard)
  1012. - ffplay has been replaced with a newer version which uses SDL (optionally)
  1013. for multiplatform support (Fabrice)
  1014. - Sorenson Version 3 codec (SVQ3) support has been added (decoding only) - donated
  1015. by anonymous
  1016. - AMR format has been added (Johannes Carlsson)
  1017. - 3GP support has been added (Johannes Carlsson)
  1018. - VP3 codec has been added (Mike Melanson)
  1019. - more MPEG-1/2 fixes
  1020. - better multiplatform support, MS Visual Studio fixes (various)
  1021. - AltiVec optimizations (Magnus Damn and others)
  1022. - SH4 processor support has been added (BERO)
  1023. - new public interfaces (avcodec_get_pix_fmt) (Roman Shaposhnick)
  1024. - VOB streaming support (Brian Foley)
  1025. - better MP3 autodetection (Andriy Rysin)
  1026. - qpel encoding (Michael)
  1027. - 4mv+b frames encoding finally fixed (Michael)
  1028. - chroma ME (Michael)
  1029. - 5 comparison functions for ME (Michael)
  1030. - B-frame encoding speedup (Michael)
  1031. - WMV2 codec (unfinished - Michael)
  1032. - user specified diamond size for EPZS (Michael)
  1033. - Playstation STR playback subsystem, still experimental (Mike and Michael)
  1034. - ASV2 codec (Michael)
  1035. - CLJR decoder (Alex)
  1036. .. And lots more new enhancements and fixes.
  1037. version 0.4.6:
  1038. - completely new integer only MPEG audio layer 1/2/3 decoder rewritten
  1039. from scratch
  1040. - Recoded DCT and motion vector search with gcc (no longer depends on nasm)
  1041. - fix quantization bug in AC3 encoder
  1042. - added PCM codecs and format. Corrected WAV/AVI/ASF PCM issues
  1043. - added prototype ffplay program
  1044. - added GOB header parsing on H.263/H.263+ decoder (Juanjo)
  1045. - bug fix on MCBPC tables of H.263 (Juanjo)
  1046. - bug fix on DC coefficients of H.263 (Juanjo)
  1047. - added Advanced Prediction Mode on H.263/H.263+ decoder (Juanjo)
  1048. - now we can decode H.263 streams found in QuickTime files (Juanjo)
  1049. - now we can decode H.263 streams found in VIVO v1 files(Juanjo)
  1050. - preliminary RTP "friendly" mode for H.263/H.263+ coding. (Juanjo)
  1051. - added GOB header for H.263/H.263+ coding on RTP mode (Juanjo)
  1052. - now H.263 picture size is returned on the first decoded frame (Juanjo)
  1053. - added first regression tests
  1054. - added MPEG-2 TS demuxer
  1055. - new demux API for libav
  1056. - more accurate and faster IDCT (Michael)
  1057. - faster and entropy-controlled motion search (Michael)
  1058. - two pass video encoding (Michael)
  1059. - new video rate control (Michael)
  1060. - added MSMPEG4V1, MSMPEGV2 and WMV1 support (Michael)
  1061. - great performance improvement of video encoders and decoders (Michael)
  1062. - new and faster bit readers and vlc parsers (Michael)
  1063. - high quality encoding mode: tries all macroblock/VLC types (Michael)
  1064. - added DV video decoder
  1065. - preliminary RTP/RTSP support in ffserver and libavformat
  1066. - H.263+ AIC decoding/encoding support (Juanjo)
  1067. - VCD MPEG-PS mode (Juanjo)
  1068. - PSNR stuff (Juanjo)
  1069. - simple stats output (Juanjo)
  1070. - 16-bit and 15-bit RGB/BGR/GBR support (Bisqwit)
  1071. version 0.4.5:
  1072. - some header fixes (Zdenek Kabelac <kabi at informatics.muni.cz>)
  1073. - many MMX optimizations (Nick Kurshev <nickols_k at mail.ru>)
  1074. - added configure system (actually a small shell script)
  1075. - added MPEG audio layer 1/2/3 decoding using LGPL'ed mpglib by
  1076. Michael Hipp (temporary solution - waiting for integer only
  1077. decoder)
  1078. - fixed VIDIOCSYNC interrupt
  1079. - added Intel H.263 decoding support ('I263' AVI fourCC)
  1080. - added Real Video 1.0 decoding (needs further testing)
  1081. - simplified image formats again. Added PGM format (=grey
  1082. pgm). Renamed old PGM to PGMYUV.
  1083. - fixed msmpeg4 slice issues (tell me if you still find problems)
  1084. - fixed OpenDivX bugs with newer versions (added VOL header decoding)
  1085. - added support for MPlayer interface
  1086. - added macroblock skip optimization
  1087. - added MJPEG decoder
  1088. - added mmx/mmxext IDCT from libmpeg2
  1089. - added pgmyuvpipe, ppm, and ppm_pipe formats (original patch by Celer
  1090. <celer at shell.scrypt.net>)
  1091. - added pixel format conversion layer (e.g. for MJPEG or PPM)
  1092. - added deinterlacing option
  1093. - MPEG-1/2 fixes
  1094. - MPEG-4 vol header fixes (Jonathan Marsden <snmjbm at pacbell.net>)
  1095. - ARM optimizations (Lionel Ulmer <lionel.ulmer at free.fr>).
  1096. - Windows porting of file converter
  1097. - added MJPEG raw format (input/output)
  1098. - added JPEG image format support (input/output)
  1099. version 0.4.4:
  1100. - fixed some std header definitions (Bjorn Lindgren
  1101. <bjorn.e.lindgren at telia.com>).
  1102. - added MPEG demuxer (MPEG-1 and 2 compatible).
  1103. - added ASF demuxer
  1104. - added prototype RM demuxer
  1105. - added AC3 decoding (done with libac3 by Aaron Holtzman)
  1106. - added decoding codec parameter guessing (.e.g. for MPEG, because the
  1107. header does not include them)
  1108. - fixed header generation in MPEG-1, AVI and ASF muxer: wmplayer can now
  1109. play them (only tested video)
  1110. - fixed H.263 white bug
  1111. - fixed phase rounding in img resample filter
  1112. - add MMX code for polyphase img resample filter
  1113. - added CPU autodetection
  1114. - added generic title/author/copyright/comment string handling (ASF and RM
  1115. use them)
  1116. - added SWF demux to extract MP3 track (not usable yet because no MP3
  1117. decoder)
  1118. - added fractional frame rate support
  1119. - codecs are no longer searched by read_header() (should fix ffserver
  1120. segfault)
  1121. version 0.4.3:
  1122. - BGR24 patch (initial patch by Jeroen Vreeken <pe1rxq at amsat.org>)
  1123. - fixed raw yuv output
  1124. - added motion rounding support in MPEG-4
  1125. - fixed motion bug rounding in MSMPEG4
  1126. - added B-frame handling in video core
  1127. - added full MPEG-1 decoding support
  1128. - added partial (frame only) MPEG-2 support
  1129. - changed the FOURCC code for H.263 to "U263" to be able to see the
  1130. +AVI/H.263 file with the UB Video H.263+ decoder. MPlayer works with
  1131. this +codec ;) (JuanJo).
  1132. - Halfpel motion estimation after MB type selection (JuanJo)
  1133. - added pgm and .Y.U.V output format
  1134. - suppressed 'img:' protocol. Simply use: /tmp/test%d.[pgm|Y] as input or
  1135. output.
  1136. - added pgmpipe I/O format (original patch from Martin Aumueller
  1137. <lists at reserv.at>, but changed completely since we use a format
  1138. instead of a protocol)
  1139. version 0.4.2:
  1140. - added H.263/MPEG-4/MSMPEG4 decoding support. MPEG-4 decoding support
  1141. (for OpenDivX) is almost complete: 8x8 MVs and rounding are
  1142. missing. MSMPEG4 support is complete.
  1143. - added prototype MPEG-1 decoder. Only I- and P-frames handled yet (it
  1144. can decode ffmpeg MPEGs :-)).
  1145. - added libavcodec API documentation (see apiexample.c).
  1146. - fixed image polyphase bug (the bottom of some images could be
  1147. greenish)
  1148. - added support for non clipped motion vectors (decoding only)
  1149. and image sizes non-multiple of 16
  1150. - added support for AC prediction (decoding only)
  1151. - added file overwrite confirmation (can be disabled with -y)
  1152. - added custom size picture to H.263 using H.263+ (Juanjo)
  1153. version 0.4.1:
  1154. - added MSMPEG4 (aka DivX) compatible encoder. Changed default codec
  1155. of AVI and ASF to DIV3.
  1156. - added -me option to set motion estimation method
  1157. (default=log). suppressed redundant -hq option.
  1158. - added options -acodec and -vcodec to force a given codec (useful for
  1159. AVI for example)
  1160. - fixed -an option
  1161. - improved dct_quantize speed
  1162. - factorized some motion estimation code
  1163. version 0.4.0:
  1164. - removing grab code from ffserver and moved it to ffmpeg. Added
  1165. multistream support to ffmpeg.
  1166. - added timeshifting support for live feeds (option ?date=xxx in the
  1167. URL)
  1168. - added high quality image resize code with polyphase filter (need
  1169. mmx/see optimization). Enable multiple image size support in ffserver.
  1170. - added multi live feed support in ffserver
  1171. - suppressed master feature from ffserver (it should be done with an
  1172. external program which opens the .ffm url and writes it to another
  1173. ffserver)
  1174. - added preliminary support for video stream parsing (WAV and AVI half
  1175. done). Added proper support for audio/video file conversion in
  1176. ffmpeg.
  1177. - added preliminary support for video file sending from ffserver
  1178. - redesigning I/O subsystem: now using URL based input and output
  1179. (see avio.h)
  1180. - added WAV format support
  1181. - added "tty user interface" to ffmpeg to stop grabbing gracefully
  1182. - added MMX/SSE optimizations to SAD (Sums of Absolutes Differences)
  1183. (Juan J. Sierralta P. a.k.a. "Juanjo" <juanjo at atmlab.utfsm.cl>)
  1184. - added MMX DCT from mpeg2_movie 1.5 (Juanjo)
  1185. - added new motion estimation algorithms, log and phods (Juanjo)
  1186. - changed directories: libav for format handling, libavcodec for
  1187. codecs
  1188. version 0.3.4:
  1189. - added stereo in MPEG audio encoder
  1190. version 0.3.3:
  1191. - added 'high quality' mode which use motion vectors. It can be used in
  1192. real time at low resolution.
  1193. - fixed rounding problems which caused quality problems at high
  1194. bitrates and large GOP size
  1195. version 0.3.2: small fixes
  1196. - ASF fixes
  1197. - put_seek bug fix
  1198. version 0.3.1: added avi/divx support
  1199. - added AVI support
  1200. - added MPEG-4 codec compatible with OpenDivX. It is based on the H.263 codec
  1201. - added sound for flash format (not tested)
  1202. version 0.3: initial public release