Changelog 99 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304
  1. Entries are sorted chronologically from oldest to youngest within each release,
  2. releases are sorted from youngest to oldest.
  3. version 3.3.9:
  4. - avcodec/pngdec: Check compression method
  5. - fftools/ffmpeg: Repair reinit_filter feature
  6. - avcodec/shorten: Fix integer overflow with offset
  7. - avcodec/cavsdec: Propagate error codes inside decode_mb_i()
  8. - avcodec/mpegaudio_parser: Consume more than 0 bytes in case of the unsupported mp3adu case
  9. - avutil/integer: Fix integer overflow in av_mul_i()
  10. - avcodec/msrle: Check that the input is large enough to contain a end of picture code
  11. - avcodec/jpeg2000dec: Fix off by 1 error in JPEG2000_PGOD_CPRL handling
  12. - avcodec/mpeg4videodec: Fix typo in sprite delta check
  13. - avcodec/h264_cavlc: Check mb_skip_run
  14. - avcodec/ra144: Fix integer overflow in add_wav()
  15. - avformat/utils: Never store negative values in last_IP_duration
  16. - avformat/utils: Fix integer overflow in discontinuity check
  17. - avcodec/unary: Improve get_unary() docs
  18. - avcodec/dvdsubdec: Sanity check len in decode_rle()
  19. - avcodec/mpeg4videodec: Fix undefined shift in get_amv()
  20. - avcodec/zmbv: Check that the decompressed data size is correct
  21. - avcodec/zmbv: Update decomp_len in raw frames
  22. - avcodec/shorten: Fix bitstream end check in read_header()
  23. - avcodec/dvdsubdec: Avoid branch in decode_run_8bit()
  24. - avcodec/h264_refs: Document last if() in ff_h264_execute_ref_pic_marking()
  25. - avcodec/ra144: Fix undefined integer overflow in add_wav()
  26. - avcodec/indeo4: Check dimensions in decode_pic_hdr()
  27. - avformat/mov: Error on too large stsd entry counts.
  28. - examples: Fix use of AV_CODEC_FLAG_GLOBAL_HEADER
  29. - avcodec/hq_hqa: Check remaining input bits in hqa_decode_mb()
  30. - avcodec/vb: Check for end of bytestream before reading blocktype
  31. - avcodec/snowdec: Fix integer overflow with motion vector residual
  32. - avformat/nsvdec: Do not parse multiple NSVf
  33. - avformat/mlvdec: read_string() received unsigned size, make the argument unsigned
  34. - avformat/rmdec: Fix EOF check in the stream loop in ivr_read_header()
  35. - avcodec/scpr: Check for min > max in decompress_p()
  36. - avcodec/shorten: Fix signed 32bit overflow in shift in shorten_decode_frame()
  37. - avcodec/shorten: Fix integer overflow in residual/LPC combination
  38. - avcodec/shorten: Check verbatim length
  39. - avcodec/mpegaudio_parser: Initialize poutbuf*
  40. - avcodec/aacpsdsp_template: Fix integer overflow in ps_stereo_interpolate_c()
  41. - avformat/flvenc: Check audio packet size
  42. - lavc/svq3: Fix regression decoding some files.
  43. - avcodec/qtrle: Check remaining bytestream in qtrle_decode_XYbpp()
  44. - avcodec/diracdec: Check bytes count in else branch in decode_lowdelay() too
  45. - avcodec/diracdec: Check slice numbers for overflows in relation to picture dimensions
  46. - avcodec/diracdec: Change frame_number to 64bit as its a 32bit from the bitstream and we also have a -1 special case
  47. - avcodec/dirac_dwt_template: Fix several integer overflows in horizontal_compose_daub97i()
  48. - avcodec/diracdec: Prevent integer overflow in intermediate in global_mv()
  49. - swresample/swresample: Fix input channel count in resample_first computation
  50. - avutil/pixfmt: Document chroma plane size for odd resolutions
  51. - avcodec/cuviddec: properly take deinterlacing and display delay into account for buffer_full check
  52. - avcodec/bitstream_filters: check the input argument of av_bsf_get_by_name() for NULL
  53. version 3.3.8:
  54. - avcodec/dvdsub_parser: Allocate input padding
  55. - avcodec/dvdsub_parser: Init output buf/size
  56. - avcodec/imgconvert: fix possible null pointer dereference
  57. - avcodec/dirac_dwt_template: Fix signedness regression in interleave()
  58. - avformat/movenc: Write version 2 of audio atom if channels is not known
  59. - swresample/arm: rename labels to fix xcode build error
  60. - avformat/movenc: Check input sample count
  61. - avcodec/mjpegdec: Check for odd progressive RGB
  62. - avformat/movenc: Check that frame_types other than EAC3_FRAME_TYPE_INDEPENDENT have a supported substream id
  63. - avcodec/vp8_parser: Do not leave data/size uninitialized
  64. - avformat/mms: Add missing chunksize check
  65. - avformat/pva: Check for EOF before retrying in read_part_of_packet()
  66. - avformat/rmdec: Do not pass mime type in rm_read_multi() to ff_rm_read_mdpr_codecdata()
  67. - avcodec/indeo4: Check for end of bitstream in decode_mb_info()
  68. - avcodec/shorten: Fix undefined addition in shorten_decode_frame()
  69. - avcodec/shorten: Fix undefined integer overflow
  70. - avcodec/jpeg2000dec: Fixes invalid shifts in jpeg2000_decode_packets_po_iteration()
  71. - avcodec/jpeg2000dec: Check that there are enough bytes for all tiles
  72. - avformat/movenc: Do not pass AVCodecParameters in avpriv_request_sample
  73. - avcodec/escape124: Fix spelling errors in comment
  74. - avcodec/ra144: Fix integer overflow in ff_eval_refl()
  75. - avcodec/cscd: Check output buffer size for lzo.
  76. - avcodec/escape124: Check buf_size against num_superblocks
  77. - avcodec/h264_parser: Reduce needed history for parsing mb index
  78. - avcodec/mjpegdec: Check for end of bitstream in ljpeg_decode_rgb_scan()
  79. - avcodec/aacdec_fixed: Fix undefined integer overflow in apply_independent_coupling_fixed()
  80. - avcodec/dirac_dwt_template: Fix undefined behavior in interleave()
  81. - avutil/common: Fix undefined behavior in av_clip_uintp2_c()
  82. - fftools/ffmpeg: Fallback to duration if sample rate is unavailable
  83. - avformat/mov: Only set pkt->duration to non negative values
  84. - avcodec/h264_ps: Move MAX_LOG2_MAX_FRAME_NUM to header so it can be used in h264_sei
  85. - avcodec/h264_mc_template: Only prefetch motion if the list is used.
  86. - avcodec/xwddec: Use ff_set_dimensions()
  87. - avcodec/wavpack: Fix overflow in adding tail
  88. - avcodec/shorten: Fix multiple integer overflows
  89. - avcodec/shorten: Fix undefined shift in fix_bitshift()
  90. - avcodec/shorten: Fix a negative left shift in shorten_decode_frame()
  91. - avcodec/shorten: Sanity check nmeans
  92. - avcodec/shorten: Check non COMM chunk len before skip in decode_aiff_header()
  93. - avcodec/mjpegdec: Fix integer overflow in ljpeg_decode_rgb_scan()
  94. - avcodec/truemotion2: Fix overflow in tm2_apply_deltas()
  95. - avcodec/opus_silk: Change silk_lsf2lpc() slightly toward silk/NLSF2A.c
  96. - avcodec/amrwbdec: Fix division by 0 in find_hb_gain()
  97. - avformat/mov: replace a value error by clipping into valid range in mov_read_stsc()
  98. - avformat/mov: Break out early if chunk_count is 0 in mov_build_index()
  99. - avcodec/fic: Avoid some magic numbers related to cursors
  100. - avcodec/g2meet: ask for sample with overflowing RGB
  101. - avcodec/aacdec_fixed: use 64bit to avoid overflow in rounding in apply_dependent_coupling_fixed()
  102. - oavcodec/aacpsdsp_template: Use unsigned for hs0X to prevent undefined behavior
  103. - avcodec/g723_1dec: Clip bits2 in both directions
  104. - avcodec/mpeg4videoenc: Use 64 bit for times in mpeg4_encode_gop_header()
  105. - avcodec/mlpdec: Only change noise_type if the related fields are valid
  106. - indeo4: Decode all or nothing of a band header.
  107. - avformat/mov: Only fail for STCO/STSC contradictions if both exist
  108. - avcodec/dirac_dwt: Fix integer overflow in COMPOSE_DD97iH0 / COMPOSE_DD137iL0
  109. - avcodec/fic: Check available input space for cursor
  110. - avcodec/g2meet: Check RGB upper limit
  111. - avcodec/jpeg2000dec: Fix undefined shift in the jpeg2000_decode_packets_po_iteration() CPRL case
  112. - avcodec/jpeg2000dec: Skip init for component in CPRL if nothing is to be done
  113. - avcodec/g2meet: Change order of operations to avoid undefined behavior
  114. - avcodec/flac_parser: Fix infinite loop
  115. - avcodec/wavpack: Fix integer overflow in DEC_MED() / INC_MED()
  116. - avcodec/error_resilience: Fix integer overflow in filter181()
  117. - avcodec/h263dec: Check slice_ret in mspeg4 slice loop
  118. - avcodec/elsdec: Fix memleaks
  119. - avcodec/vc1_block: simplify ac_val computation
  120. - avcodec/ffv1enc: Check that the crc + version combination is supported
  121. - lavf/http.c: Free allocated client URLContext in case of error.
  122. - avcodec/dsicinvideo: Fail if there is only a small fraction of the data available that comprises a full frame
  123. - avcodec/dsicinvideo: Propagate errors from cin_decode_rle()
  124. - avcodec/dfa: Check dimension against maximum
  125. - avcodec/cinepak: Skip empty frames
  126. - avcodec/cinepak: move some checks prior to frame allocation
  127. - swresample/arm: remove unintentional relocation.
  128. - doc/APIchanges: Fix typos in hashes
  129. - avdevice/iec61883: free the private context at the end
  130. - avdevice/iec61883: return reference counted packets
  131. version 3.3.7:
  132. - avformat/utils: Check cur_dts in update_initial_timestamps() more
  133. - avcodec/utils: Enforce minimum width also for VP5/6
  134. - avcodec/truemotion2: Propagate out of bounds error from GET_TOK()
  135. - avformat/utils: Fix integer overflow in end time calculation in update_stream_timings()
  136. - avformat/utils: fix mixed declarations and code
  137. - avcodec/mjpegdec: Check input buffer size.
  138. - avcodec/h264_slice: Fix integer overflow with last_poc
  139. - avformat/mov: Fix extradata memleak
  140. - lavc/libopusdec: Allow avcodec_open2 to call .close
  141. - avcodec/movtextdec: Check style_start/end
  142. - avcodec/aacsbr_fixed: Fix integer overflow in sbr_hf_assemble()
  143. - libavcodec/rv34: error out earlier on missing references
  144. - swresample/swresample: Fix for seg fault in swr_convert_internal() -> sum2_float during dithering.
  145. - avcodec/aacdec_fixed: Fix integer overflow in apply_independent_coupling_fixed()
  146. - avcodec/cscd: Error out when LZ* decompression fails
  147. - avcodec/imgconvert: Fix loss mask bug in avcodec_find_best_pix_fmt_of_list()
  148. - avfilter/vf_signature: use av_strlcpy()
  149. - avcodec/utvideodec: Set pro flag based on fourcc
  150. - avcodec/wmalosslessdec: Fix null pointer dereference in decode_frame()
  151. - avcodec/tableprint_vlc: Fix build failure with --enable-hardcoded-tables
  152. - avformat/mov: Move +1 in check to avoid hypothetical overflow in add_ctts_entry()
  153. - avcodec/get_bits: Make sure the input bitstream with padding can be addressed
  154. - avformat/mov: Check STSC and remove invalid entries
  155. - avcodec/nuv: rtjpeg with dimensions less than 16 would result in no decoded pixels thus reject it
  156. - avcodec/nuv: Check for minimum input size for uncomprssed and rtjpeg
  157. - avcodec/wmalosslessdec: Reset num_saved_bits on error path
  158. - avformat/mov: Fix integer overflows related to sample_duration
  159. - avformat/oggparsedaala: Do not adjust AV_NOPTS_VALUE
  160. - avformat/oggparseogm: Check lb against psize
  161. - avformat/oggparseogm: Fix undefined shift in ogm_packet()
  162. - avformat/avidec: Fix integer overflow in cum_len check
  163. - avformat/oggparsetheora: Do not adjust AV_NOPTS_VALUE
  164. - avformat/utils: Fix integer overflow of fps_first/last_dts
  165. - avformat/oggdec: Fix metadata memleak on multiple headers
  166. - libavformat/oggparsevorbis: Fix memleak on multiple headers
  167. - avcodec/truemotion2rt: Check input buffer size
  168. - avcodec/g2meet: Check tile dimensions with av_image_check_size2()
  169. - avcodec/exr: fix invalid shift in unpack_14()
  170. - avcodec/bintext: sanity check dimensions
  171. - avcodec/utvideodec: Check subsample factors
  172. - avcodec/smc: Check input packet size
  173. - avcodec/cavsdec: Check alpha/beta offset
  174. - avcodec/diracdec: Fix integer overflow in mv computation
  175. - avcodec/h264_parse: Clear invalid chroma weights in ff_h264_pred_weight_table()
  176. - avcodec/aacdec_templat: Fix integer overflow in apply_ltp()
  177. - avcodec/jpeg2000dwt: Fix integer overflows in sr_1d53()
  178. - avcodec/diracdec: Use int64 in global mv to prevent overflow
  179. - avcodec/dxtory: Remove code that corrupts dimensions
  180. - avcodec/dirac_dwt_template: Fix Integer overflow in horizontal_compose_dd137i()
  181. - avcodec/hevcdec: Check luma/chroma_log2_weight_denom
  182. - avcodec/jpeg2000dec: Use av_image_check_size2()
  183. - avcodec/vp8: Check for bitstream end before vp7_fade_frame()
  184. - avcodec/exr: Check remaining bits in last get code loop
  185. - avutil/common: Fix integer overflow in av_clip_uint8_c() and av_clip_uint16_c()
  186. - avcodec/h264_cabac: Tighten allowed coeff_abs range
  187. - avcodec/h264_cavlc: Set valid qscale value in ff_h264_decode_mb_cavlc()
  188. - avcodec/vp3: Error out on invalid num_coeffs in unpack_vlcs()
  189. - avcodec/mpeg4videodec: Ignore multiple VOL headers
  190. - avcodec/vp3: Check eob_run
  191. - avcodec/pafvideo: Check allocated frame size
  192. - avcodec/scpr: Fix reading a pixel before the first
  193. - avcodec/mpeg2dec: Fix field selection for skipped macroblocks
  194. - avcodec/huffyuvdec: Check input buffer size
  195. - avcodec/utvideodec: Fix bytes left check in decode_frame()
  196. - avcodec/wavpack: Fix integer overflow in FFABS
  197. - avcodec/aacsbr_fixed: Fix overflows in rounding in sbr_hf_assemble()
  198. - avcodec/exr: Fix memleaks in decode_header()
  199. - avcodec/dirac_dwt: Fix several integer overflows
  200. - avcodec/indeo5: Do not leave frame_type set to an invalid value
  201. - avcodec/hevc_ps: Check log2_sao_offset_scale_*
  202. - avcodec/hevc_ps: extract SPS fields required for hvcC construction
  203. - avcodec/mpeg4videodec: Avoid possibly aliasing violating casts
  204. - avcodec/get_bits: Document the return code of get_vlc2()
  205. - avcodec/mpeg4videodec: Check mb_num also against 0
  206. - avfilter/vf_transpose: Fix used plane count.
  207. - avcodec/hevc_cabac: Check prefix so as to avoid invalid shifts in coeff_abs_level_remaining_decode()
  208. - avcodec/mjpegdec: Fix integer overflow in DC dequantization
  209. - avcodec/dxtory: Fix bits left checks
  210. - avcodec/hevc_cabac: Move prefix check in coeff_abs_level_remaining_decode() down
  211. - avcodec/truemotion2: Fix integer overflow in TM2_RECALC_BLOCK()
  212. - avcodec/snowdec: Fix integer overflow before htaps check
  213. - avcodec/ulti: Check number of blocks at init
  214. - avcodec/jpeg2000: Check sum of sizes of band->prec before allocating
  215. - avcodec/ac3dec_fixed: Fix integer overflow in scale_coefs()
  216. - avformat/lrcdec: Fix memory leak in lrc_read_header()
  217. - avformat/matroskadec: Fix float-cast-overflow undefined behavior in matroska_parse_tracks()
  218. - configure: bump year
  219. - avcodec/utils: Avoid hardcoding duplicated types in sizeof()
  220. - avcodec/arm/sbrdsp_neon: Use a free register instead of putting 2 things in one
  221. - avcodec/h264addpx_template: Fixes integer overflows
  222. - avcodec/dirac_dwt: Fix overflows in COMPOSE_HAARiH0/COMPOSE_HAARiL0
  223. - avcodec/diracdec: Fix integer overflow with quant
  224. - avcodec/opus_parser: Check payload_len in parse_opus_ts_header()
  225. - avcodec/jpeg2000dsp: Fix integer overflows in ict_int()
  226. - avcodec/h264_slice: Do not attempt to render into frames already output
  227. - avcodec/dnxhddec: Check dc vlc
  228. - avformat/hvcc: zero initialize the nal buffers past the last written byte
  229. - swresample/rematrix: fix update of channel matrix if input or output layout is undefined
  230. - configure: add support for libnpp* from cuda sdk 9
  231. - avcodec/nvenc: also clear data pointer after unregistering a resource
  232. - avcodec/nvenc: add some more error case checks
  233. - avcodec/nvenc: unregister input resource when unmapping
  234. - avcodec/nvenc: refcount input frame mappings
  235. - avformat/libssh: check the user provided a password before trying to use it
  236. version 3.3.6:
  237. - x264: Support version 153
  238. - avcodec/exr: Check buf_size more completely
  239. - avcodec/flacdec: Fix overflow in multiplication in decode_subframe_fixed()
  240. - avcodec/hevcdsp_template: Fix Invalid shifts in put_hevc_qpel_bi_w_h() and put_hevc_qpel_bi_w_w()
  241. - avcodec/flacdec: avoid undefined shift
  242. - avcodec/hevcdsp_template.c: Fix undefined shift in FUNC(dequant)
  243. - avcodec/dirac_dwt: Fix integer overflow in COMPOSE_DD97iH0() and COMPOSE_DD137iL0()
  244. - avcodec/hevc_cabac: Fix integer overflow in ff_hevc_cu_qp_delta_abs()
  245. - tests/audiomatch: Add missing return code at the end of main()
  246. - avcodec/hevc_sei: Fix integer overflows in decode_nal_sei_message()
  247. - avcodec/hevcdsp_template: Fix undefined shift in put_hevc_qpel_bi_w_hv()
  248. - libavfilter/af_dcshift.c: Fixed repeated spelling error
  249. - avfilter/formats: fix wrong function name in error message
  250. - avcodec/amrwbdec: Fix division by 0 in voice_factor()
  251. - avcodec/diracdsp: Fix integer overflow in PUT_SIGNED_RECT_CLAMPED()
  252. - avcodec/dirac_dwt: Fix integer overflows in COMPOSE_DAUB97*
  253. - avcodec/extract_extradata_bsf: Fix leak discovered via fuzzing
  254. - avcodec/vorbis: Fix another 1 << 31 > int32_t::max() with 1u.
  255. - Don't manipulate duration when it's AV_NOPTS_VALUE.
  256. - avcodec/vorbis: 1 << 31 > int32_t::max(), so use 1u << 31 instead.
  257. - avformat/utils: Prevent undefined shift with wrap_bits > 64.
  258. - avcodec/j2kenc: Fix out of array access in encode_cblk()
  259. - avcodec/hevcdsp_template: Fix undefined shift in put_hevc_epel_bi_w_h()
  260. - avcodec/mlpdsp: Fix signed integer overflow, 2nd try
  261. - avcodec/kgv1dec: Check that there is enough input for maximum RLE compression
  262. - avcodec/dirac_dwt: Fix integer overflow in COMPOSE_FIDELITYi*
  263. - avcodec/mpeg4videodec: Check also for negative versions in the validity check
  264. - Close ogg stream upon error when using AV_EF_EXPLODE.
  265. - Fix undefined shift on assumed 8-bit input.
  266. - Use ff_thread_once for fixed, float table init.
  267. - Fix leak of frame_duration_buffer in mov_fix_index().
  268. - avformat/mov: Propagate errors in mov_switch_root.
  269. - avcodec/hevcdsp_template: Fix invalid shift in put_hevc_epel_bi_w_v()
  270. - avcodec/mlpdsp: Fix undefined shift ff_mlp_pack_output()
  271. - avcodec/zmbv: Check that the buffer is large enough for mvec
  272. - avcodec/dirac_dwt: Fix integer overflow in COMPOSE_DD137iL0()
  273. - avcodec/wmv2dec: Check end of bitstream in parse_mb_skip() and ff_wmv2_decode_mb()
  274. - avcodec/snowdec: Check for remaining bitstream in decode_blocks()
  275. - avcodec/snowdec: Check intra block dc differences.
  276. - avformat/mov: Check size of STSC allocation
  277. - avcodec/vc2enc: Clear coef_buf on allocation
  278. - avcodec/h264dec: Fix potential array overread
  279. - avcodec/x86/mpegvideodsp: Fix signedness bug in need_emu
  280. - avcodec/aacpsdsp_template: Fix integer overflows in ps_decorrelate_c()
  281. - avcodec/aacdec_fixed: Fix undefined shift
  282. - avcodec/mdct_*: Fix integer overflow in addition in RESCALE()
  283. - avcodec/snowdec: Fix integer overflow in header parsing
  284. - avcodec/cngdec: Fix integer clipping
  285. - avcodec/sbrdsp_fixed: Fix integer overflow in shift in sbr_hf_g_filt_c()
  286. - avcodec/aacsbr_fixed: Fix division by zero in sbr_gain_calc()
  287. - avutil/softfloat: Add FLOAT_MIN
  288. - avcodec/h264idct_template: Fix integer overflows in ff_h264_idct8_add()
  289. - avcodec/xan: Check for bitstream end in xan_huffman_decode()
  290. - avcodec/exr: fix undefined shift in pxr24_uncompress()
  291. - avformat: Free the internal codec context at the end
  292. - avcodec/h264idct_template: Fix integer overflows in ff_h264_idct8_add()
  293. - avcodec/xan: Improve overlapping check
  294. - avcodec/aacdec_fixed: Fix integer overflow in apply_dependent_coupling_fixed()
  295. - avcodec/aacdec_fixed: Fix integer overflow in predict()
  296. - avcodec/jpeglsdec: Check for end of bitstream in ls_decode_line()
  297. - avcodec/jpeglsdec: Check ilv for being a supported value
  298. - lavfi/af_pan: fix sign handling in channel coefficient parser
  299. - vc2enc_dwt: pad the temporary buffer by the slice siz
  300. version 3.3.5:
  301. - ffserver: Fix off by 1 error in path
  302. - avcodec/snowdec: Check mv_scale
  303. - avcodec/pafvideo: Check for bitstream end in decode_0()
  304. - avcodec/ffv1dec: Fix out of array read in slice counting
  305. - avcodec/dirac_dwt: Fix integer overflow in COMPOSE_53iL0()
  306. - avcodec/mpeg_er: Clear mcsel in mpeg_er_decode_mb()
  307. - avcodec/mpeg4videodec: Use 64 bit intermediates for sprite delta
  308. - avcodec/x86/lossless_videoencdsp: Fix warning: signed dword value exceeds bounds
  309. - avcodec/x86/lossless_videoencdsp: Fix handling of small widths
  310. - avcodec/truemotion2: Fix integer overflows in tm2_high_chroma()
  311. - avcodec/aacdec_template: Clear tns present flag on error
  312. - avcodec/proresdec2: SKIP_BITS() does not work with len=32
  313. - avcodec/hevcdsp_template: Fix undefined shift
  314. - avcodec/jpeg2000: Check that codsty->log2_prec_widths/heights has been initialized
  315. - avcodec/takdec: Fix integer overflow in decode_lpc()
  316. - avcodec/proresdec2: Check bits in DECODE_CODEWORD(), fixes invalid shift
  317. - avcodec/takdec: Fix integer overflows in decode_subframe()
  318. - avcodec/dirac_dwt: Fix integer overflow in COMPOSE_FIDELITYi*()
  319. - avcodec/ffv1dec: Fix integer overflow in read_quant_table()
  320. - avcodec/svq3: Fix overflow in svq3_add_idct_c()
  321. - avcodec/pngdec: Clean up on av_frame_ref() failure
  322. version 3.3.4:
  323. - avcodec/hevc_ps: improve check for missing default display window bitstream
  324. - avcodec/hevc_ps: Fix c?_qp_offset_list size
  325. - avcodec/shorten: Move buffer allocation and offset init to end of read_header()
  326. - avcodec/jpeg2000dsp: Fix multiple integer overflows in ict_int()
  327. - avcodec/hevcdsp_template: Fix undefined shift in put_hevc_pel_bi_w_pixels
  328. - avcodec/diracdec: Fix overflow in DC computation
  329. - avcodec/scpr: optimize shift loop.
  330. - avcodec/dirac_vlc: limit res_bits in APPEND_RESIDUE()
  331. - libavcodec/h264_parse: don't use uninitialized value when chroma_format_idc==0
  332. - avformat/asfdec: Fix DoS in asf_build_simple_index()
  333. - avformat/mov: Fix DoS in read_tfra()
  334. - avcodec/dirac_vlc: Fix invalid shift in ff_dirac_golomb_read_32bit()
  335. - avcodec/dirac_dwt: Fix multiple overflows in 9/7 lifting
  336. - avcodec/diracdec: Fix integer overflow in INTRA_DC_PRED()
  337. - avformat/mxfdec: Fix Sign error in mxf_read_primer_pack()
  338. - avformat/mxfdec: Fix DoS issues in mxf_read_index_entry_array()
  339. - avformat/nsvdec: Fix DoS due to lack of eof check in nsvs_file_offset loop.
  340. - avcodec/snowdec: Fix integer overflow in decode_subband_slice_buffered()
  341. - avcodec/hevc_ps: Fix undefined shift in pcm code
  342. - avcodec/sbrdsp_fixed: Fix undefined overflows in autocorrelate()
  343. - avformat/mvdec: Fix DoS due to lack of eof check
  344. - avformat/rl2: Fix DoS due to lack of eof check
  345. - avformat/rmdec: Fix DoS due to lack of eof check
  346. - avformat/cinedec: Fix DoS due to lack of eof check
  347. - avformat/asfdec: Fix DoS due to lack of eof check
  348. - avformat/hls: Fix DoS due to infinite loop
  349. - ffprobe: Fix NULL pointer handling in color parameter printing
  350. - ffprobe: Fix null pointer dereference with color primaries
  351. - avcodec/hevc_ps: Check delta_pocs in ff_hevc_decode_short_term_rps()
  352. - avformat/rtpdec_h264: Fix heap-buffer-overflow
  353. - avformat/aviobuf: Fix signed integer overflow in avio_seek()
  354. - avformat/mov: Fix signed integer overflows with total_size
  355. - avcodec/utils: Fix signed integer overflow in rc_initial_buffer_occupancy initialization
  356. - avcodec/aacdec_template: Fix running cleanup in decode_ics_info()
  357. - avcodec/me_cmp: Fix crashes on ARM due to misalignment
  358. - avcodec/pixlet: Fixes: undefined shift in av_mod_uintp2()
  359. - avcodec/dirac_dwt_template: Fix integer overflow in vertical_compose53iL0()
  360. - avcodec/fic: Fixes signed integer overflow
  361. - avcodec/snowdec: Fix off by 1 error
  362. - avcodec/pixlet: fixes integer overflow in read_highpass()
  363. - avcodec/zmbv: Check decomp_size
  364. - avcodec/diracdec: Fixes integer overflow
  365. - avcodec/diracdec: Check perspective_exp and zrs_exp.
  366. - avcodec/ffv1dec_template: Fix undefined shift
  367. - avcodec/mpeg4videodec: Clear mcsel before decoding an image
  368. - avcodec/dirac_dwt: Fixes integer overflows in COMPOSE_DAUB97*
  369. - avcodec/aacdec_fixed: fix invalid shift in predict()
  370. - avcodec/h264_slice: Fix overflow in slice offset
  371. - avformat/utils: fix memory leak in avformat_free_context
  372. - swscale: fix gbrap16 alpha channel issues
  373. - avcodec/h264idct_template: Fix integer overflow in ff_h264_idct_add()
  374. - avcodec/diracdsp: fix integer overflow
  375. - avcodec/diracdec: Check weight_log2denom
  376. - avcodec/nvenc: only push cuda context on encoder close if encoder exists
  377. - avfilter/vf_ssim: fix temp size calculation
  378. version 3.3.3:
  379. - avcodec/dirac_dwt: Fix multiple integer overflows in COMPOSE_DD97iH0()
  380. - avcodec/diracdec: Fix integer overflow in divide3()
  381. - avcodec/takdec: Fix integer overflow in decode_subframe()
  382. - avformat/rtmppkt: Convert ff_amf_get_field_value() to bytestream2
  383. - avformat/rtmppkt: Convert ff_amf_tag_size() to bytestream2
  384. - avcodec/diracdec: Fix integer overflow in signed multiplication in UNPACK_ARITH()
  385. - avcodec/pixlet: Simplify nbits computation
  386. - avcodec/dnxhddec: Move mb height check out of non hr branch
  387. - avcodec/hevc_ps: fix integer overflow in log2_parallel_merge_level_minus2
  388. - avformat/oggparsecelt: Do not re-allocate os->private
  389. - avcodec/ylc: Fix shift overflow
  390. - avcodec/aacps: Fix multiple integer overflow in map_val_34_to_20()
  391. - avcodec/aacdec_fixed: fix: left shift of negative value -1
  392. - avcodec/dirac_vlc: Fix undefined shift
  393. - doc/filters: typo in frei0r
  394. - avcodec/cfhd: Fix decoding regression due to height check
  395. - avcodec/aacdec_template (fixed point): Check gain in decode_cce() to avoid undefined shifts later
  396. - avcodec/ffv1dec_template: Fix signed integer overflow
  397. - avcodec/aacdec_template: Fix undefined integer overflow in apply_tns()
  398. - avcodec/magicyuv: Check that vlc len is not too large
  399. - avcodec/mjpegdec: Clip DC also on the negative side.
  400. - avcodec/aacps (fixed point): Fix multiple signed integer overflows
  401. - avcodec/ylc: Fix vlc of 31 bits
  402. - avcodec/sbrdsp_fixed: Fix integer overflow in sbr_hf_apply_noise()
  403. - avcodec/hevcdec: do not let updated extradata corrupt state
  404. - avcodec/wavpack: Fix invalid shift
  405. - avcodec/h264_slice: Fix signed integer overflow
  406. - avcodec/hevc_ps: Fix integer overflow with beta/tc offsets
  407. - avcodec/cfhd: Fix invalid left shift of negative value
  408. - avcodec/vb: Check vertical GMC component before multiply
  409. - avcodec/hevcdec: do basic validity check on delta_chroma_weight and offset
  410. - avcodec/jpeg2000dwt: Fix integer overflow in dwt_decode97_int()
  411. - avcodec/apedec: Fix integer overflow
  412. - avcodec/wavpack: Fix integer overflow in wv_unpack_stereo()
  413. - avcodec/hevc_ps: Fix max_dec_buffer check
  414. - avcodec/mpeg4videodec: Fix GMC with videos of dimension 1
  415. - avcodec/wavpack: Fix integer overflow
  416. - avcodec/takdec: Fix integer overflow
  417. - avcodec/tiff: Update pointer only when the result is used
  418. - avcodec/cfhd: Check bpc before setting bpc in context
  419. - avcodec/cfhd: Fix undefined shift
  420. - avcodec/hevc_filter: Fix invalid shift
  421. - avcodec/mpeg4videodec: Fix overflow in virtual_ref computation
  422. - avcodec/lpc: signed integer overflow in compute_lpc_coefs() (aacdec_fixed)
  423. - avcodec/wavpack: Fix undefined integer negation
  424. - avcodec/aacdec_fixed: Check s for being too small
  425. - avcodec/htmlsubtitles: Replace very slow redundant sscanf() calls by cleaner and faster code
  426. - avcodec/h264: Fix mix of lossless and lossy MBs decoding
  427. - avcodec/h264_mb: Fix 8x8dct in lossless for new versions of x264
  428. - avcodec/h264_cabac: Fix CABAC+8x8dct in 4:4:4
  429. - avcodec/takdec: Fixes: integer overflow in AV_SAMPLE_FMT_U8P output
  430. - avcodec/jpeg2000dsp: Reorder operations in ict_int() to avoid 2 integer overflows
  431. - avcodec/hevcpred_template: Fix left shift of negative value
  432. - avcodec/hevcdec: Fix signed integer overflow in decode_lt_rps()
  433. - avcodec/jpeg2000dec: Check nonzerobits more completely
  434. - avcodec/shorten: Sanity check maxnlpc
  435. - avcodec/truemotion2: Move skip computation after checks
  436. - avcodec/jpeg2000: Fixes integer overflow in ff_jpeg2000_ceildivpow2()
  437. - avcodec/dnxhd_parser: Do not return invalid value from dnxhd_find_frame_end() on error
  438. - avcodec/hevcdec: Check nb_sps
  439. - avcodec/hevc_refs: Check nb_refs in add_candidate_ref()
  440. - avcodec/mpeg4videodec: Check sprite delta upshift against overflowing.
  441. - avcodec/mpeg4videodec: Fix integer overflow in num_sprite_warping_points=2 case
  442. - avcodec/aacsbr_fixed: Check shift in sbr_hf_assemble()
  443. - avcodec/sbrdsp_fixed: Return an error from sbr_hf_apply_noise() if operations are impossible
  444. - avcodec/libvpxdec: Check that display dimensions fit in the storage dimensions
  445. - avcodec/jpeg2000dwt: Fix runtime error: left shift of negative value -123
  446. - avcodec/wavpack: Fix runtime error: signed integer overflow: 1886191616 + 277872640 cannot be represented in type 'int'
  447. - avcodec/snowdec: Fix runtime error: left shift of negative value -1
  448. - avcodec/aacdec_fixed: Fix runtime error: left shift of negative value -1297616
  449. - avcodec/tiff: Fix leak of geotags[].val
  450. - avcodec/ra144: Fix runtime error: signed integer overflow: -2200 * 1033073 cannot be represented in type 'int'
  451. - avcodec/flicvideo: Fix runtime error: signed integer overflow: 4864 * 459296 cannot be represented in type 'int'
  452. - avcodec/cfhd: Check band parameters before storing them
  453. - avcodec/h264_parse: Check picture structure when initializig weight table
  454. - avcodec/indeo4: Check remaining data in Pic hdr extension parsing code
  455. - avcodec/ac3dec_fixed: Fix multiple runtime error: signed integer overflow: -39271008 * 59 cannot be represented in type 'int'
  456. - lavc/aarch64/simple_idct: fix idct_col4_top coefficient
  457. version 3.3.2:
  458. - avcodec/mpeg4videodec: Fix runtime error: signed integer overflow: 53098 * 40448 cannot be represented in type 'int'
  459. - avcodec/pafvideo: Fix assertion failure
  460. - avcodec/takdec: Fix multiple runtime error: signed integer overflow: 637072 * 4096 cannot be represented in type 'int'
  461. - avcodec/mjpegdec: Check that reference frame matches the current frame
  462. - avcodec/tiff: Avoid loosing allocated geotag values
  463. - avcodec/cavs: Fix runtime error: signed integer overflow: -12648062 * 256 cannot be represented in type 'int'
  464. - avformat/hls: Check local file extensions
  465. - avcodec/qdrw: Fix null pointer dereference
  466. - avutil/softfloat: Fix sign error in and improve documentation of av_int2sf()
  467. - avcodec/hevc_ps: Fix runtime error: index 32 out of bounds for type 'uint8_t [32]'
  468. - avcodec/dxv: Check remaining bytes in dxv_decompress_raw()
  469. - avcodec/pafvideo: Check packet size and frame code before ff_reget_buffer()
  470. - avcodec/ac3dec_fixed: Fix runtime error: left shift of 419 by 23 places cannot be represented in type 'int'
  471. - avformat/options: log filename on open
  472. - avcodec/aacps: Fix runtime error: left shift of 1073741824 by 1 places cannot be represented in type 'INTFLOAT' (aka 'int')
  473. - avcodec/wavpack: Fix runtime error: shift exponent 32 is too large for 32-bit type 'int'
  474. - avcodec/cfhd: Fix runtime error: signed integer overflow: 65280 * 65288 cannot be represented in type 'int'
  475. - avcodec/wavpack: Fix runtime error: signed integer overflow: 2013265955 - -134217694 cannot be represented in type 'int'
  476. - avcodec/cinepak: Check input packet size before frame reallocation
  477. - avcodec/hevc_ps: Fix runtime error: signed integer overflow: 2147483628 + 256 cannot be represented in type 'int'
  478. - avcodec/ra144: Fixes runtime error: signed integer overflow: 7160 * 327138 cannot be represented in type 'int'
  479. - avcodec/pnm: Use ff_set_dimensions()
  480. - avcodec/cavsdec: Fix runtime error: signed integer overflow: 59 + 2147483600 cannot be represented in type 'int'
  481. - avcodec/nvenc: fix hw accelerated transcode with bframes
  482. - libavformat/hls: Observe Set-Cookie headers
  483. - libavformat/http: Ignore expired cookies
  484. - avformat/avidec: Limit formats in gab2 to srt and ass/ssa
  485. - avcodec/acelp_pitch_delay: Fix runtime error: value 4.83233e+39 is outside the range of representable values of type 'float'
  486. - avcodec/wavpack: Check float_shift
  487. - avcodec/wavpack: Fix runtime error: signed integer overflow: 24 * -2147483648 cannot be represented in type 'int'
  488. - avcodec/ansi: Fix frame memleak
  489. - avcodec/dds: Fix runtime error: left shift of 145 by 24 places cannot be represented in type 'int'
  490. - avcodec/jpeg2000dec: Use ff_set_dimensions()
  491. - avcodec/truemotion2: Fix passing null pointer to memset()
  492. - avcodec/truemotion2: Fix runtime error: left shift of 1 by 31 places cannot be represented in type 'int'
  493. - avcodec/ra144: Fix runtime error: signed integer overflow: -2449 * 1398101 cannot be represented in type 'int'
  494. - avcodec/ra144: Fix runtime error: signed integer overflow: 11184810 * 404 cannot be represented in type 'int'
  495. - avcodec/aac_defines: Add missing () to AAC_HALF_SUM() macro
  496. - avcodec/webp: Fixes null pointer dereference
  497. - avcodec/aacdec_fixed: Fix runtime error: left shift of 1 by 31 places cannot be represented in type 'int'
  498. - avcodec/ylc: Check count in build_vlc()
  499. - avcodec/snow: Fix runtime error: signed integer overflow: 1086573993 + 1086573994 cannot be represented in type 'int'
  500. - avcodec/jpeg2000: Fix runtime error: signed integer overflow: 4185 + 2147483394 cannot be represented in type 'int'
  501. - avcodec/jpeg2000dec: Check tile offsets more completely
  502. - avcodec/sheervideo: Check input buffer size before allocating and decoding
  503. - avcodec/aacdec_fixed: Fix multiple runtime error: shift exponent 127 is too large for 32-bit type 'int'
  504. - avcodec/wnv1: More strict buffer size check
  505. - avcodec/libfdk-aacdec: Correct buffer_size parameter
  506. - avcodec/sbrdsp_template: Fix: runtime error: signed integer overflow: 849815297 + 1315389781 cannot be represented in type 'int'
  507. - avcodec/ivi_dsp: Fix runtime error: left shift of negative value -2
  508. - doc/filters: Clarify scale2ref example
  509. - avcodec/mlpdec: Do not leave invalid values in matrix_out_ch[] on error
  510. - avcodec/ra144dec: Fix runtime error: left shift of negative value -17
  511. - avcodec/pixlet: Fix runtime error: signed integer overflow: 2147483647 + 32 cannot be represented in type 'int'
  512. - avformat/mux: Fix copy an paste typo
  513. - avutil/internal: Do not enable CHECKED with DEBUG
  514. - avcodec/clearvideo: Check buf_size before decoding frame
  515. - avcodec/aacdec_fixed: Fix runtime error: signed integer overflow: -2147483648 * -1 cannot be represented in type 'int'
  516. - avcodec/smc: Check remaining input
  517. - avcodec/diracdec: Fix off by 1 error in quant check
  518. - avcodec/jpeg2000dec: Fix copy and paste error
  519. - avcodec/jpeg2000dec: Check tile offsets
  520. - avcodec/sanm: Fix uninitialized reference frames
  521. - avcodec/jpeglsdec: Check get_bits_left() before decoding a picture
  522. - avcodec/fmvc: Fix use of uninitialized memory when the first frame is not a keyframe
  523. - avcodec/ivi_dsp: Fix multiple runtime error: left shift of negative value -71
  524. - avcodec/mjpegdec: Fix runtime error: signed integer overflow: -32767 * 130560 cannot be represented in type 'int'
  525. - avcodec/aacdec_fixed: Fix runtime error: shift exponent 34 is too large for 32-bit type 'int'
  526. - avcodec/mpeg4videodec: Check for multiple VOL headers
  527. - avcodec/vp9block: fix runtime error: signed integer overflow: 196675 * 20670 cannot be represented in type 'int'
  528. - avcodec/vmnc: Check location before use
  529. - avcodec/takdec: Fix runtime error: signed integer overflow: 8192 * 524308 cannot be represented in type 'int'
  530. - avcodec/aac_defines: Fix: runtime error: left shift of negative value -2
  531. - avcodec/takdec: Fix runtime error: left shift of negative value -63
  532. - avcodec/mlpdsp: Fix runtime error: signed integer overflow: -24419392 * 128 cannot be represented in type 'int'
  533. - avcodec/sbrdsp_fixed: fix runtime error: left shift of 1 by 31 places cannot be represented in type 'int'
  534. - avcodec/aacsbr_fixed: Fix multiple runtime error: shift exponent 170 is too large for 32-bit type 'int'
  535. - avcodec/mlpdec: Do not leave a invalid num_primitive_matrices in the context
  536. - avcodec/aacsbr_fixed: Fix multiple runtime error: shift exponent 150 is too large for 32-bit type 'int'
  537. - avcodec/mimic: Use ff_set_dimensions() to set the dimensions
  538. - avcodec/fic: Fix multiple runtime error: signed integer overflow: 5793 * 419752 cannot be represented in type 'int'
  539. - avcodec/pixlet: Fix reading invalid numbers of bits
  540. - avcodec/mlpdec: Fix: runtime error: left shift of negative value -8
  541. - avcodec/dfa: Fix: runtime error: signed integer overflow: -14202 * 196877 cannot be represented in type 'int'
  542. - avcodec/aacdec: Fix runtime error: signed integer overflow: 2147483520 + 255 cannot be represented in type 'int'
  543. - avcodec/aacdec_template: Fix fixed point scale in decode_cce()
  544. - avcodec/fmvc: Fix off by 1 error
  545. - avcodec/flicvideo: Check frame_size before decrementing
  546. - avcodec/mlpdec: Fix runtime error: left shift of negative value -1
  547. - avcodec/takdec: Fix runtime error: left shift of negative value -42
  548. - avcodec/hq_hqa: Fix: runtime error: signed integer overflow: -255 * 10180917 cannot be represented in type 'int'
  549. - avcodec/scpr: mask bits to prevent out of array read
  550. - avcodec/truemotion1: Fix multiple runtime error: signed integer overflow: 1246906962 * 2 cannot be represented in type 'int'
  551. - avcodec/svq3: Fix runtime error: left shift of negative value -6
  552. - avcodec/tiff: reset sampling[] if its invalid
  553. - configure: Fix the msvcrt version check for mingw32
  554. - lavf/mov: make invalid m{d,v}hd time_scale default to 1 instead of erroring out
  555. - lavc/ffjni: add missing '\n'
  556. - lavc/mediacodec_wrapper: do not declare JNIAMedia{Codec,CodecList,Format}Fields on the stack
  557. - lavc/mediacodec_wrapper: fix local reference leaks
  558. - avcodec/nvenc: remove unnecessary alignment
  559. - Use AVOnce as a static variable consistently
  560. - avfilter: take_samples: do not directly return frame when samples are skipped
  561. - avutil/hwcontext_dxva2: Don't improperly free IDirect3DSurface9 objects
  562. version 3.3.1:
  563. - libswscale/tests/swscale: Fix uninitialized variables
  564. - avcodec/ffv1dec: Fix runtime error: signed integer overflow: 1550964438 + 1550964438 cannot be represented in type 'int'
  565. - avcodec/webp: Fix signedness in prefix_code check
  566. - avcodec/svq3: Fix runtime error: signed integer overflow: 169 * 12717677 cannot be represented in type 'int'
  567. - avcodec/mlpdec: Check that there is enough data for headers
  568. - avcodec/ac3dec: Keep track of band structure
  569. - avcodec/webp: Add missing input padding
  570. - avcodec/aacdec_fixed: Fix runtime error: left shift of negative value -1
  571. - avcodec/aacsbr_template: Do not change bs_num_env before its checked
  572. - avcodec/scpr: Fix multiple runtime error: index 256 out of bounds for type 'unsigned int [256]'
  573. - avcodec/mlp: Fix multiple runtime error: left shift of negative value -1
  574. - avcodec/xpmdec: Fix multiple pointer/memory issues
  575. - avcodec/vp8dsp: vp7_luma_dc_wht_c: Fix multiple runtime error: signed integer overflow: -1366381240 + -1262413604 cannot be represented in type 'int'
  576. - avcodec/avcodec: Limit the number of side data elements per packet
  577. - avcodec/texturedsp: Fix runtime error: left shift of 255 by 24 places cannot be represented in type 'int'
  578. - avcodec/g723_1dec: Fix runtime error: left shift of negative value -1
  579. - avcodec/wmv2dsp: Fix runtime error: signed integer overflow: 181 * -17047030 cannot be represented in type 'int'
  580. - avcodec/diracdec: Fix Assertion frame->buf[0] failed at libavcodec/decode.c:610
  581. - avcodec/msmpeg4dec: Check for cbpy VLC errors
  582. - avcodec/cllc: Check num_bits
  583. - avcodec/cllc: Factor VLC_BITS/DEPTH out, do not use repeated literal numbers
  584. - avcodec/scpr: Check y in first line loop in decompress_i()
  585. - avcodec/dvbsubdec: Check entry_id
  586. - avcodec/aacdec_fixed: Fix multiple shift exponent 33 is too large for 32-bit type 'int'
  587. - avcodec/mpeg12dec: Fixes runtime error: division by zero
  588. - avcodec/pixlet: Fix runtime error: signed integer overflow: 436207616 * -5160230545260541 cannot be represented in type 'long'
  589. - avcodec/webp: Always set pix_fmt
  590. - avfilter/vf_uspp: Fix currently unused input frame dimensions
  591. - avcodec/truemotion1: Fix multiple runtime error: left shift of negative value -1
  592. - avcodec/eatqi: Fix runtime error: signed integer overflow: 4466147 * 1075 cannot be represented in type 'int'
  593. - avcodec/dss_sp: Fix runtime error: signed integer overflow: 2147481189 + 4096 cannot be represented in type 'int'
  594. - avformat/wavdec: Check chunk_size
  595. - avcodec/cavs: Check updated MV
  596. - avcodec/y41pdec: Fix width in input buffer size check
  597. - avcodec/svq3: Fix multiple runtime error: signed integer overflow: -237341 * 24552 cannot be represented in type 'int'
  598. - avcodec/texturedsp: Fix runtime error: left shift of 218 by 24 places cannot be represented in type 'int'
  599. - avcodec/lagarith: Check scale_factor
  600. - avcodec/lagarith: Fix runtime error: left shift of negative value -1
  601. - avcodec/takdec: Fix multiple runtime error: left shift of negative value -1
  602. - avcodec/indeo2: Check for invalid VLCs
  603. - avcodec/g723_1dec: Fix several integer related cases of undefined behaviour
  604. - avcodec/htmlsubtitles: Check for string truncation and return error
  605. - avcodec/bmvvideo: Fix runtime error: left shift of 137 by 24 places cannot be represented in type 'int'
  606. - avcodec/dss_sp: Fix multiple runtime error: signed integer overflow: -15699 * -164039 cannot be represented in type 'int'
  607. - avcodec/dvbsubdec: check region dimensions
  608. - avcodec/vp8dsp: Fixes: runtime error: signed integer overflow: 1330143360 - -1023040530 cannot be represented in type 'int'
  609. - avcodec/hqxdsp: Fix multiple runtime error: signed integer overflow: 248220 * 21407 cannot be represented in type 'int' in idct_col()
  610. - avcodec/cavsdec: Check sym_factor
  611. - avcodec/cdxl: Check format for BGR24
  612. - avcodec/ffv1dec: Fix copying planes of paletted formats
  613. - avcodec/wmv2dsp: Fix runtime error: signed integer overflow: 181 * -12156865 cannot be represented in type 'int'
  614. - avcodec/xwddec: Check bpp more completely
  615. - avcodec/aacdec_template: Do not decode 2nd PCE if it will lead to failure
  616. - avcodec/s302m: Fix left shift of 8 by 28 places cannot be represented in type 'int'
  617. - avcodec/eamad: Fix runtime error: signed integer overflow: 49674 * 49858 cannot be represented in type 'int'
  618. - avcodec/g726: Fix runtime error: left shift of negative value -2
  619. - avcodec/magicyuv: Check len to be supported
  620. - avcodec/ra144: Fix runtime error: left shift of negative value -798
  621. - avcodec/mss34dsp: Fix multiple signed integer overflow
  622. - avcodec/targa_y216dec: Fix width type
  623. - avcodec/texturedsp: Fix multiple runtime error: left shift of 255 by 24 places cannot be represented in type 'int'
  624. - avcodec/ivi_dsp: Fix multiple left shift of negative value -2
  625. - avcodec/svq3: Fix multiple runtime error: signed integer overflow: 44161 * 61694 cannot be represented in type 'int'
  626. - avcodec/msmpeg4dec: Correct table depth
  627. - avcodec/dds: Fix runtime error: left shift of 1 by 31 places cannot be represented in type 'int'
  628. - avcodec/cdxl: Check format parameter
  629. - avutil/softfloat: Fix overflow in av_div_sf()
  630. - avcodec/hq_hqa: Fix runtime error: left shift of negative value -207
  631. - avcodec/mss3: Change types in rac_get_model_sym() to match the types they are initialized from
  632. - avcodec/shorten: Check k in get_uint()
  633. - avcodec/webp: Fix null pointer dereference
  634. - avcodec/dfa: Fix signed integer overflow: -2147483648 - 1 cannot be represented in type 'int'
  635. - avcodec/g723_1: Fix multiple runtime error: left shift of negative value
  636. - avcodec/mimic: Fix runtime error: left shift of negative value -1
  637. - avcodec/clearvideo: Fix multiple runtime error: left shift of negative value -1024
  638. - avcodec/fic: Fix multiple left shift of negative value -15
  639. - avcodec/mlpdec: Fix runtime error: left shift of negative value -22
  640. - avcodec/snowdec: Check qbias
  641. - avutil/softfloat: Fix multiple runtime error: left shift of negative value -8
  642. - avcodec/aacsbr_template: Do not leave bs_num_env invalid
  643. - avcodec/mdec: Fix signed integer overflow: 28835400 * 83 cannot be represented in type 'int'
  644. - avcodec/dfa: Fix off by 1 error
  645. - avcodec/nellymoser: Fix multiple left shift of negative value -8591
  646. - avcodec/cdxl: Fix signed integer overflow: 14243456 * 164 cannot be represented in type 'int'
  647. - avcodec/g722: Fix multiple runtime error: left shift of negative value -1
  648. - avcodec/dss_sp: Fix multiple left shift of negative value -466
  649. - avcodec/wnv1: Fix runtime error: left shift of negative value -1
  650. - avcodec/tiertexseqv: set the fixed dimenasions, do not depend on the demuxer doing so
  651. - avcodec/mjpegdec: Fix runtime error: signed integer overflow: -24543 * 2031616 cannot be represented in type 'int'
  652. - avcodec/cavsdec: Fix undefined behavior from integer overflow
  653. - avcodec/dvdsubdec: Fix runtime error: left shift of 242 by 24 places cannot be represented in type 'int'
  654. - libavcodec/mpeg4videodec: Convert sprite_offset to 64bit
  655. - avcodec/pngdec: Use ff_set_dimensions()
  656. - avcodec/msvideo1: Check buffer size before re-getting the frame
  657. - avcodec/h264_cavlc: Fix undefined behavior on qscale overflow
  658. - avcodec/dcadsp: Fix runtime error: signed integer overflow
  659. - avcodec/svq3: Reject dx/dy beyond 16bit
  660. - avcodec/svq3: Increase offsets to prevent integer overflows
  661. - avcodec/indeo2: Check remaining bits in ir2_decode_plane()
  662. - avcodec/vp3: Check remaining bits in unpack_dct_coeffs()
  663. - doc/developer: Add terse documentation of assumed C implementation defined behavior
  664. - avcodec/bmp: Use ff_set_dimensions()
  665. - avcodec/mdec: Fix runtime error: left shift of negative value -127
  666. - avcodec/x86/vc1dsp_init: Fix build failure with --disable-optimizations and clang
  667. - libavcodec/exr : fix float to uint16 conversion for negative float value
  668. - avformat/webmdashenc: Validate the 'streams' adaptation sets parameter
  669. - avformat/webmdashenc: Require the 'adaptation_sets' option to be set
  670. - lavfi/avfiltergraph: only return EOF in avfilter_graph_request_oldest if all sinks EOFed
  671. - ffmpeg: check for unconnected outputs
  672. - avformat/utils: free AVStream.codec properly in free_stream()
  673. - avcodec/options: do a more thorough clean up in avcodec_copy_context()
  674. - avcodec/options: factorize avcodec_copy_context() cleanup code
  675. - ffmpeg: count packets when queued
  676. - avformat/concatdec: fix the h264 annexb extradata check
  677. - avcodec/dnxhd_parser: fix parsing interlaced video, simplify code
  678. - ffmpeg; check return code of avcodec_send_frame when flushing encoders
  679. - avcodec/g723_1dec: Fix LCG type
  680. - avcodec/hqxdsp: Fix runtime error: signed integer overflow: -196264 * 11585 cannot be represented in type 'int'
  681. - avcodec/ac3dec: Fix: runtime error: index -1 out of bounds for type 'INTFLOAT [2]'
  682. - avcodec/mpeg4videodec: Clear sprite wraping on unsupported cases in VOP decode
  683. - avcodec/pixlet: Fixes: runtime error: signed integer overflow: 9203954323419769657 + 29897660706736950 cannot be represented in type 'long'
  684. - avcodec/dds: Fix runtime error: left shift of 210 by 24 places cannot be represented in type 'int'
  685. - avcodec/rscc: Check pixel_size for overflow
  686. - avcodec/fmvc: Check nb_blocks
  687. - avcodec/cllc: Check prefix
  688. - avcodec/webp: Factor update_canvas_size() out
  689. - avcodec/webp: Update canvas size in vp8_lossy_decode_frame() as in vp8_lossless_decode_frame()
  690. - avcodec/snowdec: Check width
  691. - avcodec/flacdec: Return error code instead of 0 for failures
  692. - avcodec/opus_silk: Fix integer overflow and out of array read
  693. - avcodec/aacps: Fix undefined behavior
  694. - avcodec/pixlet: Fix shift exponent 4294967268 is too large for 32-bit type 'int'
  695. - doc/general: fix project name after 2b1a6b1ae
  696. version 3.3:
  697. - CrystalHD decoder moved to new decode API
  698. - add internal ebur128 library, remove external libebur128 dependency
  699. - Pro-MPEG CoP #3-R2 FEC protocol
  700. - premultiply video filter
  701. - Support for spherical videos
  702. - configure now fails if autodetect-libraries are requested but not found
  703. - PSD Decoder
  704. - 16.8 floating point pcm decoder
  705. - 24.0 floating point pcm decoder
  706. - Apple Pixlet decoder
  707. - QDMC audio decoder
  708. - NewTek SpeedHQ decoder
  709. - MIDI Sample Dump Standard demuxer
  710. - readeia608 filter
  711. - Sample Dump eXchange demuxer
  712. - abitscope multimedia filter
  713. - Scenarist Closed Captions demuxer and muxer
  714. - threshold filter
  715. - midequalizer filter
  716. - Optimal Huffman tables for (M)JPEG encoding
  717. - VAAPI-accelerated MPEG-2 and VP8 encoding
  718. - FM Screen Capture Codec decoder
  719. - native Opus encoder
  720. - ScreenPressor decoder
  721. - incomplete ClearVideo decoder
  722. - Intel QSV video scaling and deinterlacing filters
  723. - Support MOV with multiple sample description tables
  724. - XPM decoder
  725. - Removed the legacy X11 screen grabber, use XCB instead
  726. - MPEG-7 Video Signature filter
  727. - Removed asyncts filter (use af_aresample instead)
  728. - Intel QSV-accelerated VP8 video decoding
  729. version 3.2:
  730. - libopenmpt demuxer
  731. - tee protocol
  732. - Changed metadata print option to accept general urls
  733. - Alias muxer for Ogg Video (.ogv)
  734. - VP8 in Ogg muxing
  735. - curves filter doesn't automatically insert points at x=0 and x=1 anymore
  736. - 16-bit support in curves filter and selectivecolor filter
  737. - OpenH264 decoder wrapper
  738. - MediaCodec H.264/HEVC/MPEG-4/VP8/VP9 hwaccel
  739. - True Audio (TTA) muxer
  740. - crystalizer audio filter
  741. - acrusher audio filter
  742. - bitplanenoise video filter
  743. - floating point support in als decoder
  744. - fifo muxer
  745. - maskedclamp filter
  746. - hysteresis filter
  747. - lut2 filter
  748. - yuvtestsrc filter
  749. - CUDA CUVID H.263/VP8/VP9/10 bit HEVC (Dithered) Decoding
  750. - vaguedenoiser filter
  751. - added threads option per filter instance
  752. - weave filter
  753. - gblur filter
  754. - avgblur filter
  755. - sobel and prewitt filter
  756. - MediaCodec HEVC/MPEG-4/VP8/VP9 decoding
  757. - Meridian Lossless Packing (MLP) / TrueHD encoder
  758. - Non-Local Means (nlmeans) denoising filter
  759. - sdl2 output device and ffplay support
  760. - sdl1 output device and sdl1 support removed
  761. - extended mov edit list support
  762. - libfaac encoder removed
  763. - Matroska muxer now writes CRC32 elements by default in all Level 1 elements
  764. - sidedata video and asidedata audio filter
  765. - Changed mapping of rtp MIME type G726 to codec g726le.
  766. - spec compliant VAAPI/DXVA2 VC-1 decoding of slices in frame-coded images
  767. version 3.1:
  768. - DXVA2-accelerated HEVC Main10 decoding
  769. - fieldhint filter
  770. - loop video filter and aloop audio filter
  771. - Bob Weaver deinterlacing filter
  772. - firequalizer filter
  773. - datascope filter
  774. - bench and abench filters
  775. - ciescope filter
  776. - protocol blacklisting API
  777. - MediaCodec H264 decoding
  778. - VC-2 HQ RTP payload format (draft v1) depacketizer and packetizer
  779. - VP9 RTP payload format (draft v2) packetizer
  780. - AudioToolbox audio decoders
  781. - AudioToolbox audio encoders
  782. - coreimage filter (GPU based image filtering on OSX)
  783. - libdcadec removed
  784. - bitstream filter for extracting DTS core
  785. - ADPCM IMA DAT4 decoder
  786. - musx demuxer
  787. - aix demuxer
  788. - remap filter
  789. - hash and framehash muxers
  790. - colorspace filter
  791. - hdcd filter
  792. - readvitc filter
  793. - VAAPI-accelerated format conversion and scaling
  794. - libnpp/CUDA-accelerated format conversion and scaling
  795. - Duck TrueMotion 2.0 Real Time decoder
  796. - Wideband Single-bit Data (WSD) demuxer
  797. - VAAPI-accelerated H.264/HEVC/MJPEG encoding
  798. - DTS Express (LBR) decoder
  799. - Generic OpenMAX IL encoder with support for Raspberry Pi
  800. - IFF ANIM demuxer & decoder
  801. - Direct Stream Transfer (DST) decoder
  802. - loudnorm filter
  803. - MTAF demuxer and decoder
  804. - MagicYUV decoder
  805. - OpenExr improvements (tile data and B44/B44A support)
  806. - BitJazz SheerVideo decoder
  807. - CUDA CUVID H264/HEVC decoder
  808. - 10-bit depth support in native utvideo decoder
  809. - libutvideo wrapper removed
  810. - YUY2 Lossless Codec decoder
  811. - VideoToolbox H.264 encoder
  812. version 3.0:
  813. - Common Encryption (CENC) MP4 encoding and decoding support
  814. - DXV decoding
  815. - extrastereo filter
  816. - ocr filter
  817. - alimiter filter
  818. - stereowiden filter
  819. - stereotools filter
  820. - rubberband filter
  821. - tremolo filter
  822. - agate filter
  823. - chromakey filter
  824. - maskedmerge filter
  825. - Screenpresso SPV1 decoding
  826. - chromaprint fingerprinting muxer
  827. - ffplay dynamic volume control
  828. - displace filter
  829. - selectivecolor filter
  830. - extensive native AAC encoder improvements and removal of experimental flag
  831. - ADPCM PSX decoder
  832. - 3dostr, dcstr, fsb, genh, vag, xvag, ads, msf, svag & vpk demuxer
  833. - zscale filter
  834. - wve demuxer
  835. - zero-copy Intel QSV transcoding in ffmpeg
  836. - shuffleframes filter
  837. - SDX2 DPCM decoder
  838. - vibrato filter
  839. - innoHeim/Rsupport Screen Capture Codec decoder
  840. - ADPCM AICA decoder
  841. - Interplay ACM demuxer and audio decoder
  842. - XMA1 & XMA2 decoder
  843. - realtime filter
  844. - anoisesrc audio filter source
  845. - IVR demuxer
  846. - compensationdelay filter
  847. - acompressor filter
  848. - support encoding 16-bit RLE SGI images
  849. - apulsator filter
  850. - sidechaingate audio filter
  851. - mipsdspr1 option has been renamed to mipsdsp
  852. - aemphasis filter
  853. - mips32r5 option has been removed
  854. - mips64r6 option has been removed
  855. - DXVA2-accelerated VP9 decoding
  856. - SOFAlizer: virtual binaural acoustics filter
  857. - VAAPI VP9 hwaccel
  858. - audio high-order multiband parametric equalizer
  859. - automatic bitstream filtering
  860. - showspectrumpic filter
  861. - libstagefright support removed
  862. - spectrumsynth filter
  863. - ahistogram filter
  864. - only seek with the right mouse button in ffplay
  865. - toggle full screen when double-clicking with the left mouse button in ffplay
  866. - afftfilt filter
  867. - convolution filter
  868. - libquvi support removed
  869. - support for dvaudio in wav and avi
  870. - libaacplus and libvo-aacenc support removed
  871. - Cineform HD decoder
  872. - new DCA decoder with full support for DTS-HD extensions
  873. - significant performance improvements in Windows Television (WTV) demuxer
  874. - nnedi deinterlacer
  875. - streamselect video and astreamselect audio filter
  876. - swaprect filter
  877. - metadata video and ametadata audio filter
  878. - SMPTE VC-2 HQ profile support for the Dirac decoder
  879. - SMPTE VC-2 native encoder supporting the HQ profile
  880. version 2.8:
  881. - colorkey video filter
  882. - BFSTM/BCSTM demuxer
  883. - little-endian ADPCM_THP decoder
  884. - Hap decoder and encoder
  885. - DirectDraw Surface image/texture decoder
  886. - ssim filter
  887. - optional new ASF demuxer
  888. - showvolume filter
  889. - Many improvements to the JPEG 2000 decoder
  890. - Go2Meeting decoding support
  891. - adrawgraph audio and drawgraph video filter
  892. - removegrain video filter
  893. - Intel QSV-accelerated MPEG-2 video and HEVC encoding
  894. - Intel QSV-accelerated MPEG-2 video and HEVC decoding
  895. - Intel QSV-accelerated VC-1 video decoding
  896. - libkvazaar HEVC encoder
  897. - erosion, dilation, deflate and inflate video filters
  898. - Dynamic Audio Normalizer as dynaudnorm filter
  899. - Reverse video and areverse audio filter
  900. - Random filter
  901. - deband filter
  902. - AAC fixed-point decoding
  903. - sidechaincompress audio filter
  904. - bitstream filter for converting HEVC from MP4 to Annex B
  905. - acrossfade audio filter
  906. - allyuv and allrgb video sources
  907. - atadenoise video filter
  908. - OS X VideoToolbox support
  909. - aphasemeter filter
  910. - showfreqs filter
  911. - vectorscope filter
  912. - waveform filter
  913. - hstack and vstack filter
  914. - Support DNx100 (1440x1080@8)
  915. - VAAPI hevc hwaccel
  916. - VDPAU hevc hwaccel
  917. - framerate filter
  918. - Switched default encoders for webm to VP9 and Opus
  919. - Removed experimental flag from the JPEG 2000 encoder
  920. version 2.7:
  921. - FFT video filter
  922. - TDSC decoder
  923. - DTS lossless extension (XLL) decoding (not lossless, disabled by default)
  924. - showwavespic filter
  925. - DTS decoding through libdcadec
  926. - Drop support for nvenc API before 5.0
  927. - nvenc HEVC encoder
  928. - Detelecine filter
  929. - Intel QSV-accelerated H.264 encoding
  930. - MMAL-accelerated H.264 decoding
  931. - basic APNG encoder and muxer with default extension "apng"
  932. - unpack DivX-style packed B-frames in MPEG-4 bitstream filter
  933. - WebM Live Chunk Muxer
  934. - nvenc level and tier options
  935. - chorus filter
  936. - Canopus HQ/HQA decoder
  937. - Automatically rotate videos based on metadata in ffmpeg
  938. - improved Quickdraw compatibility
  939. - VP9 high bit-depth and extended colorspaces decoding support
  940. - WebPAnimEncoder API when available for encoding and muxing WebP
  941. - Direct3D11-accelerated decoding
  942. - Support Secure Transport
  943. - Multipart JPEG demuxer
  944. version 2.6:
  945. - nvenc encoder
  946. - 10bit spp filter
  947. - colorlevels filter
  948. - RIFX format for *.wav files
  949. - RTP/mpegts muxer
  950. - non continuous cache protocol support
  951. - tblend filter
  952. - cropdetect support for non 8bpp, absolute (if limit >= 1) and relative (if limit < 1.0) threshold
  953. - Camellia symmetric block cipher
  954. - OpenH264 encoder wrapper
  955. - VOC seeking support
  956. - Closed caption Decoder
  957. - fspp, uspp, pp7 MPlayer postprocessing filters ported to native filters
  958. - showpalette filter
  959. - Twofish symmetric block cipher
  960. - Support DNx100 (960x720@8)
  961. - eq2 filter ported from libmpcodecs as eq filter
  962. - removed libmpcodecs
  963. - Changed default DNxHD colour range in QuickTime .mov derivatives to mpeg range
  964. - ported softpulldown filter from libmpcodecs as repeatfields filter
  965. - dcshift filter
  966. - RTP depacketizer for loss tolerant payload format for MP3 audio (RFC 5219)
  967. - RTP depacketizer for AC3 payload format (RFC 4184)
  968. - palettegen and paletteuse filters
  969. - VP9 RTP payload format (draft 0) experimental depacketizer
  970. - RTP depacketizer for DV (RFC 6469)
  971. - DXVA2-accelerated HEVC decoding
  972. - AAC ELD 480 decoding
  973. - Intel QSV-accelerated H.264 decoding
  974. - DSS SP decoder and DSS demuxer
  975. - Fix stsd atom corruption in DNxHD QuickTimes
  976. - Canopus HQX decoder
  977. - RTP depacketization of T.140 text (RFC 4103)
  978. - Port MIPS optimizations to 64-bit
  979. version 2.5:
  980. - HEVC/H.265 RTP payload format (draft v6) packetizer
  981. - SUP/PGS subtitle demuxer
  982. - ffprobe -show_pixel_formats option
  983. - CAST128 symmetric block cipher, ECB mode
  984. - STL subtitle demuxer and decoder
  985. - libutvideo YUV 4:2:2 10bit support
  986. - XCB-based screen-grabber
  987. - UDP-Lite support (RFC 3828)
  988. - xBR scaling filter
  989. - AVFoundation screen capturing support
  990. - ffserver supports codec private options
  991. - creating DASH compatible fragmented MP4, MPEG-DASH segmenting muxer
  992. - WebP muxer with animated WebP support
  993. - zygoaudio decoding support
  994. - APNG demuxer
  995. - postproc visualization support
  996. version 2.4:
  997. - Icecast protocol
  998. - ported lenscorrection filter from frei0r filter
  999. - large optimizations in dctdnoiz to make it usable
  1000. - ICY metadata are now requested by default with the HTTP protocol
  1001. - support for using metadata in stream specifiers in fftools
  1002. - LZMA compression support in TIFF decoder
  1003. - H.261 RTP payload format (RFC 4587) depacketizer and experimental packetizer
  1004. - HEVC/H.265 RTP payload format (draft v6) depacketizer
  1005. - added codecview filter to visualize information exported by some codecs
  1006. - Matroska 3D support thorugh side data
  1007. - HTML generation using texi2html is deprecated in favor of makeinfo/texi2any
  1008. - silenceremove filter
  1009. version 2.3:
  1010. - AC3 fixed-point decoding
  1011. - shuffleplanes filter
  1012. - subfile protocol
  1013. - Phantom Cine demuxer
  1014. - replaygain data export
  1015. - VP7 video decoder
  1016. - Alias PIX image encoder and decoder
  1017. - Improvements to the BRender PIX image decoder
  1018. - Improvements to the XBM decoder
  1019. - QTKit input device
  1020. - improvements to OpenEXR image decoder
  1021. - support decoding 16-bit RLE SGI images
  1022. - GDI screen grabbing for Windows
  1023. - alternative rendition support for HTTP Live Streaming
  1024. - AVFoundation input device
  1025. - Direct Stream Digital (DSD) decoder
  1026. - Magic Lantern Video (MLV) demuxer
  1027. - On2 AVC (Audio for Video) decoder
  1028. - support for decoding through DXVA2 in ffmpeg
  1029. - libbs2b-based stereo-to-binaural audio filter
  1030. - libx264 reference frames count limiting depending on level
  1031. - native Opus decoder
  1032. - display matrix export and rotation API
  1033. - WebVTT encoder
  1034. - showcqt multimedia filter
  1035. - zoompan filter
  1036. - signalstats filter
  1037. - hqx filter (hq2x, hq3x, hq4x)
  1038. - flanger filter
  1039. - Image format auto-detection
  1040. - LRC demuxer and muxer
  1041. - Samba protocol (via libsmbclient)
  1042. - WebM DASH Manifest muxer
  1043. - libfribidi support in drawtext
  1044. version 2.2:
  1045. - HNM version 4 demuxer and video decoder
  1046. - Live HDS muxer
  1047. - setsar/setdar filters now support variables in ratio expressions
  1048. - elbg filter
  1049. - string validation in ffprobe
  1050. - support for decoding through VDPAU in ffmpeg (the -hwaccel option)
  1051. - complete Voxware MetaSound decoder
  1052. - remove mp3_header_compress bitstream filter
  1053. - Windows resource files for shared libraries
  1054. - aeval filter
  1055. - stereoscopic 3d metadata handling
  1056. - WebP encoding via libwebp
  1057. - ATRAC3+ decoder
  1058. - VP8 in Ogg demuxing
  1059. - side & metadata support in NUT
  1060. - framepack filter
  1061. - XYZ12 rawvideo support in NUT
  1062. - Exif metadata support in WebP decoder
  1063. - OpenGL device
  1064. - Use metadata_header_padding to control padding in ID3 tags (currently used in
  1065. MP3, AIFF, and OMA files), FLAC header, and the AVI "junk" block.
  1066. - Mirillis FIC video decoder
  1067. - Support DNx444
  1068. - libx265 encoder
  1069. - dejudder filter
  1070. - Autodetect VDA like all other hardware accelerations
  1071. - aliases and defaults for Ogg subtypes (opus, spx)
  1072. version 2.1:
  1073. - aecho filter
  1074. - perspective filter ported from libmpcodecs
  1075. - ffprobe -show_programs option
  1076. - compand filter
  1077. - RTMP seek support
  1078. - when transcoding with ffmpeg (i.e. not streamcopying), -ss is now accurate
  1079. even when used as an input option. Previous behavior can be restored with
  1080. the -noaccurate_seek option.
  1081. - ffmpeg -t option can now be used for inputs, to limit the duration of
  1082. data read from an input file
  1083. - incomplete Voxware MetaSound decoder
  1084. - read EXIF metadata from JPEG
  1085. - DVB teletext decoder
  1086. - phase filter ported from libmpcodecs
  1087. - w3fdif filter
  1088. - Opus support in Matroska
  1089. - FFV1 version 1.3 is stable and no longer experimental
  1090. - FFV1: YUVA(444,422,420) 9, 10 and 16 bit support
  1091. - changed DTS stream id in lavf mpeg ps muxer from 0x8a to 0x88, to be
  1092. more consistent with other muxers.
  1093. - adelay filter
  1094. - pullup filter ported from libmpcodecs
  1095. - ffprobe -read_intervals option
  1096. - Lossless and alpha support for WebP decoder
  1097. - Error Resilient AAC syntax (ER AAC LC) decoding
  1098. - Low Delay AAC (ER AAC LD) decoding
  1099. - mux chapters in ASF files
  1100. - SFTP protocol (via libssh)
  1101. - libx264: add ability to encode in YUVJ422P and YUVJ444P
  1102. - Fraps: use BT.709 colorspace by default for yuv, as reference fraps decoder does
  1103. - make decoding alpha optional for prores, ffv1 and vp6 by setting
  1104. the skip_alpha flag.
  1105. - ladspa wrapper filter
  1106. - native VP9 decoder
  1107. - dpx parser
  1108. - max_error_rate parameter in ffmpeg
  1109. - PulseAudio output device
  1110. - ReplayGain scanner
  1111. - Enhanced Low Delay AAC (ER AAC ELD) decoding (no LD SBR support)
  1112. - Linux framebuffer output device
  1113. - HEVC decoder
  1114. - raw HEVC, HEVC in MOV/MP4, HEVC in Matroska, HEVC in MPEG-TS demuxing
  1115. - mergeplanes filter
  1116. version 2.0:
  1117. - curves filter
  1118. - reference-counting for AVFrame and AVPacket data
  1119. - ffmpeg now fails when input options are used for output file
  1120. or vice versa
  1121. - support for Monkey's Audio versions from 3.93
  1122. - perms and aperms filters
  1123. - audio filtering support in ffplay
  1124. - 10% faster aac encoding on x86 and MIPS
  1125. - sine audio filter source
  1126. - WebP demuxing and decoding support
  1127. - ffmpeg options -filter_script and -filter_complex_script, which allow a
  1128. filtergraph description to be read from a file
  1129. - OpenCL support
  1130. - audio phaser filter
  1131. - separatefields filter
  1132. - libquvi demuxer
  1133. - uniform options syntax across all filters
  1134. - telecine filter
  1135. - interlace filter
  1136. - smptehdbars source
  1137. - inverse telecine filters (fieldmatch and decimate)
  1138. - colorbalance filter
  1139. - colorchannelmixer filter
  1140. - The matroska demuxer can now output proper verbatim ASS packets. It will
  1141. become the default at the next libavformat major bump.
  1142. - decent native animated GIF encoding
  1143. - asetrate filter
  1144. - interleave filter
  1145. - timeline editing with filters
  1146. - vidstabdetect and vidstabtransform filters for video stabilization using
  1147. the vid.stab library
  1148. - astats filter
  1149. - trim and atrim filters
  1150. - ffmpeg -t and -ss (output-only) options are now sample-accurate when
  1151. transcoding audio
  1152. - Matroska muxer can now put the index at the beginning of the file.
  1153. - extractplanes filter
  1154. - avectorscope filter
  1155. - ADPCM DTK decoder
  1156. - ADP demuxer
  1157. - RSD demuxer
  1158. - RedSpark demuxer
  1159. - ADPCM IMA Radical decoder
  1160. - zmq filters
  1161. - DCT denoiser filter (dctdnoiz)
  1162. - Wavelet denoiser filter ported from libmpcodecs as owdenoise (formerly "ow")
  1163. - Apple Intermediate Codec decoder
  1164. - Escape 130 video decoder
  1165. - FTP protocol support
  1166. - V4L2 output device
  1167. - 3D LUT filter (lut3d)
  1168. - SMPTE 302M audio encoder
  1169. - support for slice multithreading in libavfilter
  1170. - Hald CLUT support (generation and filtering)
  1171. - VC-1 interlaced B-frame support
  1172. - support for WavPack muxing (raw and in Matroska)
  1173. - XVideo output device
  1174. - vignette filter
  1175. - True Audio (TTA) encoder
  1176. - Go2Webinar decoder
  1177. - mcdeint filter ported from libmpcodecs
  1178. - sab filter ported from libmpcodecs
  1179. - ffprobe -show_chapters option
  1180. - WavPack encoding through libwavpack
  1181. - rotate filter
  1182. - spp filter ported from libmpcodecs
  1183. - libgme support
  1184. - psnr filter
  1185. version 1.2:
  1186. - VDPAU hardware acceleration through normal hwaccel
  1187. - SRTP support
  1188. - Error diffusion dither in Swscale
  1189. - Chained Ogg support
  1190. - Theora Midstream reconfiguration support
  1191. - EVRC decoder
  1192. - audio fade filter
  1193. - filtering audio with unknown channel layout
  1194. - allpass, bass, bandpass, bandreject, biquad, equalizer, highpass, lowpass
  1195. and treble audio filter
  1196. - improved showspectrum filter, with multichannel support and sox-like colors
  1197. - histogram filter
  1198. - tee muxer
  1199. - il filter ported from libmpcodecs
  1200. - support ID3v2 tags in ASF files
  1201. - encrypted TTA stream decoding support
  1202. - RF64 support in WAV muxer
  1203. - noise filter ported from libmpcodecs
  1204. - Subtitles character encoding conversion
  1205. - blend filter
  1206. - stereo3d filter ported from libmpcodecs
  1207. version 1.1:
  1208. - stream disposition information printing in ffprobe
  1209. - filter for loudness analysis following EBU R128
  1210. - Opus encoder using libopus
  1211. - ffprobe -select_streams option
  1212. - Pinnacle TARGA CineWave YUV16 decoder
  1213. - TAK demuxer, decoder and parser
  1214. - DTS-HD demuxer
  1215. - remove -same_quant, it hasn't worked for years
  1216. - FFM2 support
  1217. - X-Face image encoder and decoder
  1218. - 24-bit FLAC encoding
  1219. - multi-channel ALAC encoding up to 7.1
  1220. - metadata (INFO tag) support in WAV muxer
  1221. - subtitles raw text decoder
  1222. - support for building DLLs using MSVC
  1223. - LVF demuxer
  1224. - ffescape tool
  1225. - metadata (info chunk) support in CAF muxer
  1226. - field filter ported from libmpcodecs
  1227. - AVR demuxer
  1228. - geq filter ported from libmpcodecs
  1229. - remove ffserver daemon mode
  1230. - AST muxer/demuxer
  1231. - new expansion syntax for drawtext
  1232. - BRender PIX image decoder
  1233. - ffprobe -show_entries option
  1234. - ffprobe -sections option
  1235. - ADPCM IMA Dialogic decoder
  1236. - BRSTM demuxer
  1237. - animated GIF decoder and demuxer
  1238. - PVF demuxer
  1239. - subtitles filter
  1240. - IRCAM muxer/demuxer
  1241. - Paris Audio File demuxer
  1242. - Virtual concatenation demuxer
  1243. - VobSub demuxer
  1244. - JSON captions for TED talks decoding support
  1245. - SOX Resampler support in libswresample
  1246. - aselect filter
  1247. - SGI RLE 8-bit / Silicon Graphics RLE 8-bit video decoder
  1248. - Silicon Graphics Motion Video Compressor 1 & 2 decoder
  1249. - Silicon Graphics Movie demuxer
  1250. - apad filter
  1251. - Resolution & pixel format change support with multithreading for H.264
  1252. - documentation split into per-component manuals
  1253. - pp (postproc) filter ported from MPlayer
  1254. - NIST Sphere demuxer
  1255. - MPL2, VPlayer, MPlayer, AQTitle, PJS and SubViewer v1 subtitles demuxers and decoders
  1256. - Sony Wave64 muxer
  1257. - adobe and limelight publisher authentication in RTMP
  1258. - data: URI scheme
  1259. - support building on the Plan 9 operating system
  1260. - kerndeint filter ported from MPlayer
  1261. - histeq filter ported from VirtualDub
  1262. - Megalux Frame demuxer
  1263. - 012v decoder
  1264. - Improved AVC Intra decoding support
  1265. version 1.0:
  1266. - INI and flat output in ffprobe
  1267. - Scene detection in libavfilter
  1268. - Indeo Audio decoder
  1269. - channelsplit audio filter
  1270. - setnsamples audio filter
  1271. - atempo filter
  1272. - ffprobe -show_data option
  1273. - RTMPT protocol support
  1274. - iLBC encoding/decoding via libilbc
  1275. - Microsoft Screen 1 decoder
  1276. - join audio filter
  1277. - audio channel mapping filter
  1278. - Microsoft ATC Screen decoder
  1279. - RTSP listen mode
  1280. - TechSmith Screen Codec 2 decoder
  1281. - AAC encoding via libfdk-aac
  1282. - Microsoft Expression Encoder Screen decoder
  1283. - RTMPS protocol support
  1284. - RTMPTS protocol support
  1285. - RTMPE protocol support
  1286. - RTMPTE protocol support
  1287. - showwaves and showspectrum filter
  1288. - LucasArts SMUSH SANM playback support
  1289. - LucasArts SMUSH VIMA audio decoder (ADPCM)
  1290. - LucasArts SMUSH demuxer
  1291. - SAMI, RealText and SubViewer demuxers and decoders
  1292. - Heart Of Darkness PAF playback support
  1293. - iec61883 device
  1294. - asettb filter
  1295. - new option: -progress
  1296. - 3GPP Timed Text encoder/decoder
  1297. - GeoTIFF decoder support
  1298. - ffmpeg -(no)stdin option
  1299. - Opus decoder using libopus
  1300. - caca output device using libcaca
  1301. - alphaextract and alphamerge filters
  1302. - concat filter
  1303. - flite filter
  1304. - Canopus Lossless Codec decoder
  1305. - bitmap subtitles in filters (experimental and temporary)
  1306. - MP2 encoding via TwoLAME
  1307. - bmp parser
  1308. - smptebars source
  1309. - asetpts filter
  1310. - hue filter
  1311. - ICO muxer
  1312. - SubRip encoder and decoder without embedded timing
  1313. - edge detection filter
  1314. - framestep filter
  1315. - ffmpeg -shortest option is now per-output file
  1316. -pass and -passlogfile are now per-output stream
  1317. - volume measurement filter
  1318. - Ut Video encoder
  1319. - Microsoft Screen 2 decoder
  1320. - smartblur filter ported from MPlayer
  1321. - CPiA decoder
  1322. - decimate filter ported from MPlayer
  1323. - RTP depacketization of JPEG
  1324. - Smooth Streaming live segmenter muxer
  1325. - F4V muxer
  1326. - sendcmd and asendcmd filters
  1327. - WebVTT demuxer and decoder (simple tags supported)
  1328. - RTP packetization of JPEG
  1329. - faststart option in the MOV/MP4 muxer
  1330. - support for building with MSVC
  1331. version 0.11:
  1332. - Fixes: CVE-2012-2772, CVE-2012-2774, CVE-2012-2775, CVE-2012-2776, CVE-2012-2777,
  1333. CVE-2012-2779, CVE-2012-2782, CVE-2012-2783, CVE-2012-2784, CVE-2012-2785,
  1334. CVE-2012-2786, CVE-2012-2787, CVE-2012-2788, CVE-2012-2789, CVE-2012-2790,
  1335. CVE-2012-2791, CVE-2012-2792, CVE-2012-2793, CVE-2012-2794, CVE-2012-2795,
  1336. CVE-2012-2796, CVE-2012-2797, CVE-2012-2798, CVE-2012-2799, CVE-2012-2800,
  1337. CVE-2012-2801, CVE-2012-2802, CVE-2012-2803, CVE-2012-2804,
  1338. - v408 Quicktime and Microsoft AYUV Uncompressed 4:4:4:4 encoder and decoder
  1339. - setfield filter
  1340. - CDXL demuxer and decoder
  1341. - Apple ProRes encoder
  1342. - ffprobe -count_packets and -count_frames options
  1343. - Sun Rasterfile Encoder
  1344. - ID3v2 attached pictures reading and writing
  1345. - WMA Lossless decoder
  1346. - bluray protocol
  1347. - blackdetect filter
  1348. - libutvideo encoder wrapper (--enable-libutvideo)
  1349. - swapuv filter
  1350. - bbox filter
  1351. - XBM encoder and decoder
  1352. - RealAudio Lossless decoder
  1353. - ZeroCodec decoder
  1354. - tile video filter
  1355. - Metal Gear Solid: The Twin Snakes demuxer
  1356. - OpenEXR image decoder
  1357. - removelogo filter
  1358. - drop support for ffmpeg without libavfilter
  1359. - drawtext video filter: fontconfig support
  1360. - ffmpeg -benchmark_all option
  1361. - super2xsai filter ported from libmpcodecs
  1362. - add libavresample audio conversion library for compatibility
  1363. - MicroDVD decoder
  1364. - Avid Meridien (AVUI) encoder and decoder
  1365. - accept + prefix to -pix_fmt option to disable automatic conversions.
  1366. - complete audio filtering in libavfilter and ffmpeg
  1367. - add fps filter
  1368. - vorbis parser
  1369. - png parser
  1370. - audio mix filter
  1371. - ffv1: support (draft) version 1.3
  1372. version 0.10:
  1373. - Fixes: CVE-2011-3929, CVE-2011-3934, CVE-2011-3935, CVE-2011-3936,
  1374. CVE-2011-3937, CVE-2011-3940, CVE-2011-3941, CVE-2011-3944,
  1375. CVE-2011-3945, CVE-2011-3946, CVE-2011-3947, CVE-2011-3949,
  1376. CVE-2011-3950, CVE-2011-3951, CVE-2011-3952
  1377. - v410 Quicktime Uncompressed 4:4:4 10-bit encoder and decoder
  1378. - SBaGen (SBG) binaural beats script demuxer
  1379. - OpenMG Audio muxer
  1380. - Timecode extraction in DV and MOV
  1381. - thumbnail video filter
  1382. - XML output in ffprobe
  1383. - asplit audio filter
  1384. - tinterlace video filter
  1385. - astreamsync audio filter
  1386. - amerge audio filter
  1387. - ISMV (Smooth Streaming) muxer
  1388. - GSM audio parser
  1389. - SMJPEG muxer
  1390. - XWD encoder and decoder
  1391. - Automatic thread count based on detection number of (available) CPU cores
  1392. - y41p Brooktree Uncompressed 4:1:1 12-bit encoder and decoder
  1393. - ffprobe -show_error option
  1394. - Avid 1:1 10-bit RGB Packer codec
  1395. - v308 Quicktime Uncompressed 4:4:4 encoder and decoder
  1396. - yuv4 libquicktime packed 4:2:0 encoder and decoder
  1397. - ffprobe -show_frames option
  1398. - silencedetect audio filter
  1399. - ffprobe -show_program_version, -show_library_versions, -show_versions options
  1400. - rv34: frame-level multi-threading
  1401. - optimized iMDCT transform on x86 using SSE for for mpegaudiodec
  1402. - Improved PGS subtitle decoder
  1403. - dumpgraph option to lavfi device
  1404. - r210 and r10k encoders
  1405. - ffwavesynth decoder
  1406. - aviocat tool
  1407. - ffeval tool
  1408. - support encoding and decoding 4-channel SGI images
  1409. version 0.9:
  1410. - openal input device added
  1411. - boxblur filter added
  1412. - BWF muxer
  1413. - Flash Screen Video 2 decoder
  1414. - lavfi input device added
  1415. - added avconv, which is almost the same for now, except
  1416. for a few incompatible changes in the options, which will hopefully make them
  1417. easier to use. The changes are:
  1418. * The options placement is now strictly enforced! While in theory the
  1419. options for ffmpeg should be given in [input options] -i INPUT [output
  1420. options] OUTPUT order, in practice it was possible to give output options
  1421. before the -i and it mostly worked. Except when it didn't - the behavior was
  1422. a bit inconsistent. In avconv, it is not possible to mix input and output
  1423. options. All non-global options are reset after an input or output filename.
  1424. * All per-file options are now truly per-file - they apply only to the next
  1425. input or output file and specifying different values for different files
  1426. will now work properly (notably -ss and -t options).
  1427. * All per-stream options are now truly per-stream - it is possible to
  1428. specify which stream(s) should a given option apply to. See the Stream
  1429. specifiers section in the avconv manual for details.
  1430. * In ffmpeg some options (like -newvideo/-newaudio/...) are irregular in the
  1431. sense that they're specified after the output filename instead of before,
  1432. like all other options. In avconv this irregularity is removed, all options
  1433. apply to the next input or output file.
  1434. * -newvideo/-newaudio/-newsubtitle options were removed. Not only were they
  1435. irregular and highly confusing, they were also redundant. In avconv the -map
  1436. option will create new streams in the output file and map input streams to
  1437. them. E.g. avconv -i INPUT -map 0 OUTPUT will create an output stream for
  1438. each stream in the first input file.
  1439. * The -map option now has slightly different and more powerful syntax:
  1440. + Colons (':') are used to separate file index/stream type/stream index
  1441. instead of dots. Comma (',') is used to separate the sync stream instead
  1442. of colon.. This is done for consistency with other options.
  1443. + It's possible to specify stream type. E.g. -map 0:a:2 creates an
  1444. output stream from the third input audio stream.
  1445. + Omitting the stream index now maps all the streams of the given type,
  1446. not just the first. E.g. -map 0:s creates output streams for all the
  1447. subtitle streams in the first input file.
  1448. + Since -map can now match multiple streams, negative mappings were
  1449. introduced. Negative mappings disable some streams from an already
  1450. defined map. E.g. '-map 0 -map -0:a:1' means 'create output streams for
  1451. all the stream in the first input file, except for the second audio
  1452. stream'.
  1453. * There is a new option -c (or -codec) for choosing the decoder/encoder to
  1454. use, which makes it possible to precisely specify target stream(s) consistently with
  1455. other options. E.g. -c:v lib264 sets the codec for all video streams, -c:a:0
  1456. libvorbis sets the codec for the first audio stream and -c copy copies all
  1457. the streams without reencoding. Old -vcodec/-acodec/-scodec options are now
  1458. aliases to -c:v/a/s
  1459. * It is now possible to precisely specify which stream should an AVOption
  1460. apply to. E.g. -b:v:0 2M sets the bitrate for the first video stream, while
  1461. -b:a 128k sets the bitrate for all audio streams. Note that the old -ab 128k
  1462. syntax is deprecated and will stop working soon.
  1463. * -map_chapters now takes only an input file index and applies to the next
  1464. output file. This is consistent with how all the other options work.
  1465. * -map_metadata now takes only an input metadata specifier and applies to
  1466. the next output file. Output metadata specifier is now part of the option
  1467. name, similarly to the AVOptions/map/codec feature above.
  1468. * -metadata can now be used to set metadata on streams and chapters, e.g.
  1469. -metadata:s:1 language=eng sets the language of the first stream to 'eng'.
  1470. This made -vlang/-alang/-slang options redundant, so they were removed.
  1471. * -qscale option now uses stream specifiers and applies to all streams, not
  1472. just video. I.e. plain -qscale number would now apply to all streams. To get
  1473. the old behavior, use -qscale:v. Also there is now a shortcut -q for -qscale
  1474. and -aq is now an alias for -q:a.
  1475. * -vbsf/-absf/-sbsf options were removed and replaced by a -bsf option which
  1476. uses stream specifiers. Use -bsf:v/a/s instead of the old options.
  1477. * -itsscale option now uses stream specifiers, so its argument is only the
  1478. scale parameter.
  1479. * -intra option was removed, use -g 0 for the same effect.
  1480. * -psnr option was removed, use -flags +psnr for the same effect.
  1481. * -vf option is now an alias to the new -filter option, which uses stream specifiers.
  1482. * -vframes/-aframes/-dframes options are now aliases to the new -frames option.
  1483. * -vtag/-atag/-stag options are now aliases to the new -tag option.
  1484. - XMV demuxer
  1485. - LOAS demuxer
  1486. - ashowinfo filter added
  1487. - Windows Media Image decoder
  1488. - amovie source added
  1489. - LATM muxer/demuxer
  1490. - Speex encoder via libspeex
  1491. - JSON output in ffprobe
  1492. - WTV muxer
  1493. - Optional C++ Support (needed for libstagefright)
  1494. - H.264 Decoding on Android via Stagefright
  1495. - Prores decoder
  1496. - BIN/XBIN/ADF/IDF text file decoder
  1497. - aconvert audio filter added
  1498. - audio support to lavfi input device added
  1499. - libcdio-paranoia input device for audio CD grabbing
  1500. - Apple ProRes decoder
  1501. - CELT in Ogg demuxing
  1502. - G.723.1 demuxer and decoder
  1503. - libmodplug support (--enable-libmodplug)
  1504. - VC-1 interlaced decoding
  1505. - libutvideo wrapper (--enable-libutvideo)
  1506. - aevalsrc audio source added
  1507. - Ut Video decoder
  1508. - Speex encoding via libspeex
  1509. - 4:2:2 H.264 decoding support
  1510. - 4:2:2 and 4:4:4 H.264 encoding with libx264
  1511. - Pulseaudio input device
  1512. - Prores encoder
  1513. - Video Decoder Acceleration (VDA) HWAccel module.
  1514. - replacement Indeo 3 decoder
  1515. - new ffmpeg option: -map_channel
  1516. - volume audio filter added
  1517. - earwax audio filter added
  1518. - libv4l2 support (--enable-libv4l2)
  1519. - TLS/SSL and HTTPS protocol support
  1520. - AVOptions API rewritten and documented
  1521. - most of CODEC_FLAG2_*, some CODEC_FLAG_* and many codec-specific fields in
  1522. AVCodecContext deprecated. Codec private options should be used instead.
  1523. - Properly working defaults in libx264 wrapper, support for native presets.
  1524. - Encrypted OMA files support
  1525. - Discworld II BMV decoding support
  1526. - VBLE Decoder
  1527. - OS X Video Decoder Acceleration (VDA) support
  1528. - compact and csv output in ffprobe
  1529. - pan audio filter
  1530. - IFF Amiga Continuous Bitmap (ACBM) decoder
  1531. - ass filter
  1532. - CRI ADX audio format muxer and demuxer
  1533. - Playstation Portable PMP format demuxer
  1534. - Microsoft Windows ICO demuxer
  1535. - life source
  1536. - PCM format support in OMA demuxer
  1537. - CLJR encoder
  1538. - new option: -report
  1539. - Dxtory capture format decoder
  1540. - cellauto source
  1541. - Simple segmenting muxer
  1542. - Indeo 4 decoder
  1543. - SMJPEG demuxer
  1544. version 0.8:
  1545. - many many things we forgot because we rather write code than changelogs
  1546. - WebM support in Matroska de/muxer
  1547. - low overhead Ogg muxing
  1548. - MMS-TCP support
  1549. - VP8 de/encoding via libvpx
  1550. - Demuxer for On2's IVF format
  1551. - Pictor/PC Paint decoder
  1552. - HE-AAC v2 decoder
  1553. - HE-AAC v2 encoding with libaacplus
  1554. - libfaad2 wrapper removed
  1555. - DTS-ES extension (XCh) decoding support
  1556. - native VP8 decoder
  1557. - RTSP tunneling over HTTP
  1558. - RTP depacketization of SVQ3
  1559. - -strict inofficial replaced by -strict unofficial
  1560. - ffplay -exitonkeydown and -exitonmousedown options added
  1561. - native GSM / GSM MS decoder
  1562. - RTP depacketization of QDM2
  1563. - ANSI/ASCII art playback system
  1564. - Lego Mindstorms RSO de/muxer
  1565. - libavcore added (and subsequently removed)
  1566. - SubRip subtitle file muxer and demuxer
  1567. - Chinese AVS encoding via libxavs
  1568. - ffprobe -show_packets option added
  1569. - RTP packetization of Theora and Vorbis
  1570. - RTP depacketization of MP4A-LATM
  1571. - RTP packetization and depacketization of VP8
  1572. - hflip filter
  1573. - Apple HTTP Live Streaming demuxer
  1574. - a64 codec
  1575. - MMS-HTTP support
  1576. - G.722 ADPCM audio encoder/decoder
  1577. - R10k video decoder
  1578. - ocv_smooth filter
  1579. - frei0r wrapper filter
  1580. - change crop filter syntax to width:height:x:y
  1581. - make the crop filter accept parametric expressions
  1582. - make ffprobe accept AVFormatContext options
  1583. - yadif filter
  1584. - blackframe filter
  1585. - Demuxer for Leitch/Harris' VR native stream format (LXF)
  1586. - RTP depacketization of the X-QT QuickTime format
  1587. - SAP (Session Announcement Protocol, RFC 2974) muxer and demuxer
  1588. - cropdetect filter
  1589. - ffmpeg -crop* options removed
  1590. - transpose filter added
  1591. - ffmpeg -force_key_frames option added
  1592. - demuxer for receiving raw rtp:// URLs without an SDP description
  1593. - single stream LATM/LOAS decoder
  1594. - setpts filter added
  1595. - Win64 support for optimized x86 assembly functions
  1596. - MJPEG/AVI1 to JPEG/JFIF bitstream filter
  1597. - ASS subtitle encoder and decoder
  1598. - IEC 61937 encapsulation for E-AC-3, TrueHD, DTS-HD (for HDMI passthrough)
  1599. - overlay filter added
  1600. - rename aspect filter to setdar, and pixelaspect to setsar
  1601. - IEC 61937 demuxer
  1602. - Mobotix .mxg demuxer
  1603. - frei0r source added
  1604. - hqdn3d filter added
  1605. - RTP depacketization of QCELP
  1606. - FLAC parser added
  1607. - gradfun filter added
  1608. - AMR-WB decoder
  1609. - replace the ocv_smooth filter with a more generic ocv filter
  1610. - Windows Televison (WTV) demuxer
  1611. - FFmpeg metadata format muxer and demuxer
  1612. - SubRip (srt) subtitle encoder and decoder
  1613. - floating-point AC-3 encoder added
  1614. - Lagarith decoder
  1615. - ffmpeg -copytb option added
  1616. - IVF muxer added
  1617. - Wing Commander IV movies decoder added
  1618. - movie source added
  1619. - Bink version 'b' audio and video decoder
  1620. - Bitmap Brothers JV playback system
  1621. - Apple HTTP Live Streaming protocol handler
  1622. - sndio support for playback and record
  1623. - Linux framebuffer input device added
  1624. - Chronomaster DFA decoder
  1625. - DPX image encoder
  1626. - MicroDVD subtitle file muxer and demuxer
  1627. - Playstation Portable PMP format demuxer
  1628. - fieldorder video filter added
  1629. - AAC encoding via libvo-aacenc
  1630. - AMR-WB encoding via libvo-amrwbenc
  1631. - xWMA demuxer
  1632. - Mobotix MxPEG decoder
  1633. - VP8 frame-multithreading
  1634. - NEON optimizations for VP8
  1635. - Lots of deprecated API cruft removed
  1636. - fft and imdct optimizations for AVX (Sandy Bridge) processors
  1637. - showinfo filter added
  1638. - SMPTE 302M AES3 audio decoder
  1639. - Apple Core Audio Format muxer
  1640. - 9 bits and 10 bits per sample support in the H.264 decoder
  1641. - 9 bits and 10 bits FFV1 encoding / decoding
  1642. - split filter added
  1643. - select filter added
  1644. - sdl output device added
  1645. - libmpcodecs video filter support (3 times as many filters than before)
  1646. - mpeg2 aspect ratio dection fixed
  1647. - libxvid aspect pickiness fixed
  1648. - Frame multithreaded decoding
  1649. - E-AC-3 audio encoder
  1650. - ac3enc: add channel coupling support
  1651. - floating-point sample format support to the ac3, eac3, dca, aac, and vorbis decoders.
  1652. - H264/MPEG frame-level multi-threading
  1653. - All av_metadata_* functions renamed to av_dict_* and moved to libavutil
  1654. - 4:4:4 H.264 decoding support
  1655. - 10-bit H.264 optimizations for x86
  1656. - lut, lutrgb, and lutyuv filters added
  1657. - buffersink libavfilter sink added
  1658. - Bump libswscale for recently reported ABI break
  1659. - New J2K encoder (via OpenJPEG)
  1660. version 0.7:
  1661. - all the changes for 0.8, but keeping API/ABI compatibility with the 0.6 release
  1662. version 0.6:
  1663. - PB-frame decoding for H.263
  1664. - deprecated vhook subsystem removed
  1665. - deprecated old scaler removed
  1666. - VQF demuxer
  1667. - Alpha channel scaler
  1668. - PCX encoder
  1669. - RTP packetization of H.263
  1670. - RTP packetization of AMR
  1671. - RTP depacketization of Vorbis
  1672. - CorePNG decoding support
  1673. - Cook multichannel decoding support
  1674. - introduced avlanguage helpers in libavformat
  1675. - 8088flex TMV demuxer and decoder
  1676. - per-stream language-tags extraction in asfdec
  1677. - V210 decoder and encoder
  1678. - remaining GPL parts in AC-3 decoder converted to LGPL
  1679. - QCP demuxer
  1680. - SoX native format muxer and demuxer
  1681. - AMR-NB decoding/encoding, AMR-WB decoding via OpenCORE libraries
  1682. - DPX image decoder
  1683. - Electronic Arts Madcow decoder
  1684. - DivX (XSUB) subtitle encoder
  1685. - nonfree libamr support for AMR-NB/WB decoding/encoding removed
  1686. - experimental AAC encoder
  1687. - RTP depacketization of ASF and RTSP from WMS servers
  1688. - RTMP support in libavformat
  1689. - noX handling for OPT_BOOL X options
  1690. - Wave64 demuxer
  1691. - IEC-61937 compatible Muxer
  1692. - TwinVQ decoder
  1693. - Bluray (PGS) subtitle decoder
  1694. - LPCM support in MPEG-TS (HDMV RID as found on Blu-ray disks)
  1695. - WMA Pro decoder
  1696. - Core Audio Format demuxer
  1697. - ATRAC1 decoder
  1698. - MD STUDIO audio demuxer
  1699. - RF64 support in WAV demuxer
  1700. - MPEG-4 Audio Lossless Coding (ALS) decoder
  1701. - -formats option split into -formats, -codecs, -bsfs, and -protocols
  1702. - IV8 demuxer
  1703. - CDG demuxer and decoder
  1704. - R210 decoder
  1705. - Auravision Aura 1 and 2 decoders
  1706. - Deluxe Paint Animation playback system
  1707. - SIPR decoder
  1708. - Adobe Filmstrip muxer and demuxer
  1709. - RTP depacketization of H.263
  1710. - Bink demuxer and audio/video decoders
  1711. - enable symbol versioning by default for linkers that support it
  1712. - IFF PBM/ILBM bitmap decoder
  1713. - concat protocol
  1714. - Indeo 5 decoder
  1715. - RTP depacketization of AMR
  1716. - WMA Voice decoder
  1717. - ffprobe tool
  1718. - AMR-NB decoder
  1719. - RTSP muxer
  1720. - HE-AAC v1 decoder
  1721. - Kega Game Video (KGV1) decoder
  1722. - VorbisComment writing for FLAC, Ogg FLAC and Ogg Speex files
  1723. - RTP depacketization of Theora
  1724. - HTTP Digest authentication
  1725. - RTMP/RTMPT/RTMPS/RTMPE/RTMPTE protocol support via librtmp
  1726. - Psygnosis YOP demuxer and video decoder
  1727. - spectral extension support in the E-AC-3 decoder
  1728. - unsharp video filter
  1729. - RTP hinting in the mov/3gp/mp4 muxer
  1730. - Dirac in Ogg demuxing
  1731. - seek to keyframes in Ogg
  1732. - 4:2:2 and 4:4:4 Theora decoding
  1733. - 35% faster VP3/Theora decoding
  1734. - faster AAC decoding
  1735. - faster H.264 decoding
  1736. - RealAudio 1.0 (14.4K) encoder
  1737. version 0.5:
  1738. - DV50 AKA DVCPRO50 encoder, decoder, muxer and demuxer
  1739. - TechSmith Camtasia (TSCC) video decoder
  1740. - IBM Ultimotion (ULTI) video decoder
  1741. - Sierra Online audio file demuxer and decoder
  1742. - Apple QuickDraw (qdrw) video decoder
  1743. - Creative ADPCM audio decoder (16 bits as well as 8 bits schemes)
  1744. - Electronic Arts Multimedia (WVE/UV2/etc.) file demuxer
  1745. - Miro VideoXL (VIXL) video decoder
  1746. - H.261 video encoder
  1747. - QPEG video decoder
  1748. - Nullsoft Video (NSV) file demuxer
  1749. - Shorten audio decoder
  1750. - LOCO video decoder
  1751. - Apple Lossless Audio Codec (ALAC) decoder
  1752. - Winnov WNV1 video decoder
  1753. - Autodesk Animator Studio Codec (AASC) decoder
  1754. - Indeo 2 video decoder
  1755. - Fraps FPS1 video decoder
  1756. - Snow video encoder/decoder
  1757. - Sonic audio encoder/decoder
  1758. - Vorbis audio decoder
  1759. - Macromedia ADPCM decoder
  1760. - Duck TrueMotion 2 video decoder
  1761. - support for decoding FLX and DTA extensions in FLIC files
  1762. - H.264 custom quantization matrices support
  1763. - ffserver fixed, it should now be usable again
  1764. - QDM2 audio decoder
  1765. - Real Cooker audio decoder
  1766. - TrueSpeech audio decoder
  1767. - WMA2 audio decoder fixed, now all files should play correctly
  1768. - RealAudio 14.4 and 28.8 decoders fixed
  1769. - JPEG-LS decoder
  1770. - build system improvements
  1771. - tabs and trailing whitespace removed from the codebase
  1772. - CamStudio video decoder
  1773. - AIFF/AIFF-C audio format, encoding and decoding
  1774. - ADTS AAC file reading and writing
  1775. - Creative VOC file reading and writing
  1776. - American Laser Games multimedia (*.mm) playback system
  1777. - Zip Motion Blocks Video decoder
  1778. - improved Theora/VP3 decoder
  1779. - True Audio (TTA) decoder
  1780. - AVS demuxer and video decoder
  1781. - JPEG-LS encoder
  1782. - Smacker demuxer and decoder
  1783. - NuppelVideo/MythTV demuxer and RTjpeg decoder
  1784. - KMVC decoder
  1785. - MPEG-2 intra VLC support
  1786. - MPEG-2 4:2:2 encoder
  1787. - Flash Screen Video decoder
  1788. - GXF demuxer
  1789. - Chinese AVS decoder
  1790. - GXF muxer
  1791. - MXF demuxer
  1792. - VC-1/WMV3/WMV9 video decoder
  1793. - MacIntel support
  1794. - AviSynth support
  1795. - VMware video decoder
  1796. - VP5 video decoder
  1797. - VP6 video decoder
  1798. - WavPack lossless audio decoder
  1799. - Targa (.TGA) picture decoder
  1800. - Vorbis audio encoder
  1801. - Delphine Software .cin demuxer/audio and video decoder
  1802. - Tiertex .seq demuxer/video decoder
  1803. - MTV demuxer
  1804. - TIFF picture encoder and decoder
  1805. - GIF picture decoder
  1806. - Intel Music Coder decoder
  1807. - Zip Motion Blocks Video encoder
  1808. - Musepack decoder
  1809. - Flash Screen Video encoder
  1810. - Theora encoding via libtheora
  1811. - BMP encoder
  1812. - WMA encoder
  1813. - GSM-MS encoder and decoder
  1814. - DCA decoder
  1815. - DXA demuxer and decoder
  1816. - DNxHD decoder
  1817. - Gamecube movie (.THP) playback system
  1818. - Blackfin optimizations
  1819. - Interplay C93 demuxer and video decoder
  1820. - Bethsoft VID demuxer and video decoder
  1821. - CRYO APC demuxer
  1822. - ATRAC3 decoder
  1823. - V.Flash PTX decoder
  1824. - RoQ muxer, RoQ audio encoder
  1825. - Renderware TXD demuxer and decoder
  1826. - extern C declarations for C++ removed from headers
  1827. - sws_flags command line option
  1828. - codebook generator
  1829. - RoQ video encoder
  1830. - QTRLE encoder
  1831. - OS/2 support removed and restored again
  1832. - AC-3 decoder
  1833. - NUT muxer
  1834. - additional SPARC (VIS) optimizations
  1835. - Matroska muxer
  1836. - slice-based parallel H.264 decoding
  1837. - Monkey's Audio demuxer and decoder
  1838. - AMV audio and video decoder
  1839. - DNxHD encoder
  1840. - H.264 PAFF decoding
  1841. - Nellymoser ASAO decoder
  1842. - Beam Software SIFF demuxer and decoder
  1843. - libvorbis Vorbis decoding removed in favor of native decoder
  1844. - IntraX8 (J-Frame) subdecoder for WMV2 and VC-1
  1845. - Ogg (Theora, Vorbis and FLAC) muxer
  1846. - The "device" muxers and demuxers are now in a new libavdevice library
  1847. - PC Paintbrush PCX decoder
  1848. - Sun Rasterfile decoder
  1849. - TechnoTrend PVA demuxer
  1850. - Linux Media Labs MPEG-4 (LMLM4) demuxer
  1851. - AVM2 (Flash 9) SWF muxer
  1852. - QT variant of IMA ADPCM encoder
  1853. - VFW grabber
  1854. - iPod/iPhone compatible mp4 muxer
  1855. - Mimic decoder
  1856. - MSN TCP Webcam stream demuxer
  1857. - RL2 demuxer / decoder
  1858. - IFF demuxer
  1859. - 8SVX audio decoder
  1860. - non-recursive Makefiles
  1861. - BFI demuxer
  1862. - MAXIS EA XA (.xa) demuxer / decoder
  1863. - BFI video decoder
  1864. - OMA demuxer
  1865. - MLP/TrueHD decoder
  1866. - Electronic Arts CMV decoder
  1867. - Motion Pixels Video decoder
  1868. - Motion Pixels MVI demuxer
  1869. - removed animated GIF decoder/demuxer
  1870. - D-Cinema audio muxer
  1871. - Electronic Arts TGV decoder
  1872. - Apple Lossless Audio Codec (ALAC) encoder
  1873. - AAC decoder
  1874. - floating point PCM encoder/decoder
  1875. - MXF muxer
  1876. - DV100 AKA DVCPRO HD decoder and demuxer
  1877. - E-AC-3 support added to AC-3 decoder
  1878. - Nellymoser ASAO encoder
  1879. - ASS and SSA demuxer and muxer
  1880. - liba52 wrapper removed
  1881. - SVQ3 watermark decoding support
  1882. - Speex decoding via libspeex
  1883. - Electronic Arts TGQ decoder
  1884. - RV40 decoder
  1885. - QCELP / PureVoice decoder
  1886. - RV30 decoder
  1887. - hybrid WavPack support
  1888. - R3D REDCODE demuxer
  1889. - ALSA support for playback and record
  1890. - Electronic Arts TQI decoder
  1891. - OpenJPEG based JPEG 2000 decoder
  1892. - NC (NC4600) camera file demuxer
  1893. - Gopher client support
  1894. - MXF D-10 muxer
  1895. - generic metadata API
  1896. - flash ScreenVideo2 encoder
  1897. version 0.4.9-pre1:
  1898. - DV encoder, DV muxer
  1899. - Microsoft RLE video decoder
  1900. - Microsoft Video-1 decoder
  1901. - Apple Animation (RLE) decoder
  1902. - Apple Graphics (SMC) decoder
  1903. - Apple Video (RPZA) decoder
  1904. - Cinepak decoder
  1905. - Sega FILM (CPK) file demuxer
  1906. - Westwood multimedia support (VQA & AUD files)
  1907. - Id Quake II CIN playback support
  1908. - 8BPS video decoder
  1909. - FLIC playback support
  1910. - RealVideo 2.0 (RV20) decoder
  1911. - Duck TrueMotion v1 (DUCK) video decoder
  1912. - Sierra VMD demuxer and video decoder
  1913. - MSZH and ZLIB decoder support
  1914. - SVQ1 video encoder
  1915. - AMR-WB support
  1916. - PPC optimizations
  1917. - rate distortion optimal cbp support
  1918. - rate distorted optimal ac prediction for MPEG-4
  1919. - rate distorted optimal lambda->qp support
  1920. - AAC encoding with libfaac
  1921. - Sunplus JPEG codec (SP5X) support
  1922. - use Lagrange multiplier instead of QP for ratecontrol
  1923. - Theora/VP3 decoding support
  1924. - XA and ADX ADPCM codecs
  1925. - export MPEG-2 active display area / pan scan
  1926. - Add support for configuring with IBM XLC
  1927. - floating point AAN DCT
  1928. - initial support for zygo video (not complete)
  1929. - RGB ffv1 support
  1930. - new audio/video parser API
  1931. - av_log() system
  1932. - av_read_frame() and av_seek_frame() support
  1933. - missing last frame fixes
  1934. - seek by mouse in ffplay
  1935. - noise reduction of DCT coefficients
  1936. - H.263 OBMC & 4MV support
  1937. - H.263 alternative inter vlc support
  1938. - H.263 loop filter
  1939. - H.263 slice structured mode
  1940. - interlaced DCT support for MPEG-2 encoding
  1941. - stuffing to stay above min_bitrate
  1942. - MB type & QP visualization
  1943. - frame stepping for ffplay
  1944. - interlaced motion estimation
  1945. - alternate scantable support
  1946. - SVCD scan offset support
  1947. - closed GOP support
  1948. - SSE2 FDCT
  1949. - quantizer noise shaping
  1950. - G.726 ADPCM audio codec
  1951. - MS ADPCM encoding
  1952. - multithreaded/SMP motion estimation
  1953. - multithreaded/SMP encoding for MPEG-1/MPEG-2/MPEG-4/H.263
  1954. - multithreaded/SMP decoding for MPEG-2
  1955. - FLAC decoder
  1956. - Metrowerks CodeWarrior suppport
  1957. - H.263+ custom pcf support
  1958. - nicer output for 'ffmpeg -formats'
  1959. - Matroska demuxer
  1960. - SGI image format, encoding and decoding
  1961. - H.264 loop filter support
  1962. - H.264 CABAC support
  1963. - nicer looking arrows for the motion vector visualization
  1964. - improved VCD support
  1965. - audio timestamp drift compensation
  1966. - MPEG-2 YUV 422/444 support
  1967. - polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample
  1968. - better image scaling
  1969. - H.261 support
  1970. - correctly interleave packets during encoding
  1971. - VIS optimized motion compensation
  1972. - intra_dc_precision>0 encoding support
  1973. - support reuse of motion vectors/MB types/field select values of the source video
  1974. - more accurate deblock filter
  1975. - padding support
  1976. - many optimizations and bugfixes
  1977. - FunCom ISS audio file demuxer and according ADPCM decoding
  1978. version 0.4.8:
  1979. - MPEG-2 video encoding (Michael)
  1980. - Id RoQ playback subsystem (Mike Melanson and Tim Ferguson)
  1981. - Wing Commander III Movie (.mve) file playback subsystem (Mike Melanson
  1982. and Mario Brito)
  1983. - Xan DPCM audio decoder (Mario Brito)
  1984. - Interplay MVE playback subsystem (Mike Melanson)
  1985. - Duck DK3 and DK4 ADPCM audio decoders (Mike Melanson)
  1986. version 0.4.7:
  1987. - RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from mplayerhq
  1988. (originally from public domain player for Amiga at http://www.honeypot.net/audio)
  1989. - current version now also compiles with older GCC (Fabrice)
  1990. - 4X multimedia playback system including 4xm file demuxer (Mike
  1991. Melanson), and 4X video and audio codecs (Michael)
  1992. - Creative YUV (CYUV) decoder (Mike Melanson)
  1993. - FFV1 codec (our very simple lossless intra only codec, compresses much better
  1994. than HuffYUV) (Michael)
  1995. - ASV1 (Asus), H.264, Intel indeo3 codecs have been added (various)
  1996. - tiny PNG encoder and decoder, tiny GIF decoder, PAM decoder (PPM with
  1997. alpha support), JPEG YUV colorspace support. (Fabrice Bellard)
  1998. - ffplay has been replaced with a newer version which uses SDL (optionally)
  1999. for multiplatform support (Fabrice)
  2000. - Sorenson Version 3 codec (SVQ3) support has been added (decoding only) - donated
  2001. by anonymous
  2002. - AMR format has been added (Johannes Carlsson)
  2003. - 3GP support has been added (Johannes Carlsson)
  2004. - VP3 codec has been added (Mike Melanson)
  2005. - more MPEG-1/2 fixes
  2006. - better multiplatform support, MS Visual Studio fixes (various)
  2007. - AltiVec optimizations (Magnus Damn and others)
  2008. - SH4 processor support has been added (BERO)
  2009. - new public interfaces (avcodec_get_pix_fmt) (Roman Shaposhnick)
  2010. - VOB streaming support (Brian Foley)
  2011. - better MP3 autodetection (Andriy Rysin)
  2012. - qpel encoding (Michael)
  2013. - 4mv+b frames encoding finally fixed (Michael)
  2014. - chroma ME (Michael)
  2015. - 5 comparison functions for ME (Michael)
  2016. - B-frame encoding speedup (Michael)
  2017. - WMV2 codec (unfinished - Michael)
  2018. - user specified diamond size for EPZS (Michael)
  2019. - Playstation STR playback subsystem, still experimental (Mike and Michael)
  2020. - ASV2 codec (Michael)
  2021. - CLJR decoder (Alex)
  2022. .. And lots more new enhancements and fixes.
  2023. version 0.4.6:
  2024. - completely new integer only MPEG audio layer 1/2/3 decoder rewritten
  2025. from scratch
  2026. - Recoded DCT and motion vector search with gcc (no longer depends on nasm)
  2027. - fix quantization bug in AC3 encoder
  2028. - added PCM codecs and format. Corrected WAV/AVI/ASF PCM issues
  2029. - added prototype ffplay program
  2030. - added GOB header parsing on H.263/H.263+ decoder (Juanjo)
  2031. - bug fix on MCBPC tables of H.263 (Juanjo)
  2032. - bug fix on DC coefficients of H.263 (Juanjo)
  2033. - added Advanced Prediction Mode on H.263/H.263+ decoder (Juanjo)
  2034. - now we can decode H.263 streams found in QuickTime files (Juanjo)
  2035. - now we can decode H.263 streams found in VIVO v1 files(Juanjo)
  2036. - preliminary RTP "friendly" mode for H.263/H.263+ coding. (Juanjo)
  2037. - added GOB header for H.263/H.263+ coding on RTP mode (Juanjo)
  2038. - now H.263 picture size is returned on the first decoded frame (Juanjo)
  2039. - added first regression tests
  2040. - added MPEG-2 TS demuxer
  2041. - new demux API for libav
  2042. - more accurate and faster IDCT (Michael)
  2043. - faster and entropy-controlled motion search (Michael)
  2044. - two pass video encoding (Michael)
  2045. - new video rate control (Michael)
  2046. - added MSMPEG4V1, MSMPEGV2 and WMV1 support (Michael)
  2047. - great performance improvement of video encoders and decoders (Michael)
  2048. - new and faster bit readers and vlc parsers (Michael)
  2049. - high quality encoding mode: tries all macroblock/VLC types (Michael)
  2050. - added DV video decoder
  2051. - preliminary RTP/RTSP support in ffserver and libavformat
  2052. - H.263+ AIC decoding/encoding support (Juanjo)
  2053. - VCD MPEG-PS mode (Juanjo)
  2054. - PSNR stuff (Juanjo)
  2055. - simple stats output (Juanjo)
  2056. - 16-bit and 15-bit RGB/BGR/GBR support (Bisqwit)
  2057. version 0.4.5:
  2058. - some header fixes (Zdenek Kabelac <kabi at informatics.muni.cz>)
  2059. - many MMX optimizations (Nick Kurshev <nickols_k at mail.ru>)
  2060. - added configure system (actually a small shell script)
  2061. - added MPEG audio layer 1/2/3 decoding using LGPL'ed mpglib by
  2062. Michael Hipp (temporary solution - waiting for integer only
  2063. decoder)
  2064. - fixed VIDIOCSYNC interrupt
  2065. - added Intel H.263 decoding support ('I263' AVI fourCC)
  2066. - added Real Video 1.0 decoding (needs further testing)
  2067. - simplified image formats again. Added PGM format (=grey
  2068. pgm). Renamed old PGM to PGMYUV.
  2069. - fixed msmpeg4 slice issues (tell me if you still find problems)
  2070. - fixed OpenDivX bugs with newer versions (added VOL header decoding)
  2071. - added support for MPlayer interface
  2072. - added macroblock skip optimization
  2073. - added MJPEG decoder
  2074. - added mmx/mmxext IDCT from libmpeg2
  2075. - added pgmyuvpipe, ppm, and ppm_pipe formats (original patch by Celer
  2076. <celer at shell.scrypt.net>)
  2077. - added pixel format conversion layer (e.g. for MJPEG or PPM)
  2078. - added deinterlacing option
  2079. - MPEG-1/2 fixes
  2080. - MPEG-4 vol header fixes (Jonathan Marsden <snmjbm at pacbell.net>)
  2081. - ARM optimizations (Lionel Ulmer <lionel.ulmer at free.fr>).
  2082. - Windows porting of file converter
  2083. - added MJPEG raw format (input/output)
  2084. - added JPEG image format support (input/output)
  2085. version 0.4.4:
  2086. - fixed some std header definitions (Bjorn Lindgren
  2087. <bjorn.e.lindgren at telia.com>).
  2088. - added MPEG demuxer (MPEG-1 and 2 compatible).
  2089. - added ASF demuxer
  2090. - added prototype RM demuxer
  2091. - added AC3 decoding (done with libac3 by Aaron Holtzman)
  2092. - added decoding codec parameter guessing (.e.g. for MPEG, because the
  2093. header does not include them)
  2094. - fixed header generation in MPEG-1, AVI and ASF muxer: wmplayer can now
  2095. play them (only tested video)
  2096. - fixed H.263 white bug
  2097. - fixed phase rounding in img resample filter
  2098. - add MMX code for polyphase img resample filter
  2099. - added CPU autodetection
  2100. - added generic title/author/copyright/comment string handling (ASF and RM
  2101. use them)
  2102. - added SWF demux to extract MP3 track (not usable yet because no MP3
  2103. decoder)
  2104. - added fractional frame rate support
  2105. - codecs are no longer searched by read_header() (should fix ffserver
  2106. segfault)
  2107. version 0.4.3:
  2108. - BGR24 patch (initial patch by Jeroen Vreeken <pe1rxq at amsat.org>)
  2109. - fixed raw yuv output
  2110. - added motion rounding support in MPEG-4
  2111. - fixed motion bug rounding in MSMPEG4
  2112. - added B-frame handling in video core
  2113. - added full MPEG-1 decoding support
  2114. - added partial (frame only) MPEG-2 support
  2115. - changed the FOURCC code for H.263 to "U263" to be able to see the
  2116. +AVI/H.263 file with the UB Video H.263+ decoder. MPlayer works with
  2117. this +codec ;) (JuanJo).
  2118. - Halfpel motion estimation after MB type selection (JuanJo)
  2119. - added pgm and .Y.U.V output format
  2120. - suppressed 'img:' protocol. Simply use: /tmp/test%d.[pgm|Y] as input or
  2121. output.
  2122. - added pgmpipe I/O format (original patch from Martin Aumueller
  2123. <lists at reserv.at>, but changed completely since we use a format
  2124. instead of a protocol)
  2125. version 0.4.2:
  2126. - added H.263/MPEG-4/MSMPEG4 decoding support. MPEG-4 decoding support
  2127. (for OpenDivX) is almost complete: 8x8 MVs and rounding are
  2128. missing. MSMPEG4 support is complete.
  2129. - added prototype MPEG-1 decoder. Only I- and P-frames handled yet (it
  2130. can decode ffmpeg MPEGs :-)).
  2131. - added libavcodec API documentation (see apiexample.c).
  2132. - fixed image polyphase bug (the bottom of some images could be
  2133. greenish)
  2134. - added support for non clipped motion vectors (decoding only)
  2135. and image sizes non-multiple of 16
  2136. - added support for AC prediction (decoding only)
  2137. - added file overwrite confirmation (can be disabled with -y)
  2138. - added custom size picture to H.263 using H.263+ (Juanjo)
  2139. version 0.4.1:
  2140. - added MSMPEG4 (aka DivX) compatible encoder. Changed default codec
  2141. of AVI and ASF to DIV3.
  2142. - added -me option to set motion estimation method
  2143. (default=log). suppressed redundant -hq option.
  2144. - added options -acodec and -vcodec to force a given codec (useful for
  2145. AVI for example)
  2146. - fixed -an option
  2147. - improved dct_quantize speed
  2148. - factorized some motion estimation code
  2149. version 0.4.0:
  2150. - removing grab code from ffserver and moved it to ffmpeg. Added
  2151. multistream support to ffmpeg.
  2152. - added timeshifting support for live feeds (option ?date=xxx in the
  2153. URL)
  2154. - added high quality image resize code with polyphase filter (need
  2155. mmx/see optimization). Enable multiple image size support in ffserver.
  2156. - added multi live feed support in ffserver
  2157. - suppressed master feature from ffserver (it should be done with an
  2158. external program which opens the .ffm url and writes it to another
  2159. ffserver)
  2160. - added preliminary support for video stream parsing (WAV and AVI half
  2161. done). Added proper support for audio/video file conversion in
  2162. ffmpeg.
  2163. - added preliminary support for video file sending from ffserver
  2164. - redesigning I/O subsystem: now using URL based input and output
  2165. (see avio.h)
  2166. - added WAV format support
  2167. - added "tty user interface" to ffmpeg to stop grabbing gracefully
  2168. - added MMX/SSE optimizations to SAD (Sums of Absolutes Differences)
  2169. (Juan J. Sierralta P. a.k.a. "Juanjo" <juanjo at atmlab.utfsm.cl>)
  2170. - added MMX DCT from mpeg2_movie 1.5 (Juanjo)
  2171. - added new motion estimation algorithms, log and phods (Juanjo)
  2172. - changed directories: libav for format handling, libavcodec for
  2173. codecs
  2174. version 0.3.4:
  2175. - added stereo in MPEG audio encoder
  2176. version 0.3.3:
  2177. - added 'high quality' mode which use motion vectors. It can be used in
  2178. real time at low resolution.
  2179. - fixed rounding problems which caused quality problems at high
  2180. bitrates and large GOP size
  2181. version 0.3.2: small fixes
  2182. - ASF fixes
  2183. - put_seek bug fix
  2184. version 0.3.1: added avi/divx support
  2185. - added AVI support
  2186. - added MPEG-4 codec compatible with OpenDivX. It is based on the H.263 codec
  2187. - added sound for flash format (not tested)
  2188. version 0.3: initial public release