Changelog 66 KB

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