Changelog 73 KB

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