Changelog 71 KB

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