Changelog 76 KB

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