Changelog 67 KB

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