Changelog 107 KB

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