Changelog 66 KB

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