Changelog 61 KB

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