Changelog 65 KB

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