Changelog 67 KB

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