Changelog 72 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187
  1. Entries are sorted chronologically from oldest to youngest within each release,
  2. releases are sorted from youngest to oldest.
  3. version <next>:
  4. version 7.1:
  5. - Raw Captions with Time (RCWT) closed caption demuxer
  6. - LC3/LC3plus decoding/encoding using external library liblc3
  7. - ffmpeg CLI filtergraph chaining
  8. - LC3/LC3plus demuxer and muxer
  9. - pad_vaapi, drawbox_vaapi filters
  10. - vf_scale supports secondary ref input and framesync options
  11. - vf_scale2ref deprecated
  12. - qsv_params option added for QSV encoders
  13. - VVC decoder compatible with DVB test content
  14. - xHE-AAC decoder
  15. - removed DEC Alpha DSP and support code
  16. - VVC encoding support via libvvenc
  17. - perlin video source
  18. - D3D12VA HEVC encoder
  19. - Cropping metadata parsing and writing in Matroska and MP4/MOV de/muxers
  20. - Intel QSV-accelerated VVC decoding
  21. - MediaCodec AAC/AMR-NB/AMR-WB/MP3 decoding
  22. - YUV colorspace negotiation for codecs and filters, obsoleting the
  23. YUVJ pixel format
  24. - Vulkan H.264 encoder
  25. - Vulkan H.265 encoder
  26. - stream specifiers in fftools can now match by stream disposition
  27. - LCEVC enhancement data exporting in H.26x and MP4/ISOBMFF
  28. - LCEVC filter
  29. - MV-HEVC decoding
  30. version 7.0:
  31. - DXV DXT1 encoder
  32. - LEAD MCMP decoder
  33. - EVC decoding using external library libxevd
  34. - EVC encoding using external library libxeve
  35. - QOA decoder and demuxer
  36. - aap filter
  37. - demuxing, decoding, filtering, encoding, and muxing in the
  38. ffmpeg CLI now all run in parallel
  39. - enable gdigrab device to grab a window using the hwnd=HANDLER syntax
  40. - IAMF raw demuxer and muxer
  41. - D3D12VA hardware accelerated H264, HEVC, VP9, AV1, MPEG-2 and VC1 decoding
  42. - tiltandshift filter
  43. - qrencode filter and qrencodesrc source
  44. - quirc filter
  45. - lavu/eval: introduce randomi() function in expressions
  46. - VVC decoder (experimental)
  47. - fsync filter
  48. - Raw Captions with Time (RCWT) closed caption muxer
  49. - ffmpeg CLI -bsf option may now be used for input as well as output
  50. - ffmpeg CLI options may now be used as -/opt <path>, which is equivalent
  51. to -opt <contents of file <path>>
  52. - showinfo bitstream filter
  53. - a C11-compliant compiler is now required; note that this requirement
  54. will be bumped to C17 in the near future, so consider updating your
  55. build environment if it lacks C17 support
  56. - Change the default bitrate control method from VBR to CQP for QSV encoders.
  57. - removed deprecated ffmpeg CLI options -psnr and -map_channel
  58. - DVD-Video demuxer, powered by libdvdnav and libdvdread
  59. - ffprobe -show_stream_groups option
  60. - ffprobe (with -export_side_data film_grain) now prints film grain metadata
  61. - AEA muxer
  62. - ffmpeg CLI loopback decoders
  63. - Support PacketTypeMetadata of PacketType in enhanced flv format
  64. - ffplay with hwaccel decoding support (depends on vulkan renderer via libplacebo)
  65. - dnn filter libtorch backend
  66. - Android content URIs protocol
  67. - AOMedia Film Grain Synthesis 1 (AFGS1)
  68. - RISC-V optimizations for AAC, FLAC, JPEG-2000, LPC, RV4.0, SVQ, VC1, VP8, and more
  69. - Loongarch optimizations for HEVC decoding
  70. - Important AArch64 optimizations for HEVC
  71. - IAMF support inside MP4/ISOBMFF
  72. - Support for HEIF/AVIF still images and tiled still images
  73. - Dolby Vision profile 10 support in AV1
  74. - Support for Ambient Viewing Environment metadata in MP4/ISOBMFF
  75. - HDR10 metadata passthrough when encoding with libx264, libx265, and libsvtav1
  76. version 6.1:
  77. - libaribcaption decoder
  78. - Playdate video decoder and demuxer
  79. - Extend VAAPI support for libva-win32 on Windows
  80. - afireqsrc audio source filter
  81. - arls filter
  82. - ffmpeg CLI new option: -readrate_initial_burst
  83. - zoneplate video source filter
  84. - command support in the setpts and asetpts filters
  85. - Vulkan decode hwaccel, supporting H264, HEVC and AV1
  86. - color_vulkan filter
  87. - bwdif_vulkan filter
  88. - nlmeans_vulkan filter
  89. - RivaTuner video decoder
  90. - xfade_vulkan filter
  91. - vMix video decoder
  92. - Essential Video Coding parser, muxer and demuxer
  93. - Essential Video Coding frame merge bsf
  94. - bwdif_cuda filter
  95. - Microsoft RLE video encoder
  96. - Raw AC-4 muxer and demuxer
  97. - Raw VVC bitstream parser, muxer and demuxer
  98. - Bitstream filter for editing metadata in VVC streams
  99. - Bitstream filter for converting VVC from MP4 to Annex B
  100. - scale_vt filter for videotoolbox
  101. - transpose_vt filter for videotoolbox
  102. - support for the P_SKIP hinting to speed up libx264 encoding
  103. - Support HEVC,VP9,AV1 codec in enhanced flv format
  104. - apsnr and asisdr audio filters
  105. - OSQ demuxer and decoder
  106. - Support HEVC,VP9,AV1 codec fourcclist in enhanced rtmp protocol
  107. - CRI USM demuxer
  108. - ffmpeg CLI '-top' option deprecated in favor of the setfield filter
  109. - VAAPI AV1 encoder
  110. - ffprobe XML output schema changed to account for multiple
  111. variable-fields elements within the same parent element
  112. - ffprobe -output_format option added as an alias of -of
  113. version 6.0:
  114. - Radiance HDR image support
  115. - ddagrab (Desktop Duplication) video capture filter
  116. - ffmpeg -shortest_buf_duration option
  117. - ffmpeg now requires threading to be built
  118. - ffmpeg now runs every muxer in a separate thread
  119. - Add new mode to cropdetect filter to detect crop-area based on motion vectors and edges
  120. - VAAPI decoding and encoding for 10/12bit 422, 10/12bit 444 HEVC and VP9
  121. - WBMP (Wireless Application Protocol Bitmap) image format
  122. - a3dscope filter
  123. - bonk decoder and demuxer
  124. - Micronas SC-4 audio decoder
  125. - LAF demuxer
  126. - APAC decoder and demuxer
  127. - Media 100i decoders
  128. - DTS to PTS reorder bsf
  129. - ViewQuest VQC decoder
  130. - backgroundkey filter
  131. - nvenc AV1 encoding support
  132. - MediaCodec decoder via NDKMediaCodec
  133. - MediaCodec encoder
  134. - oneVPL support for QSV
  135. - QSV AV1 encoder
  136. - QSV decoding and encoding for 10/12bit 422, 10/12bit 444 HEVC and VP9
  137. - showcwt multimedia filter
  138. - corr video filter
  139. - adrc audio filter
  140. - afdelaysrc audio filter
  141. - WADY DPCM decoder and demuxer
  142. - CBD2 DPCM decoder
  143. - ssim360 video filter
  144. - ffmpeg CLI new options: -stats_enc_pre[_fmt], -stats_enc_post[_fmt],
  145. -stats_mux_pre[_fmt]
  146. - hstack_vaapi, vstack_vaapi and xstack_vaapi filters
  147. - XMD ADPCM decoder and demuxer
  148. - media100 to mjpegb bsf
  149. - ffmpeg CLI new option: -fix_sub_duration_heartbeat
  150. - WavArc decoder and demuxer
  151. - CrystalHD decoders deprecated
  152. - SDNS demuxer
  153. - RKA decoder and demuxer
  154. - filtergraph syntax in ffmpeg CLI now supports passing file contents
  155. as option values, by prefixing option name with '/'
  156. - hstack_qsv, vstack_qsv and xstack_qsv filters
  157. version 5.1:
  158. - add ipfs/ipns gateway support
  159. - dialogue enhance audio filter
  160. - dropped obsolete XvMC hwaccel
  161. - pcm-bluray encoder
  162. - DFPWM audio encoder/decoder and raw muxer/demuxer
  163. - SITI filter
  164. - Vizrt Binary Image encoder/decoder
  165. - avsynctest source filter
  166. - feedback video filter
  167. - pixelize video filter
  168. - colormap video filter
  169. - colorchart video source filter
  170. - multiply video filter
  171. - PGS subtitle frame merge bitstream filter
  172. - blurdetect filter
  173. - tiltshelf audio filter
  174. - QOI image format support
  175. - ffprobe -o option
  176. - virtualbass audio filter
  177. - VDPAU AV1 hwaccel
  178. - PHM image format support
  179. - remap_opencl filter
  180. - added chromakey_cuda filter
  181. - added bilateral_cuda filter
  182. version 5.0:
  183. - ADPCM IMA Westwood encoder
  184. - Westwood AUD muxer
  185. - ADPCM IMA Acorn Replay decoder
  186. - Argonaut Games CVG demuxer
  187. - Argonaut Games CVG muxer
  188. - Concatf protocol
  189. - afwtdn audio filter
  190. - audio and video segment filters
  191. - Apple Graphics (SMC) encoder
  192. - hsvkey and hsvhold video filters
  193. - adecorrelate audio filter
  194. - atilt audio filter
  195. - grayworld video filter
  196. - AV1 Low overhead bitstream format muxer
  197. - swscale slice threading
  198. - MSN Siren decoder
  199. - scharr video filter
  200. - apsyclip audio filter
  201. - morpho video filter
  202. - amr parser
  203. - (a)latency filters
  204. - GEM Raster image decoder
  205. - asdr audio filter
  206. - speex decoder
  207. - limitdiff video filter
  208. - xcorrelate video filter
  209. - varblur video filter
  210. - huesaturation video filter
  211. - colorspectrum source video filter
  212. - RTP packetizer for uncompressed video (RFC 4175)
  213. - bitpacked encoder
  214. - VideoToolbox VP9 hwaccel
  215. - VideoToolbox ProRes hwaccel
  216. - support loongarch.
  217. - aspectralstats audio filter
  218. - adynamicsmooth audio filter
  219. - libplacebo filter
  220. - vflip_vulkan, hflip_vulkan and flip_vulkan filters
  221. - adynamicequalizer audio filter
  222. - yadif_videotoolbox filter
  223. - VideoToolbox ProRes encoder
  224. - anlmf audio filter
  225. - IMF demuxer (experimental)
  226. version 4.4:
  227. - AudioToolbox output device
  228. - MacCaption demuxer
  229. - PGX decoder
  230. - chromanr video filter
  231. - VDPAU accelerated HEVC 10/12bit decoding
  232. - ADPCM IMA Ubisoft APM encoder
  233. - Rayman 2 APM muxer
  234. - AV1 encoding support SVT-AV1
  235. - Cineform HD encoder
  236. - ADPCM Argonaut Games encoder
  237. - Argonaut Games ASF muxer
  238. - AV1 Low overhead bitstream format demuxer
  239. - RPZA video encoder
  240. - ADPCM IMA MOFLEX decoder
  241. - MobiClip FastAudio decoder
  242. - MobiClip video decoder
  243. - MOFLEX demuxer
  244. - MODS demuxer
  245. - PhotoCD decoder
  246. - MCA demuxer
  247. - AV1 decoder (Hardware acceleration used only)
  248. - SVS demuxer
  249. - Argonaut Games BRP demuxer
  250. - DAT demuxer
  251. - aax demuxer
  252. - IPU decoder, parser and demuxer
  253. - Intel QSV-accelerated AV1 decoding
  254. - Argonaut Games Video decoder
  255. - libwavpack encoder removed
  256. - ACE demuxer
  257. - AVS3 demuxer
  258. - AVS3 video decoder via libuavs3d
  259. - Cintel RAW decoder
  260. - VDPAU accelerated VP9 10/12bit decoding
  261. - afreqshift and aphaseshift filters
  262. - High Voltage Software ADPCM encoder
  263. - LEGO Racers ALP (.tun & .pcm) muxer
  264. - AV1 VAAPI decoder
  265. - adenorm filter
  266. - ADPCM IMA AMV encoder
  267. - AMV muxer
  268. - NVDEC AV1 hwaccel
  269. - DXVA2/D3D11VA hardware accelerated AV1 decoding
  270. - speechnorm filter
  271. - SpeedHQ encoder
  272. - asupercut filter
  273. - asubcut filter
  274. - Microsoft Paint (MSP) version 2 decoder
  275. - Microsoft Paint (MSP) demuxer
  276. - AV1 monochrome encoding support via libaom >= 2.0.1
  277. - asuperpass and asuperstop filter
  278. - shufflepixels filter
  279. - tmidequalizer filter
  280. - estdif filter
  281. - epx filter
  282. - Dolby E parser
  283. - shear filter
  284. - kirsch filter
  285. - colortemperature filter
  286. - colorcontrast filter
  287. - PFM encoder
  288. - colorcorrect filter
  289. - binka demuxer
  290. - XBM parser
  291. - xbm_pipe demuxer
  292. - colorize filter
  293. - CRI parser
  294. - aexciter audio filter
  295. - exposure video filter
  296. - monochrome video filter
  297. - setts bitstream filter
  298. - vif video filter
  299. - OpenEXR image encoder
  300. - Simbiosis IMX decoder
  301. - Simbiosis IMX demuxer
  302. - Digital Pictures SGA demuxer and decoders
  303. - TTML subtitle encoder and muxer
  304. - identity video filter
  305. - msad video filter
  306. - gophers protocol
  307. - RIST protocol via librist
  308. version 4.3:
  309. - v360 filter
  310. - Intel QSV-accelerated MJPEG decoding
  311. - Intel QSV-accelerated VP9 decoding
  312. - Support for TrueHD in mp4
  313. - Support AMD AMF encoder on Linux (via Vulkan)
  314. - IMM5 video decoder
  315. - ZeroMQ protocol
  316. - support Sipro ACELP.KELVIN decoding
  317. - streamhash muxer
  318. - sierpinski video source
  319. - scroll video filter
  320. - photosensitivity filter
  321. - anlms filter
  322. - arnndn filter
  323. - bilateral filter
  324. - maskedmin and maskedmax filters
  325. - VDPAU VP9 hwaccel
  326. - median filter
  327. - QSV-accelerated VP9 encoding
  328. - AV1 encoding support via librav1e
  329. - AV1 frame merge bitstream filter
  330. - AV1 Annex B demuxer
  331. - axcorrelate filter
  332. - mvdv decoder
  333. - mvha decoder
  334. - MPEG-H 3D Audio support in mp4
  335. - thistogram filter
  336. - freezeframes filter
  337. - Argonaut Games ADPCM decoder
  338. - Argonaut Games ASF demuxer
  339. - xfade video filter
  340. - xfade_opencl filter
  341. - afirsrc audio filter source
  342. - pad_opencl filter
  343. - Simon & Schuster Interactive ADPCM decoder
  344. - Real War KVAG demuxer
  345. - CDToons video decoder
  346. - siren audio decoder
  347. - Rayman 2 ADPCM decoder
  348. - Rayman 2 APM demuxer
  349. - cas video filter
  350. - High Voltage Software ADPCM decoder
  351. - LEGO Racers ALP (.tun & .pcm) demuxer
  352. - AMQP 0-9-1 protocol (RabbitMQ)
  353. - Vulkan support
  354. - avgblur_vulkan, overlay_vulkan, scale_vulkan and chromaber_vulkan filters
  355. - ADPCM IMA MTF decoder
  356. - FWSE demuxer
  357. - DERF DPCM decoder
  358. - DERF demuxer
  359. - CRI HCA decoder
  360. - CRI HCA demuxer
  361. - overlay_cuda filter
  362. - switch from AvxSynth to AviSynth+ on Linux
  363. - mv30 decoder
  364. - Expanded styling support for 3GPP Timed Text Subtitles (movtext)
  365. - WebP parser
  366. - tmedian filter
  367. - maskedthreshold filter
  368. - Support for muxing pcm and pgs in m2ts
  369. - Cunning Developments ADPCM decoder
  370. - asubboost filter
  371. - Pro Pinball Series Soundbank demuxer
  372. - pcm_rechunk bitstream filter
  373. - scdet filter
  374. - NotchLC decoder
  375. - gradients source video filter
  376. - MediaFoundation encoder wrapper
  377. - untile filter
  378. - Simon & Schuster Interactive ADPCM encoder
  379. - PFM decoder
  380. - dblur video filter
  381. - Real War KVAG muxer
  382. version 4.2:
  383. - tpad filter
  384. - AV1 decoding support through libdav1d
  385. - dedot filter
  386. - chromashift and rgbashift filters
  387. - freezedetect filter
  388. - truehd_core bitstream filter
  389. - dhav demuxer
  390. - PCM-DVD encoder
  391. - GIF parser
  392. - vividas demuxer
  393. - hymt decoder
  394. - anlmdn filter
  395. - maskfun filter
  396. - hcom demuxer and decoder
  397. - ARBC decoder
  398. - libaribb24 based ARIB STD-B24 caption support (profiles A and C)
  399. - Support decoding of HEVC 4:4:4 content in nvdec and cuviddec
  400. - removed libndi-newtek
  401. - agm decoder
  402. - KUX demuxer
  403. - AV1 frame split bitstream filter
  404. - lscr decoder
  405. - lagfun filter
  406. - asoftclip filter
  407. - Support decoding of HEVC 4:4:4 content in vdpau
  408. - colorhold filter
  409. - xmedian filter
  410. - asr filter
  411. - showspatial multimedia filter
  412. - VP4 video decoder
  413. - IFV demuxer
  414. - derain filter
  415. - deesser filter
  416. - mov muxer writes tracks with unspecified language instead of English by default
  417. - add support for using clang to compile CUDA kernels
  418. version 4.1:
  419. - deblock filter
  420. - tmix filter
  421. - amplify filter
  422. - fftdnoiz filter
  423. - aderivative and aintegral audio filters
  424. - pal75bars and pal100bars video filter sources
  425. - support mbedTLS based TLS
  426. - adeclick filter
  427. - adeclip filter
  428. - libtensorflow backend for DNN based filters like srcnn
  429. - vc1 decoder is now bit-exact
  430. - ATRAC9 decoder
  431. - lensfun wrapper filter
  432. - colorconstancy filter
  433. - AVS2 video decoder via libdavs2
  434. - IMM4 video decoder
  435. - Brooktree ProSumer video decoder
  436. - MatchWare Screen Capture Codec decoder
  437. - WinCam Motion Video decoder
  438. - 1D LUT filter (lut1d)
  439. - RemotelyAnywhere Screen Capture decoder
  440. - cue and acue filters
  441. - support for AV1 in MP4
  442. - transpose_npp filter
  443. - AVS2 video encoder via libxavs2
  444. - amultiply filter
  445. - Block-Matching 3d (bm3d) denoising filter
  446. - acrossover filter
  447. - ilbc decoder
  448. - audio denoiser as afftdn filter
  449. - AV1 parser
  450. - SER demuxer
  451. - sinc audio filter source
  452. - chromahold filter
  453. - setparams filter
  454. - vibrance filter
  455. - decoding S12M timecode in h264
  456. - xstack filter
  457. - pcm vidc decoder and encoder
  458. - (a)graphmonitor filter
  459. - yadif_cuda filter
  460. version 4.0:
  461. - Bitstream filters for editing metadata in H.264, HEVC and MPEG-2 streams
  462. - Dropped support for OpenJPEG versions 2.0 and below. Using OpenJPEG now
  463. requires 2.1 (or later) and pkg-config.
  464. - VDA dropped (use VideoToolbox instead)
  465. - MagicYUV encoder
  466. - Raw AMR-NB and AMR-WB demuxers
  467. - TiVo ty/ty+ demuxer
  468. - Intel QSV-accelerated MJPEG encoding
  469. - PCE support for extended channel layouts in the AAC encoder
  470. - native aptX and aptX HD encoder and decoder
  471. - Raw aptX and aptX HD muxer and demuxer
  472. - NVIDIA NVDEC-accelerated H.264, HEVC, MJPEG, MPEG-1/2/4, VC1, VP8/9 hwaccel decoding
  473. - Intel QSV-accelerated overlay filter
  474. - mcompand audio filter
  475. - acontrast audio filter
  476. - OpenCL overlay filter
  477. - video mix filter
  478. - video normalize filter
  479. - audio lv2 wrapper filter
  480. - VAAPI MJPEG and VP8 decoding
  481. - AMD AMF H.264 and HEVC encoders
  482. - video fillborders filter
  483. - video setrange filter
  484. - nsp demuxer
  485. - support LibreSSL (via libtls)
  486. - AVX-512/ZMM support added
  487. - Dropped support for building for Windows XP. The minimum supported Windows
  488. version is Windows Vista.
  489. - deconvolve video filter
  490. - entropy video filter
  491. - hilbert audio filter source
  492. - aiir audio filter
  493. - aiff: add support for CD-ROM XA ADPCM
  494. - Removed the ffserver program
  495. - Removed the ffmenc and ffmdec muxer and demuxer
  496. - VideoToolbox HEVC encoder and hwaccel
  497. - VAAPI-accelerated ProcAmp (color balance), denoise and sharpness filters
  498. - Add android_camera indev
  499. - codec2 en/decoding via libcodec2
  500. - muxer/demuxer for raw codec2 files and .c2 files
  501. - Moved nvidia codec headers into an external repository.
  502. They can be found at http://git.videolan.org/?p=ffmpeg/nv-codec-headers.git
  503. - native SBC encoder and decoder
  504. - drmeter audio filter
  505. - hapqa_extract bitstream filter
  506. - filter_units bitstream filter
  507. - AV1 Support through libaom
  508. - E-AC-3 dependent frames support
  509. - bitstream filter for extracting E-AC-3 core
  510. - Haivision SRT protocol via libsrt
  511. - segafilm muxer
  512. - vfrdet filter
  513. - SRCNN filter
  514. version 3.4:
  515. - deflicker video filter
  516. - doubleweave video filter
  517. - lumakey video filter
  518. - pixscope video filter
  519. - oscilloscope video filter
  520. - config.log and other configuration files moved into ffbuild/ directory
  521. - update cuvid/nvenc headers to Video Codec SDK 8.0.14
  522. - afir audio filter
  523. - scale_cuda CUDA based video scale filter
  524. - librsvg support for svg rasterization
  525. - crossfeed audio filter
  526. - spec compliant VP9 muxing support in MP4
  527. - remove the libnut muxer/demuxer wrappers
  528. - remove the libschroedinger encoder/decoder wrappers
  529. - surround audio filter
  530. - sofalizer filter switched to libmysofa
  531. - Gremlin Digital Video demuxer and decoder
  532. - headphone audio filter
  533. - superequalizer audio filter
  534. - roberts video filter
  535. - The x86 assembler default switched from yasm to nasm, pass
  536. --x86asmexe=yasm to configure to restore the old behavior.
  537. - additional frame format support for Interplay MVE movies
  538. - support for decoding through D3D11VA in ffmpeg
  539. - limiter video filter
  540. - libvmaf video filter
  541. - Dolby E decoder and SMPTE 337M demuxer
  542. - unpremultiply video filter
  543. - tlut2 video filter
  544. - floodfill video filter
  545. - pseudocolor video filter
  546. - raw G.726 muxer and demuxer, left- and right-justified
  547. - NewTek NDI input/output device
  548. - Some video filters with several inputs now use a common set of options:
  549. blend, libvmaf, lut3d, overlay, psnr, ssim.
  550. They must always be used by name.
  551. - FITS demuxer and decoder
  552. - FITS muxer and encoder
  553. - add --disable-autodetect build switch
  554. - drop deprecated qtkit input device (use avfoundation instead)
  555. - despill video filter
  556. - haas audio filter
  557. - SUP/PGS subtitle muxer
  558. - convolve video filter
  559. - VP9 tile threading support
  560. - KMS screen grabber
  561. - CUDA thumbnail filter
  562. - V4L2 mem2mem HW assisted codecs
  563. - Rockchip MPP hardware decoding
  564. - vmafmotion video filter
  565. - use MIME type "G726" for little-endian G.726, "AAL2-G726" for big-endian G.726
  566. version 3.3:
  567. - CrystalHD decoder moved to new decode API
  568. - add internal ebur128 library, remove external libebur128 dependency
  569. - Pro-MPEG CoP #3-R2 FEC protocol
  570. - premultiply video filter
  571. - Support for spherical videos
  572. - configure now fails if autodetect-libraries are requested but not found
  573. - PSD Decoder
  574. - 16.8 floating point pcm decoder
  575. - 24.0 floating point pcm decoder
  576. - Apple Pixlet decoder
  577. - QDMC audio decoder
  578. - NewTek SpeedHQ decoder
  579. - MIDI Sample Dump Standard demuxer
  580. - readeia608 filter
  581. - Sample Dump eXchange demuxer
  582. - abitscope multimedia filter
  583. - Scenarist Closed Captions demuxer and muxer
  584. - threshold filter
  585. - midequalizer filter
  586. - Optimal Huffman tables for (M)JPEG encoding
  587. - VAAPI-accelerated MPEG-2 and VP8 encoding
  588. - FM Screen Capture Codec decoder
  589. - native Opus encoder
  590. - ScreenPressor decoder
  591. - incomplete ClearVideo decoder
  592. - Intel QSV video scaling and deinterlacing filters
  593. - Support MOV with multiple sample description tables
  594. - XPM decoder
  595. - Removed the legacy X11 screen grabber, use XCB instead
  596. - MPEG-7 Video Signature filter
  597. - Removed asyncts filter (use af_aresample instead)
  598. - Intel QSV-accelerated VP8 video decoding
  599. - VAAPI-accelerated deinterlacing
  600. version 3.2:
  601. - libopenmpt demuxer
  602. - tee protocol
  603. - Changed metadata print option to accept general urls
  604. - Alias muxer for Ogg Video (.ogv)
  605. - VP8 in Ogg muxing
  606. - curves filter doesn't automatically insert points at x=0 and x=1 anymore
  607. - 16-bit support in curves filter and selectivecolor filter
  608. - OpenH264 decoder wrapper
  609. - MediaCodec H.264/HEVC/MPEG-4/VP8/VP9 hwaccel
  610. - True Audio (TTA) muxer
  611. - crystalizer audio filter
  612. - acrusher audio filter
  613. - bitplanenoise video filter
  614. - floating point support in als decoder
  615. - fifo muxer
  616. - maskedclamp filter
  617. - hysteresis filter
  618. - lut2 filter
  619. - yuvtestsrc filter
  620. - CUDA CUVID H.263/VP8/VP9/10 bit HEVC (Dithered) Decoding
  621. - vaguedenoiser filter
  622. - added threads option per filter instance
  623. - weave filter
  624. - gblur filter
  625. - avgblur filter
  626. - sobel and prewitt filter
  627. - MediaCodec HEVC/MPEG-4/VP8/VP9 decoding
  628. - Meridian Lossless Packing (MLP) / TrueHD encoder
  629. - Non-Local Means (nlmeans) denoising filter
  630. - sdl2 output device and ffplay support
  631. - sdl1 output device and sdl1 support removed
  632. - extended mov edit list support
  633. - libfaac encoder removed
  634. - Matroska muxer now writes CRC32 elements by default in all Level 1 elements
  635. - sidedata video and asidedata audio filter
  636. - Changed mapping of rtp MIME type G726 to codec g726le.
  637. - spec compliant VAAPI/DXVA2 VC-1 decoding of slices in frame-coded images
  638. version 3.1:
  639. - DXVA2-accelerated HEVC Main10 decoding
  640. - fieldhint filter
  641. - loop video filter and aloop audio filter
  642. - Bob Weaver deinterlacing filter
  643. - firequalizer filter
  644. - datascope filter
  645. - bench and abench filters
  646. - ciescope filter
  647. - protocol blacklisting API
  648. - MediaCodec H264 decoding
  649. - VC-2 HQ RTP payload format (draft v1) depacketizer and packetizer
  650. - VP9 RTP payload format (draft v2) packetizer
  651. - AudioToolbox audio decoders
  652. - AudioToolbox audio encoders
  653. - coreimage filter (GPU based image filtering on OSX)
  654. - libdcadec removed
  655. - bitstream filter for extracting DTS core
  656. - ADPCM IMA DAT4 decoder
  657. - musx demuxer
  658. - aix demuxer
  659. - remap filter
  660. - hash and framehash muxers
  661. - colorspace filter
  662. - hdcd filter
  663. - readvitc filter
  664. - VAAPI-accelerated format conversion and scaling
  665. - libnpp/CUDA-accelerated format conversion and scaling
  666. - Duck TrueMotion 2.0 Real Time decoder
  667. - Wideband Single-bit Data (WSD) demuxer
  668. - VAAPI-accelerated H.264/HEVC/MJPEG encoding
  669. - DTS Express (LBR) decoder
  670. - Generic OpenMAX IL encoder with support for Raspberry Pi
  671. - IFF ANIM demuxer & decoder
  672. - Direct Stream Transfer (DST) decoder
  673. - loudnorm filter
  674. - MTAF demuxer and decoder
  675. - MagicYUV decoder
  676. - OpenExr improvements (tile data and B44/B44A support)
  677. - BitJazz SheerVideo decoder
  678. - CUDA CUVID H264/HEVC decoder
  679. - 10-bit depth support in native utvideo decoder
  680. - libutvideo wrapper removed
  681. - YUY2 Lossless Codec decoder
  682. - VideoToolbox H.264 encoder
  683. version 3.0:
  684. - Common Encryption (CENC) MP4 encoding and decoding support
  685. - DXV decoding
  686. - extrastereo filter
  687. - ocr filter
  688. - alimiter filter
  689. - stereowiden filter
  690. - stereotools filter
  691. - rubberband filter
  692. - tremolo filter
  693. - agate filter
  694. - chromakey filter
  695. - maskedmerge filter
  696. - Screenpresso SPV1 decoding
  697. - chromaprint fingerprinting muxer
  698. - ffplay dynamic volume control
  699. - displace filter
  700. - selectivecolor filter
  701. - extensive native AAC encoder improvements and removal of experimental flag
  702. - ADPCM PSX decoder
  703. - 3dostr, dcstr, fsb, genh, vag, xvag, ads, msf, svag & vpk demuxer
  704. - zscale filter
  705. - wve demuxer
  706. - zero-copy Intel QSV transcoding in ffmpeg
  707. - shuffleframes filter
  708. - SDX2 DPCM decoder
  709. - vibrato filter
  710. - innoHeim/Rsupport Screen Capture Codec decoder
  711. - ADPCM AICA decoder
  712. - Interplay ACM demuxer and audio decoder
  713. - XMA1 & XMA2 decoder
  714. - realtime filter
  715. - anoisesrc audio filter source
  716. - IVR demuxer
  717. - compensationdelay filter
  718. - acompressor filter
  719. - support encoding 16-bit RLE SGI images
  720. - apulsator filter
  721. - sidechaingate audio filter
  722. - mipsdspr1 option has been renamed to mipsdsp
  723. - aemphasis filter
  724. - mips32r5 option has been removed
  725. - mips64r6 option has been removed
  726. - DXVA2-accelerated VP9 decoding
  727. - SOFAlizer: virtual binaural acoustics filter
  728. - VAAPI VP9 hwaccel
  729. - audio high-order multiband parametric equalizer
  730. - automatic bitstream filtering
  731. - showspectrumpic filter
  732. - libstagefright support removed
  733. - spectrumsynth filter
  734. - ahistogram filter
  735. - only seek with the right mouse button in ffplay
  736. - toggle full screen when double-clicking with the left mouse button in ffplay
  737. - afftfilt filter
  738. - convolution filter
  739. - libquvi support removed
  740. - support for dvaudio in wav and avi
  741. - libaacplus and libvo-aacenc support removed
  742. - Cineform HD decoder
  743. - new DCA decoder with full support for DTS-HD extensions
  744. - significant performance improvements in Windows Television (WTV) demuxer
  745. - nnedi deinterlacer
  746. - streamselect video and astreamselect audio filter
  747. - swaprect filter
  748. - metadata video and ametadata audio filter
  749. - SMPTE VC-2 HQ profile support for the Dirac decoder
  750. - SMPTE VC-2 native encoder supporting the HQ profile
  751. version 2.8:
  752. - colorkey video filter
  753. - BFSTM/BCSTM demuxer
  754. - little-endian ADPCM_THP decoder
  755. - Hap decoder and encoder
  756. - DirectDraw Surface image/texture decoder
  757. - ssim filter
  758. - optional new ASF demuxer
  759. - showvolume filter
  760. - Many improvements to the JPEG 2000 decoder
  761. - Go2Meeting decoding support
  762. - adrawgraph audio and drawgraph video filter
  763. - removegrain video filter
  764. - Intel QSV-accelerated MPEG-2 video and HEVC encoding
  765. - Intel QSV-accelerated MPEG-2 video and HEVC decoding
  766. - Intel QSV-accelerated VC-1 video decoding
  767. - libkvazaar HEVC encoder
  768. - erosion, dilation, deflate and inflate video filters
  769. - Dynamic Audio Normalizer as dynaudnorm filter
  770. - Reverse video and areverse audio filter
  771. - Random filter
  772. - deband filter
  773. - AAC fixed-point decoding
  774. - sidechaincompress audio filter
  775. - bitstream filter for converting HEVC from MP4 to Annex B
  776. - acrossfade audio filter
  777. - allyuv and allrgb video sources
  778. - atadenoise video filter
  779. - OS X VideoToolbox support
  780. - aphasemeter filter
  781. - showfreqs filter
  782. - vectorscope filter
  783. - waveform filter
  784. - hstack and vstack filter
  785. - Support DNx100 (1440x1080@8)
  786. - VAAPI hevc hwaccel
  787. - VDPAU hevc hwaccel
  788. - framerate filter
  789. - Switched default encoders for webm to VP9 and Opus
  790. - Removed experimental flag from the JPEG 2000 encoder
  791. version 2.7:
  792. - FFT video filter
  793. - TDSC decoder
  794. - DTS lossless extension (XLL) decoding (not lossless, disabled by default)
  795. - showwavespic filter
  796. - DTS decoding through libdcadec
  797. - Drop support for nvenc API before 5.0
  798. - nvenc HEVC encoder
  799. - Detelecine filter
  800. - Intel QSV-accelerated H.264 encoding
  801. - MMAL-accelerated H.264 decoding
  802. - basic APNG encoder and muxer with default extension "apng"
  803. - unpack DivX-style packed B-frames in MPEG-4 bitstream filter
  804. - WebM Live Chunk Muxer
  805. - nvenc level and tier options
  806. - chorus filter
  807. - Canopus HQ/HQA decoder
  808. - Automatically rotate videos based on metadata in ffmpeg
  809. - improved Quickdraw compatibility
  810. - VP9 high bit-depth and extended colorspaces decoding support
  811. - WebPAnimEncoder API when available for encoding and muxing WebP
  812. - Direct3D11-accelerated decoding
  813. - Support Secure Transport
  814. - Multipart JPEG demuxer
  815. version 2.6:
  816. - nvenc encoder
  817. - 10bit spp filter
  818. - colorlevels filter
  819. - RIFX format for *.wav files
  820. - RTP/mpegts muxer
  821. - non continuous cache protocol support
  822. - tblend filter
  823. - cropdetect support for non 8bpp, absolute (if limit >= 1) and relative (if limit < 1.0) threshold
  824. - Camellia symmetric block cipher
  825. - OpenH264 encoder wrapper
  826. - VOC seeking support
  827. - Closed caption Decoder
  828. - fspp, uspp, pp7 MPlayer postprocessing filters ported to native filters
  829. - showpalette filter
  830. - Twofish symmetric block cipher
  831. - Support DNx100 (960x720@8)
  832. - eq2 filter ported from libmpcodecs as eq filter
  833. - removed libmpcodecs
  834. - Changed default DNxHD colour range in QuickTime .mov derivatives to mpeg range
  835. - ported softpulldown filter from libmpcodecs as repeatfields filter
  836. - dcshift filter
  837. - RTP depacketizer for loss tolerant payload format for MP3 audio (RFC 5219)
  838. - RTP depacketizer for AC3 payload format (RFC 4184)
  839. - palettegen and paletteuse filters
  840. - VP9 RTP payload format (draft 0) experimental depacketizer
  841. - RTP depacketizer for DV (RFC 6469)
  842. - DXVA2-accelerated HEVC decoding
  843. - AAC ELD 480 decoding
  844. - Intel QSV-accelerated H.264 decoding
  845. - DSS SP decoder and DSS demuxer
  846. - Fix stsd atom corruption in DNxHD QuickTimes
  847. - Canopus HQX decoder
  848. - RTP depacketization of T.140 text (RFC 4103)
  849. - Port MIPS optimizations to 64-bit
  850. version 2.5:
  851. - HEVC/H.265 RTP payload format (draft v6) packetizer
  852. - SUP/PGS subtitle demuxer
  853. - ffprobe -show_pixel_formats option
  854. - CAST128 symmetric block cipher, ECB mode
  855. - STL subtitle demuxer and decoder
  856. - libutvideo YUV 4:2:2 10bit support
  857. - XCB-based screen-grabber
  858. - UDP-Lite support (RFC 3828)
  859. - xBR scaling filter
  860. - AVFoundation screen capturing support
  861. - ffserver supports codec private options
  862. - creating DASH compatible fragmented MP4, MPEG-DASH segmenting muxer
  863. - WebP muxer with animated WebP support
  864. - zygoaudio decoding support
  865. - APNG demuxer
  866. - postproc visualization support
  867. version 2.4:
  868. - Icecast protocol
  869. - ported lenscorrection filter from frei0r filter
  870. - large optimizations in dctdnoiz to make it usable
  871. - ICY metadata are now requested by default with the HTTP protocol
  872. - support for using metadata in stream specifiers in fftools
  873. - LZMA compression support in TIFF decoder
  874. - H.261 RTP payload format (RFC 4587) depacketizer and experimental packetizer
  875. - HEVC/H.265 RTP payload format (draft v6) depacketizer
  876. - added codecview filter to visualize information exported by some codecs
  877. - Matroska 3D support thorugh side data
  878. - HTML generation using texi2html is deprecated in favor of makeinfo/texi2any
  879. - silenceremove filter
  880. version 2.3:
  881. - AC3 fixed-point decoding
  882. - shuffleplanes filter
  883. - subfile protocol
  884. - Phantom Cine demuxer
  885. - replaygain data export
  886. - VP7 video decoder
  887. - Alias PIX image encoder and decoder
  888. - Improvements to the BRender PIX image decoder
  889. - Improvements to the XBM decoder
  890. - QTKit input device
  891. - improvements to OpenEXR image decoder
  892. - support decoding 16-bit RLE SGI images
  893. - GDI screen grabbing for Windows
  894. - alternative rendition support for HTTP Live Streaming
  895. - AVFoundation input device
  896. - Direct Stream Digital (DSD) decoder
  897. - Magic Lantern Video (MLV) demuxer
  898. - On2 AVC (Audio for Video) decoder
  899. - support for decoding through DXVA2 in ffmpeg
  900. - libbs2b-based stereo-to-binaural audio filter
  901. - libx264 reference frames count limiting depending on level
  902. - native Opus decoder
  903. - display matrix export and rotation API
  904. - WebVTT encoder
  905. - showcqt multimedia filter
  906. - zoompan filter
  907. - signalstats filter
  908. - hqx filter (hq2x, hq3x, hq4x)
  909. - flanger filter
  910. - Image format auto-detection
  911. - LRC demuxer and muxer
  912. - Samba protocol (via libsmbclient)
  913. - WebM DASH Manifest muxer
  914. - libfribidi support in drawtext
  915. version 2.2:
  916. - HNM version 4 demuxer and video decoder
  917. - Live HDS muxer
  918. - setsar/setdar filters now support variables in ratio expressions
  919. - elbg filter
  920. - string validation in ffprobe
  921. - support for decoding through VDPAU in ffmpeg (the -hwaccel option)
  922. - complete Voxware MetaSound decoder
  923. - remove mp3_header_compress bitstream filter
  924. - Windows resource files for shared libraries
  925. - aeval filter
  926. - stereoscopic 3d metadata handling
  927. - WebP encoding via libwebp
  928. - ATRAC3+ decoder
  929. - VP8 in Ogg demuxing
  930. - side & metadata support in NUT
  931. - framepack filter
  932. - XYZ12 rawvideo support in NUT
  933. - Exif metadata support in WebP decoder
  934. - OpenGL device
  935. - Use metadata_header_padding to control padding in ID3 tags (currently used in
  936. MP3, AIFF, and OMA files), FLAC header, and the AVI "junk" block.
  937. - Mirillis FIC video decoder
  938. - Support DNx444
  939. - libx265 encoder
  940. - dejudder filter
  941. - Autodetect VDA like all other hardware accelerations
  942. - aliases and defaults for Ogg subtypes (opus, spx)
  943. version 2.1:
  944. - aecho filter
  945. - perspective filter ported from libmpcodecs
  946. - ffprobe -show_programs option
  947. - compand filter
  948. - RTMP seek support
  949. - when transcoding with ffmpeg (i.e. not streamcopying), -ss is now accurate
  950. even when used as an input option. Previous behavior can be restored with
  951. the -noaccurate_seek option.
  952. - ffmpeg -t option can now be used for inputs, to limit the duration of
  953. data read from an input file
  954. - incomplete Voxware MetaSound decoder
  955. - read EXIF metadata from JPEG
  956. - DVB teletext decoder
  957. - phase filter ported from libmpcodecs
  958. - w3fdif filter
  959. - Opus support in Matroska
  960. - FFV1 version 1.3 is stable and no longer experimental
  961. - FFV1: YUVA(444,422,420) 9, 10 and 16 bit support
  962. - changed DTS stream id in lavf mpeg ps muxer from 0x8a to 0x88, to be
  963. more consistent with other muxers.
  964. - adelay filter
  965. - pullup filter ported from libmpcodecs
  966. - ffprobe -read_intervals option
  967. - Lossless and alpha support for WebP decoder
  968. - Error Resilient AAC syntax (ER AAC LC) decoding
  969. - Low Delay AAC (ER AAC LD) decoding
  970. - mux chapters in ASF files
  971. - SFTP protocol (via libssh)
  972. - libx264: add ability to encode in YUVJ422P and YUVJ444P
  973. - Fraps: use BT.709 colorspace by default for yuv, as reference fraps decoder does
  974. - make decoding alpha optional for prores, ffv1 and vp6 by setting
  975. the skip_alpha flag.
  976. - ladspa wrapper filter
  977. - native VP9 decoder
  978. - dpx parser
  979. - max_error_rate parameter in ffmpeg
  980. - PulseAudio output device
  981. - ReplayGain scanner
  982. - Enhanced Low Delay AAC (ER AAC ELD) decoding (no LD SBR support)
  983. - Linux framebuffer output device
  984. - HEVC decoder
  985. - raw HEVC, HEVC in MOV/MP4, HEVC in Matroska, HEVC in MPEG-TS demuxing
  986. - mergeplanes filter
  987. version 2.0:
  988. - curves filter
  989. - reference-counting for AVFrame and AVPacket data
  990. - ffmpeg now fails when input options are used for output file
  991. or vice versa
  992. - support for Monkey's Audio versions from 3.93
  993. - perms and aperms filters
  994. - audio filtering support in ffplay
  995. - 10% faster aac encoding on x86 and MIPS
  996. - sine audio filter source
  997. - WebP demuxing and decoding support
  998. - ffmpeg options -filter_script and -filter_complex_script, which allow a
  999. filtergraph description to be read from a file
  1000. - OpenCL support
  1001. - audio phaser filter
  1002. - separatefields filter
  1003. - libquvi demuxer
  1004. - uniform options syntax across all filters
  1005. - telecine filter
  1006. - interlace filter
  1007. - smptehdbars source
  1008. - inverse telecine filters (fieldmatch and decimate)
  1009. - colorbalance filter
  1010. - colorchannelmixer filter
  1011. - The matroska demuxer can now output proper verbatim ASS packets. It will
  1012. become the default at the next libavformat major bump.
  1013. - decent native animated GIF encoding
  1014. - asetrate filter
  1015. - interleave filter
  1016. - timeline editing with filters
  1017. - vidstabdetect and vidstabtransform filters for video stabilization using
  1018. the vid.stab library
  1019. - astats filter
  1020. - trim and atrim filters
  1021. - ffmpeg -t and -ss (output-only) options are now sample-accurate when
  1022. transcoding audio
  1023. - Matroska muxer can now put the index at the beginning of the file.
  1024. - extractplanes filter
  1025. - avectorscope filter
  1026. - ADPCM DTK decoder
  1027. - ADP demuxer
  1028. - RSD demuxer
  1029. - RedSpark demuxer
  1030. - ADPCM IMA Radical decoder
  1031. - zmq filters
  1032. - DCT denoiser filter (dctdnoiz)
  1033. - Wavelet denoiser filter ported from libmpcodecs as owdenoise (formerly "ow")
  1034. - Apple Intermediate Codec decoder
  1035. - Escape 130 video decoder
  1036. - FTP protocol support
  1037. - V4L2 output device
  1038. - 3D LUT filter (lut3d)
  1039. - SMPTE 302M audio encoder
  1040. - support for slice multithreading in libavfilter
  1041. - Hald CLUT support (generation and filtering)
  1042. - VC-1 interlaced B-frame support
  1043. - support for WavPack muxing (raw and in Matroska)
  1044. - XVideo output device
  1045. - vignette filter
  1046. - True Audio (TTA) encoder
  1047. - Go2Webinar decoder
  1048. - mcdeint filter ported from libmpcodecs
  1049. - sab filter ported from libmpcodecs
  1050. - ffprobe -show_chapters option
  1051. - WavPack encoding through libwavpack
  1052. - rotate filter
  1053. - spp filter ported from libmpcodecs
  1054. - libgme support
  1055. - psnr filter
  1056. version 1.2:
  1057. - VDPAU hardware acceleration through normal hwaccel
  1058. - SRTP support
  1059. - Error diffusion dither in Swscale
  1060. - Chained Ogg support
  1061. - Theora Midstream reconfiguration support
  1062. - EVRC decoder
  1063. - audio fade filter
  1064. - filtering audio with unknown channel layout
  1065. - allpass, bass, bandpass, bandreject, biquad, equalizer, highpass, lowpass
  1066. and treble audio filter
  1067. - improved showspectrum filter, with multichannel support and sox-like colors
  1068. - histogram filter
  1069. - tee muxer
  1070. - il filter ported from libmpcodecs
  1071. - support ID3v2 tags in ASF files
  1072. - encrypted TTA stream decoding support
  1073. - RF64 support in WAV muxer
  1074. - noise filter ported from libmpcodecs
  1075. - Subtitles character encoding conversion
  1076. - blend filter
  1077. - stereo3d filter ported from libmpcodecs
  1078. version 1.1:
  1079. - stream disposition information printing in ffprobe
  1080. - filter for loudness analysis following EBU R128
  1081. - Opus encoder using libopus
  1082. - ffprobe -select_streams option
  1083. - Pinnacle TARGA CineWave YUV16 decoder
  1084. - TAK demuxer, decoder and parser
  1085. - DTS-HD demuxer
  1086. - remove -same_quant, it hasn't worked for years
  1087. - FFM2 support
  1088. - X-Face image encoder and decoder
  1089. - 24-bit FLAC encoding
  1090. - multi-channel ALAC encoding up to 7.1
  1091. - metadata (INFO tag) support in WAV muxer
  1092. - subtitles raw text decoder
  1093. - support for building DLLs using MSVC
  1094. - LVF demuxer
  1095. - ffescape tool
  1096. - metadata (info chunk) support in CAF muxer
  1097. - field filter ported from libmpcodecs
  1098. - AVR demuxer
  1099. - geq filter ported from libmpcodecs
  1100. - remove ffserver daemon mode
  1101. - AST muxer/demuxer
  1102. - new expansion syntax for drawtext
  1103. - BRender PIX image decoder
  1104. - ffprobe -show_entries option
  1105. - ffprobe -sections option
  1106. - ADPCM IMA Dialogic decoder
  1107. - BRSTM demuxer
  1108. - animated GIF decoder and demuxer
  1109. - PVF demuxer
  1110. - subtitles filter
  1111. - IRCAM muxer/demuxer
  1112. - Paris Audio File demuxer
  1113. - Virtual concatenation demuxer
  1114. - VobSub demuxer
  1115. - JSON captions for TED talks decoding support
  1116. - SOX Resampler support in libswresample
  1117. - aselect filter
  1118. - SGI RLE 8-bit / Silicon Graphics RLE 8-bit video decoder
  1119. - Silicon Graphics Motion Video Compressor 1 & 2 decoder
  1120. - Silicon Graphics Movie demuxer
  1121. - apad filter
  1122. - Resolution & pixel format change support with multithreading for H.264
  1123. - documentation split into per-component manuals
  1124. - pp (postproc) filter ported from MPlayer
  1125. - NIST Sphere demuxer
  1126. - MPL2, VPlayer, MPlayer, AQTitle, PJS and SubViewer v1 subtitles demuxers and decoders
  1127. - Sony Wave64 muxer
  1128. - adobe and limelight publisher authentication in RTMP
  1129. - data: URI scheme
  1130. - support building on the Plan 9 operating system
  1131. - kerndeint filter ported from MPlayer
  1132. - histeq filter ported from VirtualDub
  1133. - Megalux Frame demuxer
  1134. - 012v decoder
  1135. - Improved AVC Intra decoding support
  1136. version 1.0:
  1137. - INI and flat output in ffprobe
  1138. - Scene detection in libavfilter
  1139. - Indeo Audio decoder
  1140. - channelsplit audio filter
  1141. - setnsamples audio filter
  1142. - atempo filter
  1143. - ffprobe -show_data option
  1144. - RTMPT protocol support
  1145. - iLBC encoding/decoding via libilbc
  1146. - Microsoft Screen 1 decoder
  1147. - join audio filter
  1148. - audio channel mapping filter
  1149. - Microsoft ATC Screen decoder
  1150. - RTSP listen mode
  1151. - TechSmith Screen Codec 2 decoder
  1152. - AAC encoding via libfdk-aac
  1153. - Microsoft Expression Encoder Screen decoder
  1154. - RTMPS protocol support
  1155. - RTMPTS protocol support
  1156. - RTMPE protocol support
  1157. - RTMPTE protocol support
  1158. - showwaves and showspectrum filter
  1159. - LucasArts SMUSH SANM playback support
  1160. - LucasArts SMUSH VIMA audio decoder (ADPCM)
  1161. - LucasArts SMUSH demuxer
  1162. - SAMI, RealText and SubViewer demuxers and decoders
  1163. - Heart Of Darkness PAF playback support
  1164. - iec61883 device
  1165. - asettb filter
  1166. - new option: -progress
  1167. - 3GPP Timed Text encoder/decoder
  1168. - GeoTIFF decoder support
  1169. - ffmpeg -(no)stdin option
  1170. - Opus decoder using libopus
  1171. - caca output device using libcaca
  1172. - alphaextract and alphamerge filters
  1173. - concat filter
  1174. - flite filter
  1175. - Canopus Lossless Codec decoder
  1176. - bitmap subtitles in filters (experimental and temporary)
  1177. - MP2 encoding via TwoLAME
  1178. - bmp parser
  1179. - smptebars source
  1180. - asetpts filter
  1181. - hue filter
  1182. - ICO muxer
  1183. - SubRip encoder and decoder without embedded timing
  1184. - edge detection filter
  1185. - framestep filter
  1186. - ffmpeg -shortest option is now per-output file
  1187. -pass and -passlogfile are now per-output stream
  1188. - volume measurement filter
  1189. - Ut Video encoder
  1190. - Microsoft Screen 2 decoder
  1191. - smartblur filter ported from MPlayer
  1192. - CPiA decoder
  1193. - decimate filter ported from MPlayer
  1194. - RTP depacketization of JPEG
  1195. - Smooth Streaming live segmenter muxer
  1196. - F4V muxer
  1197. - sendcmd and asendcmd filters
  1198. - WebVTT demuxer and decoder (simple tags supported)
  1199. - RTP packetization of JPEG
  1200. - faststart option in the MOV/MP4 muxer
  1201. - support for building with MSVC
  1202. version 0.11:
  1203. - Fixes: CVE-2012-2772, CVE-2012-2774, CVE-2012-2775, CVE-2012-2776, CVE-2012-2777,
  1204. CVE-2012-2779, CVE-2012-2782, CVE-2012-2783, CVE-2012-2784, CVE-2012-2785,
  1205. CVE-2012-2786, CVE-2012-2787, CVE-2012-2788, CVE-2012-2789, CVE-2012-2790,
  1206. CVE-2012-2791, CVE-2012-2792, CVE-2012-2793, CVE-2012-2794, CVE-2012-2795,
  1207. CVE-2012-2796, CVE-2012-2797, CVE-2012-2798, CVE-2012-2799, CVE-2012-2800,
  1208. CVE-2012-2801, CVE-2012-2802, CVE-2012-2803, CVE-2012-2804,
  1209. - v408 Quicktime and Microsoft AYUV Uncompressed 4:4:4:4 encoder and decoder
  1210. - setfield filter
  1211. - CDXL demuxer and decoder
  1212. - Apple ProRes encoder
  1213. - ffprobe -count_packets and -count_frames options
  1214. - Sun Rasterfile Encoder
  1215. - ID3v2 attached pictures reading and writing
  1216. - WMA Lossless decoder
  1217. - bluray protocol
  1218. - blackdetect filter
  1219. - libutvideo encoder wrapper (--enable-libutvideo)
  1220. - swapuv filter
  1221. - bbox filter
  1222. - XBM encoder and decoder
  1223. - RealAudio Lossless decoder
  1224. - ZeroCodec decoder
  1225. - tile video filter
  1226. - Metal Gear Solid: The Twin Snakes demuxer
  1227. - OpenEXR image decoder
  1228. - removelogo filter
  1229. - drop support for ffmpeg without libavfilter
  1230. - drawtext video filter: fontconfig support
  1231. - ffmpeg -benchmark_all option
  1232. - super2xsai filter ported from libmpcodecs
  1233. - add libavresample audio conversion library for compatibility
  1234. - MicroDVD decoder
  1235. - Avid Meridien (AVUI) encoder and decoder
  1236. - accept + prefix to -pix_fmt option to disable automatic conversions.
  1237. - complete audio filtering in libavfilter and ffmpeg
  1238. - add fps filter
  1239. - vorbis parser
  1240. - png parser
  1241. - audio mix filter
  1242. - ffv1: support (draft) version 1.3
  1243. version 0.10:
  1244. - Fixes: CVE-2011-3929, CVE-2011-3934, CVE-2011-3935, CVE-2011-3936,
  1245. CVE-2011-3937, CVE-2011-3940, CVE-2011-3941, CVE-2011-3944,
  1246. CVE-2011-3945, CVE-2011-3946, CVE-2011-3947, CVE-2011-3949,
  1247. CVE-2011-3950, CVE-2011-3951, CVE-2011-3952
  1248. - v410 Quicktime Uncompressed 4:4:4 10-bit encoder and decoder
  1249. - SBaGen (SBG) binaural beats script demuxer
  1250. - OpenMG Audio muxer
  1251. - Timecode extraction in DV and MOV
  1252. - thumbnail video filter
  1253. - XML output in ffprobe
  1254. - asplit audio filter
  1255. - tinterlace video filter
  1256. - astreamsync audio filter
  1257. - amerge audio filter
  1258. - ISMV (Smooth Streaming) muxer
  1259. - GSM audio parser
  1260. - SMJPEG muxer
  1261. - XWD encoder and decoder
  1262. - Automatic thread count based on detection number of (available) CPU cores
  1263. - y41p Brooktree Uncompressed 4:1:1 12-bit encoder and decoder
  1264. - ffprobe -show_error option
  1265. - Avid 1:1 10-bit RGB Packer codec
  1266. - v308 Quicktime Uncompressed 4:4:4 encoder and decoder
  1267. - yuv4 libquicktime packed 4:2:0 encoder and decoder
  1268. - ffprobe -show_frames option
  1269. - silencedetect audio filter
  1270. - ffprobe -show_program_version, -show_library_versions, -show_versions options
  1271. - rv34: frame-level multi-threading
  1272. - optimized iMDCT transform on x86 using SSE for for mpegaudiodec
  1273. - Improved PGS subtitle decoder
  1274. - dumpgraph option to lavfi device
  1275. - r210 and r10k encoders
  1276. - ffwavesynth decoder
  1277. - aviocat tool
  1278. - ffeval tool
  1279. - support encoding and decoding 4-channel SGI images
  1280. version 0.9:
  1281. - openal input device added
  1282. - boxblur filter added
  1283. - BWF muxer
  1284. - Flash Screen Video 2 decoder
  1285. - lavfi input device added
  1286. - added avconv, which is almost the same for now, except
  1287. for a few incompatible changes in the options, which will hopefully make them
  1288. easier to use. The changes are:
  1289. * The options placement is now strictly enforced! While in theory the
  1290. options for ffmpeg should be given in [input options] -i INPUT [output
  1291. options] OUTPUT order, in practice it was possible to give output options
  1292. before the -i and it mostly worked. Except when it didn't - the behavior was
  1293. a bit inconsistent. In avconv, it is not possible to mix input and output
  1294. options. All non-global options are reset after an input or output filename.
  1295. * All per-file options are now truly per-file - they apply only to the next
  1296. input or output file and specifying different values for different files
  1297. will now work properly (notably -ss and -t options).
  1298. * All per-stream options are now truly per-stream - it is possible to
  1299. specify which stream(s) should a given option apply to. See the Stream
  1300. specifiers section in the avconv manual for details.
  1301. * In ffmpeg some options (like -newvideo/-newaudio/...) are irregular in the
  1302. sense that they're specified after the output filename instead of before,
  1303. like all other options. In avconv this irregularity is removed, all options
  1304. apply to the next input or output file.
  1305. * -newvideo/-newaudio/-newsubtitle options were removed. Not only were they
  1306. irregular and highly confusing, they were also redundant. In avconv the -map
  1307. option will create new streams in the output file and map input streams to
  1308. them. E.g. avconv -i INPUT -map 0 OUTPUT will create an output stream for
  1309. each stream in the first input file.
  1310. * The -map option now has slightly different and more powerful syntax:
  1311. + Colons (':') are used to separate file index/stream type/stream index
  1312. instead of dots. Comma (',') is used to separate the sync stream instead
  1313. of colon.. This is done for consistency with other options.
  1314. + It's possible to specify stream type. E.g. -map 0:a:2 creates an
  1315. output stream from the third input audio stream.
  1316. + Omitting the stream index now maps all the streams of the given type,
  1317. not just the first. E.g. -map 0:s creates output streams for all the
  1318. subtitle streams in the first input file.
  1319. + Since -map can now match multiple streams, negative mappings were
  1320. introduced. Negative mappings disable some streams from an already
  1321. defined map. E.g. '-map 0 -map -0:a:1' means 'create output streams for
  1322. all the stream in the first input file, except for the second audio
  1323. stream'.
  1324. * There is a new option -c (or -codec) for choosing the decoder/encoder to
  1325. use, which makes it possible to precisely specify target stream(s) consistently with
  1326. other options. E.g. -c:v lib264 sets the codec for all video streams, -c:a:0
  1327. libvorbis sets the codec for the first audio stream and -c copy copies all
  1328. the streams without reencoding. Old -vcodec/-acodec/-scodec options are now
  1329. aliases to -c:v/a/s
  1330. * It is now possible to precisely specify which stream should an AVOption
  1331. apply to. E.g. -b:v:0 2M sets the bitrate for the first video stream, while
  1332. -b:a 128k sets the bitrate for all audio streams. Note that the old -ab 128k
  1333. syntax is deprecated and will stop working soon.
  1334. * -map_chapters now takes only an input file index and applies to the next
  1335. output file. This is consistent with how all the other options work.
  1336. * -map_metadata now takes only an input metadata specifier and applies to
  1337. the next output file. Output metadata specifier is now part of the option
  1338. name, similarly to the AVOptions/map/codec feature above.
  1339. * -metadata can now be used to set metadata on streams and chapters, e.g.
  1340. -metadata:s:1 language=eng sets the language of the first stream to 'eng'.
  1341. This made -vlang/-alang/-slang options redundant, so they were removed.
  1342. * -qscale option now uses stream specifiers and applies to all streams, not
  1343. just video. I.e. plain -qscale number would now apply to all streams. To get
  1344. the old behavior, use -qscale:v. Also there is now a shortcut -q for -qscale
  1345. and -aq is now an alias for -q:a.
  1346. * -vbsf/-absf/-sbsf options were removed and replaced by a -bsf option which
  1347. uses stream specifiers. Use -bsf:v/a/s instead of the old options.
  1348. * -itsscale option now uses stream specifiers, so its argument is only the
  1349. scale parameter.
  1350. * -intra option was removed, use -g 0 for the same effect.
  1351. * -psnr option was removed, use -flags +psnr for the same effect.
  1352. * -vf option is now an alias to the new -filter option, which uses stream specifiers.
  1353. * -vframes/-aframes/-dframes options are now aliases to the new -frames option.
  1354. * -vtag/-atag/-stag options are now aliases to the new -tag option.
  1355. - XMV demuxer
  1356. - LOAS demuxer
  1357. - ashowinfo filter added
  1358. - Windows Media Image decoder
  1359. - amovie source added
  1360. - LATM muxer/demuxer
  1361. - Speex encoder via libspeex
  1362. - JSON output in ffprobe
  1363. - WTV muxer
  1364. - Optional C++ Support (needed for libstagefright)
  1365. - H.264 Decoding on Android via Stagefright
  1366. - Prores decoder
  1367. - BIN/XBIN/ADF/IDF text file decoder
  1368. - aconvert audio filter added
  1369. - audio support to lavfi input device added
  1370. - libcdio-paranoia input device for audio CD grabbing
  1371. - Apple ProRes decoder
  1372. - CELT in Ogg demuxing
  1373. - G.723.1 demuxer and decoder
  1374. - libmodplug support (--enable-libmodplug)
  1375. - VC-1 interlaced decoding
  1376. - libutvideo wrapper (--enable-libutvideo)
  1377. - aevalsrc audio source added
  1378. - Ut Video decoder
  1379. - Speex encoding via libspeex
  1380. - 4:2:2 H.264 decoding support
  1381. - 4:2:2 and 4:4:4 H.264 encoding with libx264
  1382. - Pulseaudio input device
  1383. - Prores encoder
  1384. - Video Decoder Acceleration (VDA) HWAccel module.
  1385. - replacement Indeo 3 decoder
  1386. - new ffmpeg option: -map_channel
  1387. - volume audio filter added
  1388. - earwax audio filter added
  1389. - libv4l2 support (--enable-libv4l2)
  1390. - TLS/SSL and HTTPS protocol support
  1391. - AVOptions API rewritten and documented
  1392. - most of CODEC_FLAG2_*, some CODEC_FLAG_* and many codec-specific fields in
  1393. AVCodecContext deprecated. Codec private options should be used instead.
  1394. - Properly working defaults in libx264 wrapper, support for native presets.
  1395. - Encrypted OMA files support
  1396. - Discworld II BMV decoding support
  1397. - VBLE Decoder
  1398. - OS X Video Decoder Acceleration (VDA) support
  1399. - compact and csv output in ffprobe
  1400. - pan audio filter
  1401. - IFF Amiga Continuous Bitmap (ACBM) decoder
  1402. - ass filter
  1403. - CRI ADX audio format muxer and demuxer
  1404. - Playstation Portable PMP format demuxer
  1405. - Microsoft Windows ICO demuxer
  1406. - life source
  1407. - PCM format support in OMA demuxer
  1408. - CLJR encoder
  1409. - new option: -report
  1410. - Dxtory capture format decoder
  1411. - cellauto source
  1412. - Simple segmenting muxer
  1413. - Indeo 4 decoder
  1414. - SMJPEG demuxer
  1415. version 0.8:
  1416. - many many things we forgot because we rather write code than changelogs
  1417. - WebM support in Matroska de/muxer
  1418. - low overhead Ogg muxing
  1419. - MMS-TCP support
  1420. - VP8 de/encoding via libvpx
  1421. - Demuxer for On2's IVF format
  1422. - Pictor/PC Paint decoder
  1423. - HE-AAC v2 decoder
  1424. - HE-AAC v2 encoding with libaacplus
  1425. - libfaad2 wrapper removed
  1426. - DTS-ES extension (XCh) decoding support
  1427. - native VP8 decoder
  1428. - RTSP tunneling over HTTP
  1429. - RTP depacketization of SVQ3
  1430. - -strict inofficial replaced by -strict unofficial
  1431. - ffplay -exitonkeydown and -exitonmousedown options added
  1432. - native GSM / GSM MS decoder
  1433. - RTP depacketization of QDM2
  1434. - ANSI/ASCII art playback system
  1435. - Lego Mindstorms RSO de/muxer
  1436. - libavcore added (and subsequently removed)
  1437. - SubRip subtitle file muxer and demuxer
  1438. - Chinese AVS encoding via libxavs
  1439. - ffprobe -show_packets option added
  1440. - RTP packetization of Theora and Vorbis
  1441. - RTP depacketization of MP4A-LATM
  1442. - RTP packetization and depacketization of VP8
  1443. - hflip filter
  1444. - Apple HTTP Live Streaming demuxer
  1445. - a64 codec
  1446. - MMS-HTTP support
  1447. - G.722 ADPCM audio encoder/decoder
  1448. - R10k video decoder
  1449. - ocv_smooth filter
  1450. - frei0r wrapper filter
  1451. - change crop filter syntax to width:height:x:y
  1452. - make the crop filter accept parametric expressions
  1453. - make ffprobe accept AVFormatContext options
  1454. - yadif filter
  1455. - blackframe filter
  1456. - Demuxer for Leitch/Harris' VR native stream format (LXF)
  1457. - RTP depacketization of the X-QT QuickTime format
  1458. - SAP (Session Announcement Protocol, RFC 2974) muxer and demuxer
  1459. - cropdetect filter
  1460. - ffmpeg -crop* options removed
  1461. - transpose filter added
  1462. - ffmpeg -force_key_frames option added
  1463. - demuxer for receiving raw rtp:// URLs without an SDP description
  1464. - single stream LATM/LOAS decoder
  1465. - setpts filter added
  1466. - Win64 support for optimized x86 assembly functions
  1467. - MJPEG/AVI1 to JPEG/JFIF bitstream filter
  1468. - ASS subtitle encoder and decoder
  1469. - IEC 61937 encapsulation for E-AC-3, TrueHD, DTS-HD (for HDMI passthrough)
  1470. - overlay filter added
  1471. - rename aspect filter to setdar, and pixelaspect to setsar
  1472. - IEC 61937 demuxer
  1473. - Mobotix .mxg demuxer
  1474. - frei0r source added
  1475. - hqdn3d filter added
  1476. - RTP depacketization of QCELP
  1477. - FLAC parser added
  1478. - gradfun filter added
  1479. - AMR-WB decoder
  1480. - replace the ocv_smooth filter with a more generic ocv filter
  1481. - Windows Televison (WTV) demuxer
  1482. - FFmpeg metadata format muxer and demuxer
  1483. - SubRip (srt) subtitle encoder and decoder
  1484. - floating-point AC-3 encoder added
  1485. - Lagarith decoder
  1486. - ffmpeg -copytb option added
  1487. - IVF muxer added
  1488. - Wing Commander IV movies decoder added
  1489. - movie source added
  1490. - Bink version 'b' audio and video decoder
  1491. - Bitmap Brothers JV playback system
  1492. - Apple HTTP Live Streaming protocol handler
  1493. - sndio support for playback and record
  1494. - Linux framebuffer input device added
  1495. - Chronomaster DFA decoder
  1496. - DPX image encoder
  1497. - MicroDVD subtitle file muxer and demuxer
  1498. - Playstation Portable PMP format demuxer
  1499. - fieldorder video filter added
  1500. - AAC encoding via libvo-aacenc
  1501. - AMR-WB encoding via libvo-amrwbenc
  1502. - xWMA demuxer
  1503. - Mobotix MxPEG decoder
  1504. - VP8 frame-multithreading
  1505. - NEON optimizations for VP8
  1506. - Lots of deprecated API cruft removed
  1507. - fft and imdct optimizations for AVX (Sandy Bridge) processors
  1508. - showinfo filter added
  1509. - SMPTE 302M AES3 audio decoder
  1510. - Apple Core Audio Format muxer
  1511. - 9 bits and 10 bits per sample support in the H.264 decoder
  1512. - 9 bits and 10 bits FFV1 encoding / decoding
  1513. - split filter added
  1514. - select filter added
  1515. - sdl output device added
  1516. - libmpcodecs video filter support (3 times as many filters than before)
  1517. - mpeg2 aspect ratio dection fixed
  1518. - libxvid aspect pickiness fixed
  1519. - Frame multithreaded decoding
  1520. - E-AC-3 audio encoder
  1521. - ac3enc: add channel coupling support
  1522. - floating-point sample format support to the ac3, eac3, dca, aac, and vorbis decoders.
  1523. - H264/MPEG frame-level multi-threading
  1524. - All av_metadata_* functions renamed to av_dict_* and moved to libavutil
  1525. - 4:4:4 H.264 decoding support
  1526. - 10-bit H.264 optimizations for x86
  1527. - lut, lutrgb, and lutyuv filters added
  1528. - buffersink libavfilter sink added
  1529. - Bump libswscale for recently reported ABI break
  1530. - New J2K encoder (via OpenJPEG)
  1531. version 0.7:
  1532. - all the changes for 0.8, but keeping API/ABI compatibility with the 0.6 release
  1533. version 0.6:
  1534. - PB-frame decoding for H.263
  1535. - deprecated vhook subsystem removed
  1536. - deprecated old scaler removed
  1537. - VQF demuxer
  1538. - Alpha channel scaler
  1539. - PCX encoder
  1540. - RTP packetization of H.263
  1541. - RTP packetization of AMR
  1542. - RTP depacketization of Vorbis
  1543. - CorePNG decoding support
  1544. - Cook multichannel decoding support
  1545. - introduced avlanguage helpers in libavformat
  1546. - 8088flex TMV demuxer and decoder
  1547. - per-stream language-tags extraction in asfdec
  1548. - V210 decoder and encoder
  1549. - remaining GPL parts in AC-3 decoder converted to LGPL
  1550. - QCP demuxer
  1551. - SoX native format muxer and demuxer
  1552. - AMR-NB decoding/encoding, AMR-WB decoding via OpenCORE libraries
  1553. - DPX image decoder
  1554. - Electronic Arts Madcow decoder
  1555. - DivX (XSUB) subtitle encoder
  1556. - nonfree libamr support for AMR-NB/WB decoding/encoding removed
  1557. - experimental AAC encoder
  1558. - RTP depacketization of ASF and RTSP from WMS servers
  1559. - RTMP support in libavformat
  1560. - noX handling for OPT_BOOL X options
  1561. - Wave64 demuxer
  1562. - IEC-61937 compatible Muxer
  1563. - TwinVQ decoder
  1564. - Bluray (PGS) subtitle decoder
  1565. - LPCM support in MPEG-TS (HDMV RID as found on Blu-ray disks)
  1566. - WMA Pro decoder
  1567. - Core Audio Format demuxer
  1568. - ATRAC1 decoder
  1569. - MD STUDIO audio demuxer
  1570. - RF64 support in WAV demuxer
  1571. - MPEG-4 Audio Lossless Coding (ALS) decoder
  1572. - -formats option split into -formats, -codecs, -bsfs, and -protocols
  1573. - IV8 demuxer
  1574. - CDG demuxer and decoder
  1575. - R210 decoder
  1576. - Auravision Aura 1 and 2 decoders
  1577. - Deluxe Paint Animation playback system
  1578. - SIPR decoder
  1579. - Adobe Filmstrip muxer and demuxer
  1580. - RTP depacketization of H.263
  1581. - Bink demuxer and audio/video decoders
  1582. - enable symbol versioning by default for linkers that support it
  1583. - IFF PBM/ILBM bitmap decoder
  1584. - concat protocol
  1585. - Indeo 5 decoder
  1586. - RTP depacketization of AMR
  1587. - WMA Voice decoder
  1588. - ffprobe tool
  1589. - AMR-NB decoder
  1590. - RTSP muxer
  1591. - HE-AAC v1 decoder
  1592. - Kega Game Video (KGV1) decoder
  1593. - VorbisComment writing for FLAC, Ogg FLAC and Ogg Speex files
  1594. - RTP depacketization of Theora
  1595. - HTTP Digest authentication
  1596. - RTMP/RTMPT/RTMPS/RTMPE/RTMPTE protocol support via librtmp
  1597. - Psygnosis YOP demuxer and video decoder
  1598. - spectral extension support in the E-AC-3 decoder
  1599. - unsharp video filter
  1600. - RTP hinting in the mov/3gp/mp4 muxer
  1601. - Dirac in Ogg demuxing
  1602. - seek to keyframes in Ogg
  1603. - 4:2:2 and 4:4:4 Theora decoding
  1604. - 35% faster VP3/Theora decoding
  1605. - faster AAC decoding
  1606. - faster H.264 decoding
  1607. - RealAudio 1.0 (14.4K) encoder
  1608. version 0.5:
  1609. - DV50 AKA DVCPRO50 encoder, decoder, muxer and demuxer
  1610. - TechSmith Camtasia (TSCC) video decoder
  1611. - IBM Ultimotion (ULTI) video decoder
  1612. - Sierra Online audio file demuxer and decoder
  1613. - Apple QuickDraw (qdrw) video decoder
  1614. - Creative ADPCM audio decoder (16 bits as well as 8 bits schemes)
  1615. - Electronic Arts Multimedia (WVE/UV2/etc.) file demuxer
  1616. - Miro VideoXL (VIXL) video decoder
  1617. - H.261 video encoder
  1618. - QPEG video decoder
  1619. - Nullsoft Video (NSV) file demuxer
  1620. - Shorten audio decoder
  1621. - LOCO video decoder
  1622. - Apple Lossless Audio Codec (ALAC) decoder
  1623. - Winnov WNV1 video decoder
  1624. - Autodesk Animator Studio Codec (AASC) decoder
  1625. - Indeo 2 video decoder
  1626. - Fraps FPS1 video decoder
  1627. - Snow video encoder/decoder
  1628. - Sonic audio encoder/decoder
  1629. - Vorbis audio decoder
  1630. - Macromedia ADPCM decoder
  1631. - Duck TrueMotion 2 video decoder
  1632. - support for decoding FLX and DTA extensions in FLIC files
  1633. - H.264 custom quantization matrices support
  1634. - ffserver fixed, it should now be usable again
  1635. - QDM2 audio decoder
  1636. - Real Cooker audio decoder
  1637. - TrueSpeech audio decoder
  1638. - WMA2 audio decoder fixed, now all files should play correctly
  1639. - RealAudio 14.4 and 28.8 decoders fixed
  1640. - JPEG-LS decoder
  1641. - build system improvements
  1642. - tabs and trailing whitespace removed from the codebase
  1643. - CamStudio video decoder
  1644. - AIFF/AIFF-C audio format, encoding and decoding
  1645. - ADTS AAC file reading and writing
  1646. - Creative VOC file reading and writing
  1647. - American Laser Games multimedia (*.mm) playback system
  1648. - Zip Motion Blocks Video decoder
  1649. - improved Theora/VP3 decoder
  1650. - True Audio (TTA) decoder
  1651. - AVS demuxer and video decoder
  1652. - JPEG-LS encoder
  1653. - Smacker demuxer and decoder
  1654. - NuppelVideo/MythTV demuxer and RTjpeg decoder
  1655. - KMVC decoder
  1656. - MPEG-2 intra VLC support
  1657. - MPEG-2 4:2:2 encoder
  1658. - Flash Screen Video decoder
  1659. - GXF demuxer
  1660. - Chinese AVS decoder
  1661. - GXF muxer
  1662. - MXF demuxer
  1663. - VC-1/WMV3/WMV9 video decoder
  1664. - MacIntel support
  1665. - AviSynth support
  1666. - VMware video decoder
  1667. - VP5 video decoder
  1668. - VP6 video decoder
  1669. - WavPack lossless audio decoder
  1670. - Targa (.TGA) picture decoder
  1671. - Vorbis audio encoder
  1672. - Delphine Software .cin demuxer/audio and video decoder
  1673. - Tiertex .seq demuxer/video decoder
  1674. - MTV demuxer
  1675. - TIFF picture encoder and decoder
  1676. - GIF picture decoder
  1677. - Intel Music Coder decoder
  1678. - Zip Motion Blocks Video encoder
  1679. - Musepack decoder
  1680. - Flash Screen Video encoder
  1681. - Theora encoding via libtheora
  1682. - BMP encoder
  1683. - WMA encoder
  1684. - GSM-MS encoder and decoder
  1685. - DCA decoder
  1686. - DXA demuxer and decoder
  1687. - DNxHD decoder
  1688. - Gamecube movie (.THP) playback system
  1689. - Blackfin optimizations
  1690. - Interplay C93 demuxer and video decoder
  1691. - Bethsoft VID demuxer and video decoder
  1692. - CRYO APC demuxer
  1693. - ATRAC3 decoder
  1694. - V.Flash PTX decoder
  1695. - RoQ muxer, RoQ audio encoder
  1696. - Renderware TXD demuxer and decoder
  1697. - extern C declarations for C++ removed from headers
  1698. - sws_flags command line option
  1699. - codebook generator
  1700. - RoQ video encoder
  1701. - QTRLE encoder
  1702. - OS/2 support removed and restored again
  1703. - AC-3 decoder
  1704. - NUT muxer
  1705. - additional SPARC (VIS) optimizations
  1706. - Matroska muxer
  1707. - slice-based parallel H.264 decoding
  1708. - Monkey's Audio demuxer and decoder
  1709. - AMV audio and video decoder
  1710. - DNxHD encoder
  1711. - H.264 PAFF decoding
  1712. - Nellymoser ASAO decoder
  1713. - Beam Software SIFF demuxer and decoder
  1714. - libvorbis Vorbis decoding removed in favor of native decoder
  1715. - IntraX8 (J-Frame) subdecoder for WMV2 and VC-1
  1716. - Ogg (Theora, Vorbis and FLAC) muxer
  1717. - The "device" muxers and demuxers are now in a new libavdevice library
  1718. - PC Paintbrush PCX decoder
  1719. - Sun Rasterfile decoder
  1720. - TechnoTrend PVA demuxer
  1721. - Linux Media Labs MPEG-4 (LMLM4) demuxer
  1722. - AVM2 (Flash 9) SWF muxer
  1723. - QT variant of IMA ADPCM encoder
  1724. - VFW grabber
  1725. - iPod/iPhone compatible mp4 muxer
  1726. - Mimic decoder
  1727. - MSN TCP Webcam stream demuxer
  1728. - RL2 demuxer / decoder
  1729. - IFF demuxer
  1730. - 8SVX audio decoder
  1731. - non-recursive Makefiles
  1732. - BFI demuxer
  1733. - MAXIS EA XA (.xa) demuxer / decoder
  1734. - BFI video decoder
  1735. - OMA demuxer
  1736. - MLP/TrueHD decoder
  1737. - Electronic Arts CMV decoder
  1738. - Motion Pixels Video decoder
  1739. - Motion Pixels MVI demuxer
  1740. - removed animated GIF decoder/demuxer
  1741. - D-Cinema audio muxer
  1742. - Electronic Arts TGV decoder
  1743. - Apple Lossless Audio Codec (ALAC) encoder
  1744. - AAC decoder
  1745. - floating point PCM encoder/decoder
  1746. - MXF muxer
  1747. - DV100 AKA DVCPRO HD decoder and demuxer
  1748. - E-AC-3 support added to AC-3 decoder
  1749. - Nellymoser ASAO encoder
  1750. - ASS and SSA demuxer and muxer
  1751. - liba52 wrapper removed
  1752. - SVQ3 watermark decoding support
  1753. - Speex decoding via libspeex
  1754. - Electronic Arts TGQ decoder
  1755. - RV40 decoder
  1756. - QCELP / PureVoice decoder
  1757. - RV30 decoder
  1758. - hybrid WavPack support
  1759. - R3D REDCODE demuxer
  1760. - ALSA support for playback and record
  1761. - Electronic Arts TQI decoder
  1762. - OpenJPEG based JPEG 2000 decoder
  1763. - NC (NC4600) camera file demuxer
  1764. - Gopher client support
  1765. - MXF D-10 muxer
  1766. - generic metadata API
  1767. - flash ScreenVideo2 encoder
  1768. version 0.4.9-pre1:
  1769. - DV encoder, DV muxer
  1770. - Microsoft RLE video decoder
  1771. - Microsoft Video-1 decoder
  1772. - Apple Animation (RLE) decoder
  1773. - Apple Graphics (SMC) decoder
  1774. - Apple Video (RPZA) decoder
  1775. - Cinepak decoder
  1776. - Sega FILM (CPK) file demuxer
  1777. - Westwood multimedia support (VQA & AUD files)
  1778. - Id Quake II CIN playback support
  1779. - 8BPS video decoder
  1780. - FLIC playback support
  1781. - RealVideo 2.0 (RV20) decoder
  1782. - Duck TrueMotion v1 (DUCK) video decoder
  1783. - Sierra VMD demuxer and video decoder
  1784. - MSZH and ZLIB decoder support
  1785. - SVQ1 video encoder
  1786. - AMR-WB support
  1787. - PPC optimizations
  1788. - rate distortion optimal cbp support
  1789. - rate distorted optimal ac prediction for MPEG-4
  1790. - rate distorted optimal lambda->qp support
  1791. - AAC encoding with libfaac
  1792. - Sunplus JPEG codec (SP5X) support
  1793. - use Lagrange multiplier instead of QP for ratecontrol
  1794. - Theora/VP3 decoding support
  1795. - XA and ADX ADPCM codecs
  1796. - export MPEG-2 active display area / pan scan
  1797. - Add support for configuring with IBM XLC
  1798. - floating point AAN DCT
  1799. - initial support for zygo video (not complete)
  1800. - RGB ffv1 support
  1801. - new audio/video parser API
  1802. - av_log() system
  1803. - av_read_frame() and av_seek_frame() support
  1804. - missing last frame fixes
  1805. - seek by mouse in ffplay
  1806. - noise reduction of DCT coefficients
  1807. - H.263 OBMC & 4MV support
  1808. - H.263 alternative inter vlc support
  1809. - H.263 loop filter
  1810. - H.263 slice structured mode
  1811. - interlaced DCT support for MPEG-2 encoding
  1812. - stuffing to stay above min_bitrate
  1813. - MB type & QP visualization
  1814. - frame stepping for ffplay
  1815. - interlaced motion estimation
  1816. - alternate scantable support
  1817. - SVCD scan offset support
  1818. - closed GOP support
  1819. - SSE2 FDCT
  1820. - quantizer noise shaping
  1821. - G.726 ADPCM audio codec
  1822. - MS ADPCM encoding
  1823. - multithreaded/SMP motion estimation
  1824. - multithreaded/SMP encoding for MPEG-1/MPEG-2/MPEG-4/H.263
  1825. - multithreaded/SMP decoding for MPEG-2
  1826. - FLAC decoder
  1827. - Metrowerks CodeWarrior suppport
  1828. - H.263+ custom pcf support
  1829. - nicer output for 'ffmpeg -formats'
  1830. - Matroska demuxer
  1831. - SGI image format, encoding and decoding
  1832. - H.264 loop filter support
  1833. - H.264 CABAC support
  1834. - nicer looking arrows for the motion vector visualization
  1835. - improved VCD support
  1836. - audio timestamp drift compensation
  1837. - MPEG-2 YUV 422/444 support
  1838. - polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample
  1839. - better image scaling
  1840. - H.261 support
  1841. - correctly interleave packets during encoding
  1842. - VIS optimized motion compensation
  1843. - intra_dc_precision>0 encoding support
  1844. - support reuse of motion vectors/MB types/field select values of the source video
  1845. - more accurate deblock filter
  1846. - padding support
  1847. - many optimizations and bugfixes
  1848. - FunCom ISS audio file demuxer and according ADPCM decoding
  1849. version 0.4.8:
  1850. - MPEG-2 video encoding (Michael)
  1851. - Id RoQ playback subsystem (Mike Melanson and Tim Ferguson)
  1852. - Wing Commander III Movie (.mve) file playback subsystem (Mike Melanson
  1853. and Mario Brito)
  1854. - Xan DPCM audio decoder (Mario Brito)
  1855. - Interplay MVE playback subsystem (Mike Melanson)
  1856. - Duck DK3 and DK4 ADPCM audio decoders (Mike Melanson)
  1857. version 0.4.7:
  1858. - RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from mplayerhq
  1859. (originally from public domain player for Amiga at http://www.honeypot.net/audio)
  1860. - current version now also compiles with older GCC (Fabrice)
  1861. - 4X multimedia playback system including 4xm file demuxer (Mike
  1862. Melanson), and 4X video and audio codecs (Michael)
  1863. - Creative YUV (CYUV) decoder (Mike Melanson)
  1864. - FFV1 codec (our very simple lossless intra only codec, compresses much better
  1865. than HuffYUV) (Michael)
  1866. - ASV1 (Asus), H.264, Intel indeo3 codecs have been added (various)
  1867. - tiny PNG encoder and decoder, tiny GIF decoder, PAM decoder (PPM with
  1868. alpha support), JPEG YUV colorspace support. (Fabrice Bellard)
  1869. - ffplay has been replaced with a newer version which uses SDL (optionally)
  1870. for multiplatform support (Fabrice)
  1871. - Sorenson Version 3 codec (SVQ3) support has been added (decoding only) - donated
  1872. by anonymous
  1873. - AMR format has been added (Johannes Carlsson)
  1874. - 3GP support has been added (Johannes Carlsson)
  1875. - VP3 codec has been added (Mike Melanson)
  1876. - more MPEG-1/2 fixes
  1877. - better multiplatform support, MS Visual Studio fixes (various)
  1878. - AltiVec optimizations (Magnus Damn and others)
  1879. - SH4 processor support has been added (BERO)
  1880. - new public interfaces (avcodec_get_pix_fmt) (Roman Shaposhnick)
  1881. - VOB streaming support (Brian Foley)
  1882. - better MP3 autodetection (Andriy Rysin)
  1883. - qpel encoding (Michael)
  1884. - 4mv+b frames encoding finally fixed (Michael)
  1885. - chroma ME (Michael)
  1886. - 5 comparison functions for ME (Michael)
  1887. - B-frame encoding speedup (Michael)
  1888. - WMV2 codec (unfinished - Michael)
  1889. - user specified diamond size for EPZS (Michael)
  1890. - Playstation STR playback subsystem, still experimental (Mike and Michael)
  1891. - ASV2 codec (Michael)
  1892. - CLJR decoder (Alex)
  1893. .. And lots more new enhancements and fixes.
  1894. version 0.4.6:
  1895. - completely new integer only MPEG audio layer 1/2/3 decoder rewritten
  1896. from scratch
  1897. - Recoded DCT and motion vector search with gcc (no longer depends on nasm)
  1898. - fix quantization bug in AC3 encoder
  1899. - added PCM codecs and format. Corrected WAV/AVI/ASF PCM issues
  1900. - added prototype ffplay program
  1901. - added GOB header parsing on H.263/H.263+ decoder (Juanjo)
  1902. - bug fix on MCBPC tables of H.263 (Juanjo)
  1903. - bug fix on DC coefficients of H.263 (Juanjo)
  1904. - added Advanced Prediction Mode on H.263/H.263+ decoder (Juanjo)
  1905. - now we can decode H.263 streams found in QuickTime files (Juanjo)
  1906. - now we can decode H.263 streams found in VIVO v1 files(Juanjo)
  1907. - preliminary RTP "friendly" mode for H.263/H.263+ coding. (Juanjo)
  1908. - added GOB header for H.263/H.263+ coding on RTP mode (Juanjo)
  1909. - now H.263 picture size is returned on the first decoded frame (Juanjo)
  1910. - added first regression tests
  1911. - added MPEG-2 TS demuxer
  1912. - new demux API for libav
  1913. - more accurate and faster IDCT (Michael)
  1914. - faster and entropy-controlled motion search (Michael)
  1915. - two pass video encoding (Michael)
  1916. - new video rate control (Michael)
  1917. - added MSMPEG4V1, MSMPEGV2 and WMV1 support (Michael)
  1918. - great performance improvement of video encoders and decoders (Michael)
  1919. - new and faster bit readers and vlc parsers (Michael)
  1920. - high quality encoding mode: tries all macroblock/VLC types (Michael)
  1921. - added DV video decoder
  1922. - preliminary RTP/RTSP support in ffserver and libavformat
  1923. - H.263+ AIC decoding/encoding support (Juanjo)
  1924. - VCD MPEG-PS mode (Juanjo)
  1925. - PSNR stuff (Juanjo)
  1926. - simple stats output (Juanjo)
  1927. - 16-bit and 15-bit RGB/BGR/GBR support (Bisqwit)
  1928. version 0.4.5:
  1929. - some header fixes (Zdenek Kabelac <kabi at informatics.muni.cz>)
  1930. - many MMX optimizations (Nick Kurshev <nickols_k at mail.ru>)
  1931. - added configure system (actually a small shell script)
  1932. - added MPEG audio layer 1/2/3 decoding using LGPL'ed mpglib by
  1933. Michael Hipp (temporary solution - waiting for integer only
  1934. decoder)
  1935. - fixed VIDIOCSYNC interrupt
  1936. - added Intel H.263 decoding support ('I263' AVI fourCC)
  1937. - added Real Video 1.0 decoding (needs further testing)
  1938. - simplified image formats again. Added PGM format (=grey
  1939. pgm). Renamed old PGM to PGMYUV.
  1940. - fixed msmpeg4 slice issues (tell me if you still find problems)
  1941. - fixed OpenDivX bugs with newer versions (added VOL header decoding)
  1942. - added support for MPlayer interface
  1943. - added macroblock skip optimization
  1944. - added MJPEG decoder
  1945. - added mmx/mmxext IDCT from libmpeg2
  1946. - added pgmyuvpipe, ppm, and ppm_pipe formats (original patch by Celer
  1947. <celer at shell.scrypt.net>)
  1948. - added pixel format conversion layer (e.g. for MJPEG or PPM)
  1949. - added deinterlacing option
  1950. - MPEG-1/2 fixes
  1951. - MPEG-4 vol header fixes (Jonathan Marsden <snmjbm at pacbell.net>)
  1952. - ARM optimizations (Lionel Ulmer <lionel.ulmer at free.fr>).
  1953. - Windows porting of file converter
  1954. - added MJPEG raw format (input/output)
  1955. - added JPEG image format support (input/output)
  1956. version 0.4.4:
  1957. - fixed some std header definitions (Bjorn Lindgren
  1958. <bjorn.e.lindgren at telia.com>).
  1959. - added MPEG demuxer (MPEG-1 and 2 compatible).
  1960. - added ASF demuxer
  1961. - added prototype RM demuxer
  1962. - added AC3 decoding (done with libac3 by Aaron Holtzman)
  1963. - added decoding codec parameter guessing (.e.g. for MPEG, because the
  1964. header does not include them)
  1965. - fixed header generation in MPEG-1, AVI and ASF muxer: wmplayer can now
  1966. play them (only tested video)
  1967. - fixed H.263 white bug
  1968. - fixed phase rounding in img resample filter
  1969. - add MMX code for polyphase img resample filter
  1970. - added CPU autodetection
  1971. - added generic title/author/copyright/comment string handling (ASF and RM
  1972. use them)
  1973. - added SWF demux to extract MP3 track (not usable yet because no MP3
  1974. decoder)
  1975. - added fractional frame rate support
  1976. - codecs are no longer searched by read_header() (should fix ffserver
  1977. segfault)
  1978. version 0.4.3:
  1979. - BGR24 patch (initial patch by Jeroen Vreeken <pe1rxq at amsat.org>)
  1980. - fixed raw yuv output
  1981. - added motion rounding support in MPEG-4
  1982. - fixed motion bug rounding in MSMPEG4
  1983. - added B-frame handling in video core
  1984. - added full MPEG-1 decoding support
  1985. - added partial (frame only) MPEG-2 support
  1986. - changed the FOURCC code for H.263 to "U263" to be able to see the
  1987. +AVI/H.263 file with the UB Video H.263+ decoder. MPlayer works with
  1988. this +codec ;) (JuanJo).
  1989. - Halfpel motion estimation after MB type selection (JuanJo)
  1990. - added pgm and .Y.U.V output format
  1991. - suppressed 'img:' protocol. Simply use: /tmp/test%d.[pgm|Y] as input or
  1992. output.
  1993. - added pgmpipe I/O format (original patch from Martin Aumueller
  1994. <lists at reserv.at>, but changed completely since we use a format
  1995. instead of a protocol)
  1996. version 0.4.2:
  1997. - added H.263/MPEG-4/MSMPEG4 decoding support. MPEG-4 decoding support
  1998. (for OpenDivX) is almost complete: 8x8 MVs and rounding are
  1999. missing. MSMPEG4 support is complete.
  2000. - added prototype MPEG-1 decoder. Only I- and P-frames handled yet (it
  2001. can decode ffmpeg MPEGs :-)).
  2002. - added libavcodec API documentation (see apiexample.c).
  2003. - fixed image polyphase bug (the bottom of some images could be
  2004. greenish)
  2005. - added support for non clipped motion vectors (decoding only)
  2006. and image sizes non-multiple of 16
  2007. - added support for AC prediction (decoding only)
  2008. - added file overwrite confirmation (can be disabled with -y)
  2009. - added custom size picture to H.263 using H.263+ (Juanjo)
  2010. version 0.4.1:
  2011. - added MSMPEG4 (aka DivX) compatible encoder. Changed default codec
  2012. of AVI and ASF to DIV3.
  2013. - added -me option to set motion estimation method
  2014. (default=log). suppressed redundant -hq option.
  2015. - added options -acodec and -vcodec to force a given codec (useful for
  2016. AVI for example)
  2017. - fixed -an option
  2018. - improved dct_quantize speed
  2019. - factorized some motion estimation code
  2020. version 0.4.0:
  2021. - removing grab code from ffserver and moved it to ffmpeg. Added
  2022. multistream support to ffmpeg.
  2023. - added timeshifting support for live feeds (option ?date=xxx in the
  2024. URL)
  2025. - added high quality image resize code with polyphase filter (need
  2026. mmx/see optimization). Enable multiple image size support in ffserver.
  2027. - added multi live feed support in ffserver
  2028. - suppressed master feature from ffserver (it should be done with an
  2029. external program which opens the .ffm url and writes it to another
  2030. ffserver)
  2031. - added preliminary support for video stream parsing (WAV and AVI half
  2032. done). Added proper support for audio/video file conversion in
  2033. ffmpeg.
  2034. - added preliminary support for video file sending from ffserver
  2035. - redesigning I/O subsystem: now using URL based input and output
  2036. (see avio.h)
  2037. - added WAV format support
  2038. - added "tty user interface" to ffmpeg to stop grabbing gracefully
  2039. - added MMX/SSE optimizations to SAD (Sums of Absolutes Differences)
  2040. (Juan J. Sierralta P. a.k.a. "Juanjo" <juanjo at atmlab.utfsm.cl>)
  2041. - added MMX DCT from mpeg2_movie 1.5 (Juanjo)
  2042. - added new motion estimation algorithms, log and phods (Juanjo)
  2043. - changed directories: libav for format handling, libavcodec for
  2044. codecs
  2045. version 0.3.4:
  2046. - added stereo in MPEG audio encoder
  2047. version 0.3.3:
  2048. - added 'high quality' mode which use motion vectors. It can be used in
  2049. real time at low resolution.
  2050. - fixed rounding problems which caused quality problems at high
  2051. bitrates and large GOP size
  2052. version 0.3.2: small fixes
  2053. - ASF fixes
  2054. - put_seek bug fix
  2055. version 0.3.1: added avi/divx support
  2056. - added AVI support
  2057. - added MPEG-4 codec compatible with OpenDivX. It is based on the H.263 codec
  2058. - added sound for flash format (not tested)
  2059. version 0.3: initial public release