Changelog 135 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168
  1. Entries are sorted chronologically from oldest to youngest within each release,
  2. releases are sorted from youngest to oldest.
  3. version 4.2.10:
  4. avcodec/snow: Fix off by 1 error in run_buffer
  5. avcodec/utils: apply the same alignment to YUV410 as we do to YUV420 for snow
  6. avcodec/vaapi_encode: Check hwctx
  7. avcodec/proresdec: Consider negative bits left
  8. avcodec/hevc/hevcdec: Do not allow slices to depend on failed slices
  9. avcodec/diracdsp: Remove unused variable
  10. avformat/hcom: Tell the compiler about set but not read variables
  11. lavf/chromaprint: Silence compilation warnings
  12. avutil/slicethread: Check pthread_*_init() for failure
  13. avutil/frame: Check log2_crop_align
  14. avutil/buffer: Check ff_mutex_init() for failure
  15. avformat/xmv: Check this_packet_size
  16. avformat/ty: rec_size seems to only need 32bit
  17. avformat/tty: Check avio_size()
  18. avformat/siff: Basic pkt_size check
  19. avformat/sauce: Check avio_size() for failure
  20. avformat/sapdec: Check ffurl_get_file_handle() for error
  21. avformat/nsvdec: Check asize for PCM
  22. avformat/mp3dec: Check header_filesize
  23. avformat/mp3dec; Check for avio_size() failure
  24. avformat/mov: Use 64bit for str_size
  25. avformat/mm: Check length
  26. avformat/hnm: Check *chunk_size
  27. avformat/asfdec_o: Check size of index object
  28. avfilter/vf_lut3d: Check av_scanf()
  29. swscale/output: Fix integer overflows in yuv2rgba64_X_c_template
  30. avformat/mxfdec: Reorder elements of expression in bisect loop
  31. avcodec/utvideoenc: Use unsigned shift to build flags
  32. avcodec/vc2enc: Fix overflows with storing large values
  33. avcodec/mpegvideo_enc: Do not duplicate pictures on shifting
  34. avfilter/vf_bm3d: Dont round MSE2SSE to an integer
  35. avdevice/dshow: Check device_filter_unique_name before use
  36. avdevice/dshow_filter: Use wcscpy_s()
  37. avcodec/flac_parser: Assert that we do not overrun the link_penalty array
  38. avcodec/pixlet: Simplify pfx computation
  39. avcodec/motion_est: Fix score squaring overflow
  40. avcodec/loco: Check loco_get_rice() for failure
  41. avcodec/loco: check get_ur_golomb_jpegls() for failure
  42. avcodec/imm4: check cbphi for error
  43. avcodec/iff: Use signed count
  44. avcodec/golomb: Assert that k is in the supported range for get_ur/sr_golomb()
  45. avcodec/golomb: Document return for get_ur_golomb_jpegls() and get_sr_golomb_flac()
  46. avcodec/dxv: Fix type in get_opcodes()
  47. avcodec/xsubdec: Check parse_timecode()
  48. avutil/imgutils: av_image_check_size2() ensure width and height fit in 32bit
  49. avcodec/proresenc_kostya: use unsigned alpha for rotation
  50. avformat/rtmppkt: Simplify and deobfuscate amf_tag_skip() slightly
  51. avformat/rmdec: use 64bit for audio_framesize checks
  52. avutil/hwcontext_d3d11va: correct sizeof IDirect3DSurface9
  53. avutil/hwcontext_d3d11va: correct sizeof AVD3D11FrameDescriptor
  54. avformat/tls_schannel: Initialize ret
  55. avformat/subfile: Assert that whence is a known case
  56. avformat/subfile: Merge if into switch()
  57. avformat/rtsp: Check that lower transport is handled in one of the if()
  58. avformat/rtsp: initialize reply1
  59. avformat/rtsp: use < 0 for error check
  60. avformat/rtpenc_vc2hq: Check sizes
  61. avfilter/af_aderivative: Free out on error
  62. avfilter/af_pan: check nb_output_channels before use
  63. cbs_av1: Reject thirty-two zero bits in uvlc code
  64. tools/coverity: Phase 1 study of anti-halicogenic for coverity av_rescale()
  65. avfilter/vf_avgblur: Check plane instead of AVFrame
  66. avformat/rdt: Check pkt_len
  67. avformat/mpeg: Check len in mpegps_probe()
  68. avdevice/dshow: Check ICaptureGraphBuilder2_SetFiltergraph() for failure
  69. avcodec/vc1_loopfilter: Factor duplicate code in vc1_b_h_intfi_loop_filter()
  70. avformat/img2dec: assert no pipe on ts_from_file
  71. avcodec/cbs_jpeg: Try to move the read entity to one side in a test
  72. avformat/mov: Check edit list for overflow
  73. fftools/ffmpeg: Check read() for failure
  74. swscale/output: Avoid undefined overflow in yuv2rgb_write_full()
  75. swscale/output: alpha can become negative after scaling, use multiply
  76. avcodec/targaenc: Allocate space for the palette
  77. avcodec/r210enc: Use av_rescale for bitrate
  78. avcodec/jfdctint_template: Fewer integer anomalies
  79. avcodec/snowenc: MV limits due to mv_penalty table size
  80. avformat/mxfdec: Check container_ul->desc before use
  81. MAINTAINERS: Update the entries for the release maintainer for FFmpeg
  82. configure: update copyright year
  83. avfilter/vf_rotate: Check ff_draw_init2() return value
  84. avformat/matroskadec: Assert that num_levels is non negative
  85. avformat/img2dec: Move DQT after unrelated if()
  86. avdevice/xcbgrab: Check sscanf() return
  87. fftools/cmdutils: Add protective () to FLAGS
  88. avformat/sdp: Check before appending ","
  89. avcodec/ilbcdec: Remove dead code
  90. avcodec/vp8: Check cond init
  91. avcodec/vp8: Check mutex init
  92. avcodec/tests/dct: Use 64bit in intermediate for error computation
  93. avcodec/scpr3: Check add_dec() for failure
  94. avcodec/wavpackenc: Use unsigned for potential 31bit shift
  95. avcodec/tests/jpeg2000dwt: Use 64bit in comparission
  96. avcodec/tests/jpeg2000dwt: Use 64bit in err2 computation
  97. avformat/ape: Use 64bit for final frame size
  98. avcodec/tiff: Assert init_get_bits8() success in unpack_gray()
  99. swscale/yuv2rgb: Use 64bit for brightness computation
  100. avutil/tests/opt: Check av_set_options_string() for failure
  101. avutil/tests/dict: Check av_dict_set() before get for failure
  102. avdevice/dshow: fix badly indented line
  103. avcodec/mscc & mwsc: Check loop counts before use
  104. avcodec/mpegvideo_enc: Fix potential overflow in RD
  105. avcodec/mpeg4videodec: assert impossible wrap points
  106. avcodec/vble: Check av_image_get_buffer_size() for failure
  107. avcodec/vp3: Replace check by assert
  108. avcodec/jpeg2000dec: remove ST=3 case
  109. avcodec/fmvc: remove dead assignment
  110. avcodec/h264_slice: Remove dead sps check
  111. avcodec/lpc: copy levenson coeffs only when they have been computed
  112. avutil/tests/base64: Check with too short output array
  113. libavutil/base64: Try not to write over the array end
  114. avcodec/cbs_av1: Avoid shift overflow
  115. avcodec/mpegvideo_enc: Fix 1 line and one column images
  116. swscale/output: Fix integer overflow in yuv2rgba64_full_1_c_template()
  117. swscale/output: Fix integer overflow in yuv2rgba64_1_c_template
  118. avformat/mxfdec: Check body_offset
  119. avcodec/ac3_parser: Check init_get_bits8() for failure
  120. avcodec/hevcdec: Check ref frame
  121. doc/examples/vaapi_transcode: Simplify loop
  122. avfilter/vf_thumbnail_cuda: Set ret before checking it
  123. avfilter/signature_lookup: Dont copy uninitialized stuff around
  124. avfilter/signature_lookup: Fix 2 differences to the refernce SW
  125. fate/subtitles: Ignore line endings for sub-scc test
  126. avformat/mxfdec: Check index_edit_rate
  127. swscale/utils: Fix xInc overflow
  128. avformat/mxfdec: Make edit_unit_byte_count unsigned
  129. avformat/movenc: Check that cts fits in 32bit
  130. avformat/mxfdec: Check first case of offset_temp computation for overflow
  131. avfilter/vf_signature: Dont crash on no frames
  132. avformat/westwood_vqa: Fix 2g packets
  133. avformat/matroskadec: Check timescale
  134. avformat/sbgdec: Check for negative duration
  135. avformat/rpl: Use 64bit for total_audio_size and check it
  136. avformat/timecode: use 64bit for intermediate for rounding in fps_from_frame_rate()
  137. avformat/concatdec: Check user_duration sum
  138. avcodec/truemotion1: Height not being a multiple of 4 is unsupported
  139. avformat/cafdec: Check that data chunk end fits within 64bit
  140. avformat/dxa: Adjust order of operations around block align
  141. avformat/cafdec: dont seek beyond 64bit
  142. avformat/id3v2: read_uslt() check for the amount read
  143. avcodec/proresenc_kostya: Remove bug similarity text
  144. avcodec/vorbisdec: Check remaining data in vorbis_residue_decode_internal()
  145. avcodec/pngdec: Do not pass AVFrame into global header decode
  146. libswscale/utils: Fix bayer to yuvj
  147. swscale/swscale: Check srcSliceH for bayer
  148. swscale/utils: Allocate more dithererror
  149. avcodec/indeo3: Round dimensions up in allocate_frame_buffers()
  150. avutil/rational: Document what is to be expected from av_d2q() of doubles representing rational numbers
  151. avfilter/signature_lookup: Do not dereference NULL pointers after malloc failure
  152. avfilter/signature_lookup: dont leave uncleared pointers in sll_free()
  153. avcodec/mpegvideo_enc: Use ptrdiff_t for stride
  154. libavformat/hlsenc.c: Populate OTI using AAC profile in write_codec_attr.
  155. avcodec/mpegvideo_enc: Dont copy beyond the image
  156. avfilter/vf_minterpolate: Check pts before division
  157. avformat/flacdec: Avoid double AVERRORS
  158. avfilter/vf_vidstabdetect: Avoid double AVERRORS
  159. avfilter/vf_swaprect: round coordinates down
  160. avfilter/vf_swaprect: Use height for vertical variables
  161. avfilter/vf_swaprect: assert that rectangles are within memory
  162. avfilter/af_alimiter: Check nextpos before use
  163. avfilter/af_stereowiden: Check length
  164. avfilter/vf_weave: Fix odd height handling
  165. avfilter/vf_gradfun: Do not overread last line
  166. avformat/mov: do not set sign bit for chunk_offsets
  167. avcodec/jpeglsdec: Check Jpeg-LS LSE
  168. configure: Enable section_data_rel_ro for FreeBSD and NetBSD aarch64 / arm
  169. avformat/mov: Ignore duplicate ftyp
  170. seek: Fix crashes in ff_seek_frame_binary if built with latest Clang 14
  171. avcodec/4xm: Check for cfrm exhaustion
  172. avformat/mov: Disallow FTYP after streams
  173. doc/html: fix styling issue with Texinfo 7.0
  174. doc/html: support texinfo 7.0
  175. doc/t2h.pm: fix missing TOC with texinfo 6.8 and above
  176. doc/t2h.pm: fix missing CSS with texinfo 6.8 and above
  177. avformat/matroskadec: Fix declaration-after-statement warnings
  178. avformat/rtsp: Use rtsp_st->stream_index
  179. avcodec/jpeg2000dec: Check image offset
  180. libavutil/ppc/cpu.c: check that AT_HWCAP2 is defined
  181. avcodec/h2645_parse: Avoid EAGAIN
  182. avcodec/xvididct: Make c* unsigned to avoid undefined overflows
  183. avformat/tmv: Check video chunk size
  184. avformat/xwma: sanity check bits_per_coded_sample
  185. avformat/matroskadec: Check prebuffered_ns for overflow
  186. avformat/wavdec: Check left avio_tell for overflow
  187. avformat/tta: Better totalframes check
  188. avformat/rpl: Check for number_of_chunks overflow
  189. avformat/mov: compute absolute dts difference without overflow in mov_find_next_sample()
  190. avformat/jacosubdec: Check timeres
  191. avcodec/escape124: Do not return random numbers
  192. avformat/avs: Check if return code is representable
  193. avcodec/lcldec: Make PNG filter addressing match the code afterwards
  194. avformat/westwood_vqa: Check chunk size
  195. avformat/sbgdec: Check for period overflow
  196. avcodec/xvididct: Fix integer overflow in idct_row()
  197. avcodec/celp_math: avoid overflow in shift
  198. avformat/format: Stop reading data at EOF during probing
  199. avcodec/huffyuvdec: avoid undefined behavior with get_vlc2() failure
  200. avcodec/cscd: Fix "CamStudio Lossless Codec 1.0" gzip files
  201. avcodec/cscd: Check for CamStudio Lossless Codec 1.0 behavior in end check of LZO files
  202. avcodec/hevcdec: Fix undefined memcpy()
  203. avcodec/mpeg4videodec: more unsigned in amv computation
  204. avcodec/tta: fix signed overflow in decorrelate
  205. avcodec/xvididct: Fix integer overflow in idct_row()
  206. avformat/avr: Check sample rate
  207. avcodec/jpeg2000dec: Check for reduction factor and image offset
  208. avutil/softfloat: Basic documentation for av_sincos_sf()
  209. avutil/softfloat: fix av_sincos_sf()
  210. avcodec/utils: fix 2 integer overflows in get_audio_frame_duration()
  211. avcodec/hevcdec: Avoid null pointer dereferences in MC
  212. avcodec/takdsp: Fix integer overflows
  213. avcodec: Ignoring errors is only possible before the input end
  214. avcodec/noise_bsf: Check for wrapped frames
  215. avformat/wavdec: Check that smv block fits in available space
  216. avcodec/tak: Check remaining bits in ff_tak_decode_frame_header()
  217. avcodec/utils: the IFF_ILBM implementation assumes that there are a multiple of 16 allocated
  218. avcodec/vorbisdec: Check codebook float values to be finite
  219. avcodec/g2meet: Replace fake allocation avoidance for framebuf
  220. avcodec/lcldec: More space for rgb24
  221. avcodec/lcldec: Support 4:1:1 and 4:2:2 with odd width
  222. libavcodec/lcldec: width and height should not be unsigned
  223. avcodec/x86/mathops: clip constants used with shift instructions within inline assembly
  224. avformat/mov: Check if a key is longer than the atom containing it
  225. avcodec/nvdec: reset bitstream_len/nb_slices when resetting bitstream pointer
  226. avformat/mov: don't abort on duplicate Mastering Display Metadata boxes
  227. avcodec/vdpau_mpeg4: fix order of quant matrix coefficients
  228. avcodec/vdpau_mpeg12: fix order of quant matrix coefficients
  229. avcodec/nvdec_mpeg4: fix order of quant matrix coefficients
  230. avcodec/nvdec_mpeg2: fix order of quant matrix coefficients
  231. version 4.2.9
  232. avcodec/escape124: Check that blocks are allocated before use
  233. avcodec/huffyuvdec: Fix undefined behavior with shift
  234. avcodec/j2kenc: Replace RGB24 special case by generic test
  235. avcodec/j2kenc: remove misleading pred value
  236. avcodec/j2kenc: fix 5/3 DWT identifer
  237. avcodec/vp3: Check width to avoid assertion failure
  238. avcodec/g729postfilter: Limit shift in long term filter
  239. configure: update copyright year
  240. avcodec/tests/snowenc: Fix 2nd test
  241. avcodec/tests/snowenc: return a failure if DWT/IDWT mismatches
  242. avcodec/snowenc: Fix visual weight calculation
  243. avcodec/tests/snowenc: unbreak DWT tests
  244. avcodec/vp3: Add missing check for av_malloc
  245. avcodec/escape124: Fix some return codes
  246. avcodec/escape124: fix signdness of end of input check
  247. Use https for repository links
  248. avcodec/motionpixels: Mask pixels to valid values
  249. avcodec/xpmdec: Check size before allocation to avoid truncation
  250. avcodec/bink: Avoid undefined out of array end pointers in binkb_decode_plane()
  251. avcodec/bink: Fix off by 1 error in ref end
  252. avcodec/utils: Ensure linesize for SVQ3
  253. avcodec/utils: allocate a line more for VC1 and WMV3
  254. avcodec/videodsp_template: Adjust pointers to avoid undefined pointer things
  255. avcodec/pngdec: Check deloco index more exactly
  256. avcodec/ffv1dec: Check that num h/v slices is supported
  257. avformat/mov: Check samplesize and offset to avoid integer overflow
  258. avcodec/pictordec: Remove mid exit branch
  259. avcodec/eac3dec: avoid float noise in fixed mode addition to overflow
  260. avcodec/utils: use 32pixel alignment for bink
  261. avcodec/scpr3: Check bx
  262. avcodec/012v: Order operations for odd size handling
  263. avcodec/eatgq: : Check index increments in tgq_decode_block()
  264. avcodec/scpr: Test bx before use
  265. avcodec/sunrast: Fix maplength check
  266. avcodec/wavpack: Avoid undefined shift in get_tail()
  267. avformat/id3v2: Check taglen in read_uslt()
  268. avcodec/ffv1dec: restructure slice coordinate reading a bit
  269. avcodec/mlpdec: Check max matrix instead of max channel in noise check
  270. swscale/input: Use more unsigned intermediates
  271. avcodec/alsdec: The minimal block is at least 7 bits
  272. avformat/replaygain: avoid undefined / negative abs
  273. swscale/output: Bias 16bps output calculations to improve non overflowing range
  274. avcodec/speedhq: Check buf_size to be big enough for DC
  275. avcodec/ffv1dec: Fail earlier if prior context is corrupted
  276. avcodec/nvenc: fix vbv buffer size in cq mode
  277. avcodec/mjpegenc: take into account component count when writing the SOF header size
  278. checkasm: float_dsp: Scale FLT/DBL_EPSILON sufficiently when comparing
  279. swscale: aarch64: Fix yuv2rgb with negative strides
  280. version 4.2.8
  281. avformat/vividas: Check packet size
  282. avcodec/dstdec: Check for overflow in build_filter()
  283. avformat/spdifdec: Use 64bit to compute bit rate
  284. avformat/rpl: Use 64bit for duration computation
  285. avformat/xwma: Use av_rescale() for duration computation
  286. avformat/sdsdec: Use av_rescale() to avoid intermediate overflow in duration calculation
  287. avformat/rmdec: check tag_size
  288. avformat/nutdec: Check fields
  289. avformat/flvdec: Use 64bit for sum_flv_tag_size
  290. avformat/dxa: avoid bpc overflows
  291. avformat/cafdec: Check that nb_frasmes fits within 64bit
  292. avformat/asfdec_o: Limit packet offset
  293. avformat/ape: Check frames size
  294. avformat/icodec: Check nb_pal
  295. avformat/aiffdec: Use 64bit for block_duration use
  296. avformat/aiffdec: Check block_duration
  297. avformat/mxfdec: only probe max run in
  298. avformat/mxfdec: Check run_in is within 65536
  299. avcodec/apedec: Fix integer overflow in filter_3800()
  300. avcodec/tta: Check 24bit scaling for overflow
  301. avcodec/tiff: Fix loop detection
  302. libavformat/hls: Free keys
  303. avcodec/fmvc: Move frame allocation to a later stage
  304. avfilter/vf_showinfo: remove backspaces
  305. avcodec/speedhq: Check width
  306. avcodec/bink: disallow odd positioned scaled blocks
  307. avformat/asfdec_o: limit recursion depth in asf_read_unknown()
  308. doc/git-howto.texi: Document commit signing
  309. libavcodec/8bps: Check that line lengths fit within the buffer
  310. libavformat/iff: Check for overflow in body_end calculation
  311. avformat/avidec: Prevent entity expansion attacks
  312. avcodec/h263dec: Sanity check against minimal I/P frame size
  313. avcodec/hevcdec: Check s->ref in the md5 path similar to hwaccel
  314. MAINTAINERS: Add ED25519 key for signing my commits in the future
  315. avcodec/hevc_filter: copy_CTB() only within width&height
  316. avformat/flvdec: Check for EOF in index reading
  317. avformat/nutdec: Check get_packetheader() in mainheader
  318. avformat/asfdec_f: Use 64bit for packet start time
  319. avcodec/lagarith: Check dst/src in zero run code
  320. avcodec/h264dec: Skip late SEI
  321. avcodec/sbrdsp_fixed: Fix integer overflows in sbr_qmf_deint_neg_c()
  322. avfilter/vf_signature: Fix integer overflow in filter_frame()
  323. avformat/rtsp: break on unknown protocols
  324. avcodec/hevcdsp_template: stay within tables in sao_band_filter()
  325. avcodec/qpeldsp: copy less for the mc0x cases
  326. avcodec/ffv1dec: Limit golomb rice coded slices to width 8M
  327. avformat/iff: simplify duration calculation
  328. avcodec/wnv1: Check for width =1
  329. avcodec/ffv1dec_template: fix indention
  330. avformat/sctp: close socket on errors
  331. avcodec/aasc: Fix indention
  332. avcodec/qdrw: adjust max colors to array size
  333. avcodec/alacdsp: Make intermediates unsigned
  334. avformat/aiffdec: cleanup size handling for extreem cases
  335. avcodec/jpeglsdec: fix end check for xfrm
  336. avcodec/cdgraphics: limit scrolling to the line
  337. avformat/aiffdec: avoid integer overflow in get_meta()
  338. avformat/ape: more bits in size for less overflows
  339. avformat/bfi: Check offsets better
  340. avformat/asfdec_f: Check packet_frag_timestamp
  341. avcodec/texturedspenc: Fix indexing in color distribution determination
  342. avformat/act: Check ff_get_wav_header() for failure
  343. avfilter/vsrc_mandelbrot: Check for malloc failure
  344. avfilter/vf_frei0r: Copy to frame allocated according to frei0r requirements
  345. avfilter/video: Add ff_default_get_video_buffer2() to set specific alignment
  346. avformat/genh: Check sample rate
  347. configure: extend SDL check to accept all 2.x versions
  348. version 4.2.7
  349. avfilter/vf_colorspace: fix memmory leaks
  350. avformat/nutenc: don't allocate a dynamic AVIOContext if no index is going to be written
  351. avfilter/vf_random: fix memory leaks
  352. avfilter/vf_bwdif: fix heap-buffer overflow
  353. fftools/ffmpeg_opt: Fix leak of options when parsing options fails
  354. avfilter/vf_edgedetect: fix heap-buffer overflow
  355. avfilter/vf_w3fdif: deny processing small videos
  356. avfilter/vf_avgblur: fix heap-buffer overflow
  357. avfilter/af_tremolo: fix heap-buffer overflow
  358. avfilter/vf_edgedetect: check if height is big enough
  359. avfilter/vf_bitplanenoise: fix overreads
  360. avfilter/vf_fieldorder: fix heap-buffer overflow
  361. avfilter/vf_fieldmatch: fix heap-buffer overflow
  362. avcodec/pngenc: remove monowhite from apng formats
  363. lavf/tls_mbedtls: add support for mbedtls version 3
  364. version 4.2.6
  365. configure: bump year
  366. avfilter/vf_lenscorrection: make width/height int
  367. avcodec/diracdec: avoid signed integer overflow in global mv
  368. avcodec/takdsp: Fix integer overflow in decorrelate_sf()
  369. avcodec/apedec: fix a integer overflow in long_filter_high_3800()
  370. avfilter/vf_subtitles: pass storage size to libass
  371. avformat/aqtitledec: Skip unrepresentable durations
  372. avformat/cafdec: Do not store empty keys in read_info_chunk()
  373. avformat/hls: Check target_duration
  374. avcodec/pixlet: Avoid signed integer overflow in scaling in filterfn()
  375. avformat/matroskadec: Check pre_ns
  376. avcodec/sonic: Use unsigned for predictor_k to avoid undefined behavior
  377. avformat/matroskadec: Use rounded down duration in get_cue_desc() check
  378. avformat/avidec: Check height
  379. avformat/rmdec: Better duplicate tags check
  380. avformat/mov: Disallow empty sidx
  381. avformat/matroskadec: Check duration
  382. avformat/mov: Corner case encryption error cleanup in mov_read_senc()
  383. avcodec/jpeglsdec: Fix if( code style
  384. avcodec/jpeglsdec: Check get_ur_golomb_jpegls() for error
  385. avcodec/motion_est: fix indention of ff_get_best_fcode()
  386. avcodec/motion_est: Fix xy indexing on range violation in ff_get_best_fcode()
  387. avcodec/jpeglsdec: Increase range for N in ls_get_code_runterm() by using unsigned
  388. avformat/matroskadec: Check desc_bytes
  389. avformat/utils: Fix invalid NULL pointer operation in ff_parse_key_value()
  390. avformat/matroskadec: Fix infinite loop with bz decompression
  391. avformat/mov: Check size before subtraction
  392. avcodec/apedec: Fix integer overflows in predictor_update_3930()
  393. avcodec/apedec: fix integer overflow in 8bit samples
  394. avformat/flvdec: timestamps cannot use the full int64 range
  395. avcodec/vqavideo: reset accounting on error
  396. avcodec/alacdsp: fix integer overflow in decorrelate_stereo()
  397. avformat/4xm: Check for duplicate track ids
  398. avformat/4xm: Consider max_streams on reallocating tracks array
  399. avformat/mov: Check next offset in mov_read_dref()
  400. avformat/vivo: Favor setting fps from explicit fractions
  401. avformat/vivo: Do not use the general expression evaluator for parsing a floating point value
  402. avformat/mxfdec: Check for duplicate mxf_read_index_entry_array()
  403. avcodec/apedec: Change avg to uint32_t
  404. avformat/mov: Disallow duplicate smdm
  405. avformat/mov: Check for EOF in mov_read_glbl()
  406. avcodec/vp3: Check version in all cases when VP4 code is not built
  407. avformat/mov: Check channels for mov_parse_stsd_audio()
  408. avformat/avidec: Check read_odml_index() for failure
  409. avformat/aiffdec: Use av_rescale() for bitrate
  410. avformat/aiffdec: sanity check block_align
  411. avformat/aiffdec: Check sample_rate
  412. avfilter/vf_gblur: fix heap-buffer overflow
  413. avfilter/vf_lenscorrection: fix division by zero
  414. avformat/latmenc: abort if no extradata is available
  415. avformat/movenc: Fix segfault when remuxing rtp hint stream
  416. avformat/tty: add probe function
  417. avfilter/vf_neighbor: check if width is 1
  418. avcodec/flac_parser: Consider AV_INPUT_BUFFER_PADDING_SIZE
  419. avcodec/ttadsp: Fix integer overflows in tta_filter_process_c()
  420. avutil/mathematics: Document av_rescale_rnd() behavior on non int64 results
  421. configure: Add missing libshine->mpegaudioheader dependency
  422. version 4.2.5
  423. configure: update copyright year
  424. avformat/matroskadec: Reset state also on failure in matroska_reset_status()
  425. avformat/wavdec: Check smv_block_size
  426. avformat/rmdec: Check for multiple audio_stream_info
  427. avcodec/apedec: Use 64bit to avoid overflow
  428. avcodec/apedec: Fix undefined integer overflow in long_filter_ehigh_3830()
  429. oavformat/avidec: Check offset in odml
  430. avformat/mpegts: use actually read packet size in mpegts_resync special case
  431. avfilter/scale_npp: fix non-aligned output frame dimensions
  432. Update for 4.2.5
  433. swscale/alphablend: Fix slice handling
  434. avcodec/mxpegdec: Check for AVDISCARD_ALL
  435. avcodec/flicvideo: Check remaining bytes in FLI*COPY
  436. avcodec/cbs_h265_syntax_template: Limit sps_num_palette_predictor_initializer_minus1 to 127
  437. avcodec/mpeg12dec: Do not put mpeg_f_code into an invalid state on error return
  438. avcodec/mpegvideo_enc: Limit bitrate tolerance to the representable
  439. avcodec/apedec: Fix integer overflow in intermediate
  440. avformat/mvdec: Do not set invalid sample rate
  441. avformat/rmdec: Use 64bit for intermediate for DEINT_ID_INT4
  442. avformat/mov: Check for duplicate clli
  443. avformat/jacosubdec: Check for min in t overflow in get_shift()
  444. avformat/mxfdec: check channel number in mxf_get_d10_aes3_packet()
  445. avcodec/utils: don't return negative values in av_get_audio_frame_duration()
  446. avcodec/jpeg2000dec: Check that atom header is within bytsetream
  447. avcodec/apedec: Fix 2 integer overflows in filter_3800()
  448. avcodec/xpmdec: Move allocations down after more error checks
  449. network: Define ENOTCONN as WSAENOTCONN if not defined
  450. avformat/avidec: Use 64bit for frame number in odml index parsing
  451. avcodec/mjpegbdec: Skip SOS on AVDISCARD_ALL as does mjpeg
  452. avcodec/mjpegdec: Check for bits left in mjpeg_decode_scan_progressive_ac()
  453. avformat/adtsenc: return value check for init_get_bits in adts_decode_extradata
  454. avcodec/webp: Check available space in loop in decode_entropy_coded_image()
  455. avcodec/vc1dec: ff_print_debug_info() does not support WMV3 field_mode
  456. avcodec/frame_thread_encoder: Free AVCodecContext structure on error during init
  457. avcodec/faxcompr: Check for end of input in cmode == 1 in decode_group3_2d_line()
  458. avcodec/vc1dec: Disable error concealment for *IMAGE
  459. avcodec/sbrdsp_fixed: Fix negation overflow in sbr_neg_odd_64_c()
  460. avformat/wtvdec: Check for EOF before seeking back in parse_media_type()
  461. avformat/wavdec: Use 64bit in new_pos computation
  462. avformat/sbgdec: Check for overflow in timestamp preparation
  463. avformat/dsicin: Check packet size for overflow
  464. avformat/bfi: check nframes
  465. avformat/avidec: fix position overflow in avi_load_index()
  466. avformat/asfdec_f: Check sizeX against padding
  467. avformat/aiffdec: Check for size overflow in header parsing
  468. avcodec/aaccoder: Add minimal bias in search_for_ms()
  469. avfilter/af_drmeter: Check that there is data
  470. avfilter/vf_mestimate: Check b_count
  471. avformat/mov: do not ignore errors in mov_metadata_hmmt()
  472. avformat/mxfdec: Check size for shrinking
  473. avcodec/dnxhddec: check and propagate function return value
  474. swscale/slice: Fix wrong return on error
  475. swscale/slice: Check slice for allocation failure
  476. avformat/matroskadec: Fix handling of huge default durations
  477. avcodec/lpc: check for zero err in normalization in compute_lpc_coefs()
  478. avformat/ftp: Check for av_strtok() failure
  479. tools/cws2fws: Check read() for failure
  480. avcodec/cpia: Fix missing src_size update
  481. avcodec/clearvideo: Check tile_size to be not too large
  482. avcodec/utils: Use 64bit for intermediate in AV_CODEC_ID_ADPCM_THP* duration calculation
  483. avformat/rmdec: Check old_format len for overflow
  484. avformat/realtextdec: Check the pts difference before using it for the duration computation
  485. avformat/qcp: Avoid negative nb_rates
  486. avformat/nutdec: Check tmp_size
  487. avformat/msf: Check that channels doesnt overflow during extradata construction
  488. avformat/mpc8: Check for position overflow in mpc8_handle_chunk()
  489. avformat/iff: Use 64bit in duration computation
  490. avformat/dxa: Check fps to be within the supported range more precissely
  491. avcodec/iff: Only write palette to plane 1 if its PAL8
  492. avformat/tta: Check for EOF in index reading loop
  493. Update missed irc links
  494. avformat/rpl: The associative law doesnt hold for signed integers in C
  495. avcodec/faxcompr: Check available bits in decode_uncompressed()
  496. avcodec/faxcompr: Check if bits are available before reading in cmode == 9 || cmode == 10
  497. avcodec/utils: do "calc from frame_bytes, channels, and block_align" in 64bit
  498. avcodec/ttadata: Add sentinel at the end of ff_tta_shift_1
  499. avformat/mov: Check for duplicate mdcv
  500. avfilter/vf_dctdnoiz: Check threads
  501. avfilter/vf_ciescope: Fix undefined behavior in rgb_to_xy() with black
  502. avformat/rpl: Check for EOF and zero framesize
  503. avcodec/vc2enc: Check for non negative slice bounds
  504. avformat/rpl: Use 64bit in bitrate computation and check it
  505. avcodec/svq1enc: Do not print debug RD value before it has been computed
  506. avcodec/aacpsy: Check bandwidth
  507. avcodec/aacenc: Do not divide by lambda_count if it is 0
  508. avcodec/aacenc: Use FLT_EPSILON for lambda minimum
  509. avformat/cinedec: Fix index_entries size check
  510. avfilter/vf_yadif: Fix handing of tiny images
  511. avfilter/vf_vmafmotion: Check dimensions
  512. avformat/movenc: Check pal_size before use
  513. avcodec/lpc: Avoid floating point division by 0
  514. avcodec/aacpsy: Avoid floating point division by 0 of norm_fac
  515. avcodec/aacenc: Avoid 0 lambda
  516. avcodec/exr: x/ymax cannot be INT_MAX
  517. avformat/avio: Check av_opt_copy() for failure
  518. avcodec/clearvideo: Check for 0 tile_shift
  519. avcodec/vc1: Check remaining bits in ff_vc1_parse_frame_header()
  520. avformat/mov: Ignore duplicate CoLL
  521. avformat/mov: Limit nb_chapter_tracks to input size
  522. avformat/utils: Use 64bit earlier in r_frame_rate check
  523. avformat/mvdec: Check sample rate in parse_audio_var()
  524. avcodec/faxcompr: Check for end of bitstream in decode_group3_1d_line() and decode_group3_2d_line()
  525. avcodec/utils: treat PAL8 for jpegs similar to other colorspaces
  526. avcodec/jpeglsdec: Set alpha plane in PAL8 so image is not 100% transparent
  527. avformat/asfdec_o: Use ff_get_extradata()
  528. avformat/id3v2: Check end for overflow in id3v2_parse()
  529. avformat/wtvdec: Improve size overflow checks in parse_chunks()
  530. avcodec/faxcompr: Check remaining bits on error in decode_group3_1d_line()
  531. avcodec/utils: Check ima wav duration for overflow
  532. avformat/cafdec: Check channels
  533. avcodec/dpx: Check bits_per_color earlier
  534. avcodec/pnm_parser: Check image size addition for overflow
  535. avcodec/h265_metadata_bsf: Check nb_units before accessing the first in h265_metadata_update_fragment()
  536. avformat/rmdec: use larger intermediate type for audio_framesize * sub_packet_h check
  537. avcodec/h264_slice: Check input SPS in ff_h264_update_thread_context()
  538. avcodec/mpegvideo: Update chroma_?_shift in ff_mpv_common_frame_size_change()
  539. avformat/mov: Ignore multiple STSC / STCO
  540. avformat/utils: Extend overflow check in dts wrap in compute_pkt_fields()
  541. avfilter/vf_scale: Fix adding 0 to NULL (which is UB) in scale_slice()
  542. avutil/common: Add FF_PTR_ADD()
  543. avformat/wtvdec: Check size in SBE2_STREAM_DESC_EVENT / stream2_guid
  544. avformat/cafdec: Do not build an index if all packets are the same
  545. avformat/vividas: Use equals check with n in read_sb_block()
  546. avcodec/sonic: Use unsigned temporary in predictor_calc_error()
  547. avformat/jacosubdec: Use 64bit intermediate for start/end timestamp shift
  548. avformat/flvdec: Check array entry number
  549. avcodec/h264_slice: Check sps in h264_slice_header_init()
  550. avformat/movenc: Avoid loosing cluster array on failure
  551. avformat/avidec: Check for dv streams before using priv_data in parse ##dc/##wb
  552. avformat/mov: Check sample size for overflow in mov_parse_stsd_audio()
  553. avcodec/ffwavesynth: Avoid signed integer overflow in phi_at()
  554. avcodec/mpeg4videoenc: Check extradata malloc()
  555. avcodec/speedhq: Width < 8 is not supported
  556. avformat/matroskadec: Check for EOF in resync loop
  557. avcodec/utils: Use more bits for intermediate for AV_CODEC_ID_ADPCM_MS
  558. avcodec/jpegls: Check A[Q] for overflow in ff_jpegls_update_state_regular()
  559. avformat/voc_packet: prevent remaining size from becoming negative in ff_voc_get_packet()
  560. avutil/timecode: Avoid fps overflow
  561. avformat/mvi: Check audio size for more overflows
  562. avcodec/flacdec: Avoid undefined shift in error case
  563. avcodec/ffv1dec: Check if trailer is available
  564. avcodec/4xm: Check pre_gb in decode_i_block()
  565. avcodec/dcadsp: Fix integer overflow in dmix_add_c()
  566. avformat/flvdec: Check double before cast in parse_keyframes_index()
  567. avformat/paf: Check for EOF before allocation in read_header()
  568. avcodec/aacdec_template: Avoid undefined negation in imdct_and_windowing_eld()
  569. avformat/lxfdec: Fix multiple integer overflows related to track_size
  570. avcodec/exr: skip bottom clearing loop when its outside the image
  571. avutil/parseutils: Check sign in av_parse_time()
  572. avformat/aiffdec: Check that SSND is at least 8 bytes
  573. avformat/dcstr: Check sample rate
  574. avcodec/alsdec: Check bitstream input in read_block()
  575. avformat/mov: Extend data_size check in mov_read_udta_string()
  576. avformat/aadec: Check for EOF while reading chapters
  577. avformat/voc_packet: Add a basic check on max_size
  578. avformat/microdvddec: use 64bit for durations
  579. avcodec/hapdec: Change compressed_offset to unsigned 32bit
  580. avformat/rmdec: Check codec_length without overflow
  581. avformat/mov: Check element count in mov_metadata_hmmt()
  582. avcodec/vp8: Move end check into MB loop in vp78_decode_mv_mb_modes()
  583. avcodec/fits: Check gcount and pcount being non negative
  584. avformat/nutdec: Check timebase count against main header length
  585. avformat/electronicarts: Clear partial_packet on error
  586. avformat/r3d: Check samples before computing duration
  587. avcodec/pnm_parser: Check av_image_get_buffer_size() for failure
  588. avformat/wavdec: Consider AV_INPUT_BUFFER_PADDING_SIZE in set_spdif()
  589. avformat/rmdec: Check remaining space in debug av_log() loop
  590. avformat/flvdec: Treat high ts byte as unsigned
  591. avformat/samidec: Sanity check pts
  592. avcodec/jpeg2000dec: Check atom_size in jp2_find_codestream()
  593. avformat/avidec: Use 64bit in get_duration()
  594. avformat/mov: Check for duplicate st3d
  595. avformat/mvdec: Check for EOF in read_index()
  596. avcodec/jpeglsdec: Fix k=16 in ls_get_code_regular()
  597. avformat/id3v2: Check the return from avio_get_str()
  598. avcodec/hevc_sei: Check payload size in decode_nal_sei_message()
  599. libavutil/eval: Remove CONFIG_TRAPV special handling
  600. avformat/wtvdec: Check len in parse_chunks() to avoid overflow
  601. avformat/asfdec_f: Add an additional check for the extradata size
  602. avformat/3dostr: Check sample_rate
  603. avformat/4xm: Make audio_frame_count 64bit
  604. avformat/mov: Use av_mul_q() to avoid integer overflows
  605. avcodec/vp9dsp_template: Fix integer overflows in itxfm_wrapper
  606. avformat/rmdec: Reorder operations to avoid overflow
  607. avcodec/mxpegdec: fix SOF counting
  608. avcodec/rscc: Check inflated_buf size whan it is used
  609. avformat/mvdec: Sanity check SAMPLE_WIDTH
  610. avformat/rmdec: Fix codecdata_length overflow check
  611. avcodec/simple_idct: Fix undefined integer overflow in idct4row()
  612. avformat/tta: Use 64bit intermediate for index
  613. avformat/soxdec: Check channels to be positive
  614. avcodec/cscd: Check output len in zlib as in lzo
  615. avcodec/vp3: Check input amount in theora_decode_header()
  616. avformat/wavdec: Check avio_get_str16le() for failure
  617. avformat/flvdec: Check for EOF in amf_skip_tag()
  618. avformat/aiffdec: Check size before subtraction in get_aiff_header()
  619. avformat/electronicarts: More chunk_size checks
  620. avcodec/cfhd: check peak.offset
  621. avformat/tedcaptionsdec: Check for overflow in parse_int()
  622. avformat/nuv: Check channels
  623. avformat/mpc8: Check size before implicitly converting to int
  624. avformat/nutdec: Fix integer overflow in count computation
  625. avformat/mvi: Use 64bit for testing dimensions
  626. avformat/utils: Check dts in update_initial_timestamps() more
  627. avformat/flvdec: Check for avio_read() failure in amf_get_string()
  628. avformat/flvdec: Check for nesting depth in amf_skip_tag()
  629. avformat/flvdec: Check for nesting depth in amf_parse_object()
  630. avformat/asfdec_o: Check for EOF in asf_read_marker()
  631. avformat/utils: Check dts - (1<<pts_wrap_bits) overflow
  632. avformat/bfi: Check chunk_header
  633. avformat/ads: Check size
  634. avformat/iff: Check block align also for ID_MAUD
  635. avcodec/utils: Check for integer overflow in get_audio_frame_duration() for ADPCM_DTK
  636. avformat/fitsdec: Better size checks
  637. avformat/mxfdec: Fix integer overflow in next position in mxf_read_local_tags()
  638. avformat/avidec: dv does not support palettes
  639. libavformat/utils: consider avio_size() failure in ffio_limit()
  640. avformat/nistspheredec: Check bits_per_coded_sample and channels
  641. avformat/asfdec_o: Check size vs. offset in detect_unknown_subobject()
  642. avformat/utils: check for integer overflow in av_get_frame_filename2()
  643. avutil/timecode: Avoid undefined behavior with large framenum
  644. avformat/mov: Check a.size before computing next_root_atom
  645. avformat/sbgdec: Reduce the amount of floating point in str_to_time()
  646. avformat/mxfdec: Free all types for both Descriptors
  647. uavformat/rsd: check for EOF in extradata
  648. avcodec/wmaprodec: Check packet size
  649. avcodec/rasc: Check frame before clearing
  650. avformat/vividas: Check number of audio channels
  651. avcodec/alsdec: Fix integer overflow with quant_cof
  652. avformat/mpegts: Fix argument type for av_log
  653. avformat/cafdec: clip sample rate
  654. avcodec/ffv1dec: Fix off by 1 error with quant tables
  655. avformat/mpegts: Increase pcr_incr width to 64bit
  656. avcodec/utils: Check bitrate for overflow in get_bit_rate()
  657. avformat/mov: Check if hoov is at the end
  658. avcodec/hevc_ps: check scaling_list_dc_coef
  659. avformat/iff: Check data_size
  660. avformat/matroskadec: Sanity check codec_id/track type
  661. avformat/rpl: Check the number of streams
  662. avformat/vividas: Check sample_rate
  663. avformat/vividas: Make len signed
  664. avcodec/h264idct_template: Fix integer overflow in ff_h264_chroma422_dc_dequant_idct()
  665. avformat/dsfdec: Check block_align more completely
  666. avformat/mpc8: Check remaining space in mpc8_parse_seektable()
  667. avformat/id3v2: Sanity check tlen before alloc and uncompress
  668. avformat/vqf: Check len for COMM chunks
  669. avcodec/hevc_cabac: Limit value in coeff_abs_level_remaining_decode() tighter
  670. avformat/cafdec: Check the return code from av_add_index_entry()
  671. avformat/cafdec: Check for EOF in index read loop
  672. avformat/cafdec: Check that bytes_per_packet and frames_per_packet are non negative
  673. avformat/mpc8: correct integer overflow in mpc8_parse_seektable()
  674. avformat/mpc8: correct 32bit timestamp truncation
  675. avcodec/exr: Check ymin vs. h
  676. avformat/avs: Use 64bit for the avio_tell() output
  677. avformat/wavdec: More complete size check in find_guid()
  678. avformat/iff: Check size before skip
  679. avformat/rmdec: Check for EOF in index packet reading
  680. avcodec/vp3dsp: Use unsigned constant to avoid undefined integer overflow in ff_vp3dsp_set_bounding_values()
  681. avformat/icodec: Check for zero streams and stream creation failure
  682. avformat/icodec: Factor failure code out in read_header()
  683. avformat/bintext: Check width
  684. avformat/sbgdec: Check that end is not before start
  685. avformat/lvfdec: Check stream_index before use
  686. avformat/au: cleanup on EOF return in au_read_annotation()
  687. avformat/mpegts: Limit copied data to space
  688. avformat/bintext: Check width in idf_read_header()
  689. avformat/iff: check size against INT64_MAX
  690. avformat/vividas: improve extradata packing checks in track_header()
  691. avformat/paf: Check for EOF in read_table()
  692. avformat/gxf: Check pkt_len
  693. avformat/aiffdec: Check packet size
  694. avformat/concatdec: use av_strstart()
  695. avformat/wavdec: Refuse to read chunks bigger than the filesize in w64_read_header()
  696. avformat/rsd: Check size and start before computing duration
  697. avformat/vividas: better check of current_sb_entry
  698. avformat/iff: More completely check body_size
  699. avformat/xwma: Check for EOF in dpds_table read code
  700. avcodec/utils: Check sample rate before use for AV_CODEC_ID_BINKAUDIO_DCT in get_audio_frame_duration()
  701. avcodec/dirac_parser: do not offset AV_NOPTS_OFFSET
  702. avformat/rmdec: Make expected_len 64bit
  703. avformat/pcm: Check block_align
  704. avformat/lrcdec: Clip timestamps
  705. avformat/electronicarts: Check for EOF in each iteration of the loop in ea_read_packet()
  706. avformat/ifv: Check that total frames do not overflow
  707. avcodec/vp9dsp_template: Fix some overflows in iadst8_1d()
  708. avcodec/fits: Check bscale
  709. avformat/nistspheredec: Check bps
  710. avformat/jacosubdec: Use 64bit inside get_shift()
  711. avformat/genh: Check block_align
  712. avformat/mvi: Check count for overflow
  713. avcodec/magicyuv: Check slice size before reading flags and pred
  714. avformat/asfdec_f: Check for negative ext_len
  715. avformat/bethsoftvid: Check image dimensions before use
  716. avformat/genh: Check block_align for how it will be used in SDX2_DPCM
  717. avformat/au: Check for EOF in au_read_annotation()
  718. avformat/vividas: Check for zero v_size
  719. avformat/segafilm: Do not assume AV_CODEC_ID_NONE is 0
  720. avformat/segafilm: Check that there is a stream
  721. avformat/wtvdec: Check dir_length
  722. avformat/ffmetadec: finalize AVBPrint on errors
  723. avcodec/decode/ff_get_buffer: Check for overflow in FFALIGN()
  724. avcodec/exr: Check limits to avoid overflow in delta computation
  725. avformat/boadec: Check that channels and block_align are set
  726. avformat/asfdec_f: Check name_len for overflow
  727. avcodec/h264idct_template: Fix integer overflow in ff_h264_chroma422_dc_dequant_idct()
  728. avcodec/aacdec_fixed: Limit index in vector_pow43()
  729. avformat/rmdec: sanity check coded_framesize
  730. avformat/flvdec: Check for EOF in amf_parse_object()
  731. avcodec/smacker: Check remaining bits in SMK_BLK_FULL
  732. avcodec/cook: Check subpacket index against max
  733. avcodec/utils: Check for overflow with ATRAC* in get_audio_frame_duration()
  734. avcodec/hevcpred_template: Fix diagonal chroma availability in 4:2:2 edge case in intra_pred
  735. avformat/icodec: Change order of operations to avoid NULL dereference
  736. avcodec/exr: Fix overflow with many blocks
  737. avcodec/vp9dsp_template: Fix integer overflows in idct16_1d()
  738. avcodec/ansi: Check initial dimensions
  739. avcodec/hevcdec: Check slice_cb_qp_offset / slice_cr_qp_offset
  740. avcodec/sonic: Check for overread
  741. avformat/subviewerdec: fail on AV_NOPTS_VALUE
  742. avcodec/exr: Check line size for overflow
  743. avcodec/exr: Check xdelta, ydelta
  744. avcodec/celp_filters: Avoid invalid negation in ff_celp_lp_synthesis_filter()
  745. avcodec/takdsp: Fix negative shift in decorrelate_sf()
  746. avcodec/dxtory: Fix negative stride shift in dx2_decode_slice_420()
  747. avformat/asfdec_f: Change order or operations slightly
  748. avformat/dxa: Use av_rescale() for duration computation
  749. avcodec/vc1_block: Fix integer overflow in ac value
  750. avformat/iff: Check data_size not overflowing int64
  751. avcodec/dxtory: Fix negative shift in dx2_decode_slice_410()
  752. avcodec/sonic: Check channels before deallocating
  753. avformat/vividas: Check for EOF in first loop in track_header()
  754. avcodec/ansi: Check nb_args for overflow
  755. avformat/wc3movie: Cleanup on wc3_read_header() failure
  756. avformat/wc3movie: Move wc3_read_close() up
  757. avcodec/diracdsp: Fix integer anomaly in dequant_subband_*
  758. avutil/fixed_dsp: Fix integer overflows in butterflies_fixed_c()
  759. avcodec/wmalosslessdec: Check remaining space before padding and channel residue
  760. avformat/cdg: Fix integer overflow in duration computation
  761. avcodec/mpc: Fix multiple numerical overflows in ff_mpc_dequantize_and_synth()
  762. avcodec/agm: Fix off by 1 error in decode_inter_plane()
  763. avformat/electronicarts: Check if there are any streams
  764. avcodec/ffwavesynth: Fix integer overflow in wavesynth_synth_sample / WS_SINE
  765. avcodec/vp9dsp_template: Fix integer overflow in iadst8_1d()
  766. avformat/avidec: Fix io_fsize overflow
  767. avcodec/cfhd: Check transform type
  768. avcodec/tiff: Restrict tag order based on specification
  769. avformat/siff: Reject audio packets without audio stream
  770. avformat/mpeg: Check avio_read() return value in get_pts()
  771. avcodec/tiff: Check bpp/bppcount for 0
  772. avcodec/snowdec: Sanity check hcoeff
  773. avformat/mov: Check comp_brand_size
  774. avcodec/alac: Check decorr_shift to avoid invalid shift
  775. avcodec/tdsc: Fix tile checks
  776. avcodec/cbs_jpeg: Fix uninitialized end index in cbs_jpeg_split_fragment()
  777. avcodec/cuviddec: backport extradata fixes
  778. avcodec/cuviddec: handle arbitrarily sized extradata
  779. lavf/tls_gnutls: check for interrupt inside handshake loop
  780. avformat/tls_schannel: immediately return decrypted data if available
  781. avformat/tls_schannel: always decrypt all received data
  782. avformat/sdp: Fix potential write beyond end of buffer
  783. avformat/mm: Check for existence of audio stream
  784. version 4.2.4
  785. avformat/mov: Fix unaligned read of uint32_t and endian-dependance in mov_read_default
  786. avcodec/apedec: Fix undefined integer overflow with 24bit
  787. avcodec/loco: Fix integer overflow with large values from loco_get_rice()
  788. avformat/smjpegdec: Check the existence of referred streams
  789. avcodec/pnmdec: Fix misaligned reads
  790. avcodec/scpr3: Fix out of array access with dectab
  791. avcodec/dstdec: Replace AC overread check by sample rate check
  792. avutil/avsscanf: Add () to avoid integer overflow in scanexp()
  793. avformat/utils: reorder duration computation to avoid overflow
  794. avcodec/pngdec: Check for fctl after idat
  795. avformat/hls: Pass a copy of the URL for probing
  796. avformat/hls: check segment duration value of EXTINF
  797. avutil/common: Fix integer overflow in av_ceil_log2_c()
  798. avcodec/wmalosslessdec: fix overflow with pred in revert_cdlms
  799. avformat/mvdec: Fix integer overflow with billions of channels
  800. avformat/microdvddec: skip malformed lines without frame number.
  801. avformat/mxfdec: free duplicated utf16 strings
  802. avformat/4xm: Check that a video stream was created before returning packets for it
  803. avcodec/ffwavesynth: Avoid undefined operation on ts overflow
  804. avcodec/mpeg4videodec: Fix 2 integer overflows in get_amv()
  805. avcodec/lossless_audiodsp: Fix undefined overflows in scalarproduct_and_madd_int16_c()
  806. avcodec/sonic: Fix several integer overflows
  807. avcodec/mpeg4videodec: avoid invalid values and reinitialize in format changes for studio profile
  808. avcodec/pixlet: Fix log(0) check
  809. avcodec/iff: Fix off by x error
  810. avcodec/wmalosslessdec: Check block_align maximum
  811. avcodec/loco: Fix signed integer overflow in loco_get_rice()
  812. avformat/thp: Check fps
  813. avformat/mpl2dec: Fix integer overflow with duration
  814. avcodec/cbs: Allocate more CodedBitstreamUnit at once in cbs_insert_unit()
  815. avcodec/mpeg12dec: remove outdated comments
  816. avcodec/snowdec: Avoid integer overflow with huge qlog
  817. avformat/mov: Check if DTS is AV_NOPTS_VALUE in mov_find_next_sample().
  818. avcodec/mpeg12dec: Fix got_output
  819. avformat/4xm: Cleanup on GET_LIST_HEADER() failure
  820. avcodec/lzf: Consider the needed size in reallocation
  821. avformat/mlvdec: fail reading a packet with 0 streams
  822. avformat/thp: Check compcount
  823. avcodec/adpcm: XA: Check shift similar to filter
  824. avcodec/huffyuvdec: Test vertical coordinate more often
  825. avformat/rawdec: fix identifier names
  826. avcodec/hq_hqa: Check info size
  827. avcodec/wmalosslessdec: Fix integer overflow in mclms_predict()
  828. avcodec/vp9dsp_template: Fix integer overflow(s) in iadst16_1d()
  829. avcodec/h264dec: Disable forced small_padding on flag2 fast
  830. avformat/oggparsevorbis: Error out on double init of vp
  831. avcodec/h264_metadata_bsf: Fix invalid av_freep
  832. avformat/hnm: Check for extradata allocation failure
  833. avcodec/bitstream: Don't check for undefined behaviour after it happened
  834. avformat/avc, mxfenc: Avoid allocation of H264 SPS structure, fix memleak
  835. avcodec/cbs_av1: Fix writing uvlc numbers >= INT_MAX
  836. avformat/mov: Fix memleak
  837. avformat/mov: fix memleaks
  838. libavformat/mov: Fix memleaks when demuxing DV audio
  839. avformat/mov: Fix reel_name size check
  840. avformat/mov: Fix memleak upon encountering repeating tags
  841. avformat/matroskaenc: Don't use NULL for %s format string
  842. avformat/webvttdec: Fix memleak upon read header failure
  843. avformat/vplayerdec: Fix memleak upon read header failure
  844. avformat/tedcaptionsdec: Fix memleak upon read header failure
  845. avformat/subviewerdec: Fix memleak upon read header failure
  846. avformat/subviewer1dec: Fix memleak upon read header failure
  847. avformat/stldec: Fix memleak upon read header failure
  848. avformat/srtdec: Fix memleak upon read header failure
  849. avformat/sccdec: Fix memleak upon read header failure
  850. avformat/samidec: Fix memleak upon read header failure
  851. avformat/pjsdec: Fix memleak upon read header failure
  852. avformat/mpsubdec: Fix memleak upon read header failure
  853. avformat/mpl2dec: Fix memleak upon read header failure
  854. avformat/microdvddec: Fix memleak upon read header failure
  855. avformat/lrcdec: Fix memleak upon read header failure
  856. avformat/jacosubdec: Fix memleak upon read header failure
  857. avformat/assdec: Fix memleak upon read header failure
  858. avformat/aqtitledec: Fix memleak upon read header failure
  859. avformat/mov: Fix memleaks upon read_header failure
  860. avformat/omadec: Fix memleaks upon read_header failure
  861. avformat/matroskadec: Fix memleaks in WebM DASH manifest demuxer
  862. avformat/matroskadec: Use right number of tracks
  863. avformat/matroskadec: Fix handling gigantic durations
  864. avformat/aviobuf: Don't check for overflow after it happened
  865. avformat/apngenc: Add deinit function
  866. avcodec/hevc_mp4toannexb_bsf: Check NAL size against available input
  867. avcodec/nvenc: honor max bitrate in CQ mode
  868. avcodec/nvenc: zero avg and max bitrate in CQ mode
  869. libavcodec/libvpxenc: Don't free user-provided AVPacket
  870. libavcodec/libmp3lame: Don't free user-provided AVPacket
  871. avcodec/libopusenc: Don't free user-provided AVPacket
  872. version 4.2.3
  873. - avcodec/pnmdec: Use unsigned for maxval rescaling
  874. - avcodec/ivi: Clear got_p_frame before decoding a new frame using it
  875. - avcodec/dsddec: Check channels
  876. - avcodec/xvididct: Fix integer overflow in idct_row()
  877. - avcodec/wmalosslessdec: Fix integer overflows in revert_inter_ch_decorr()
  878. - avcodec/cbs_jpeg: Fix infinite loop in cbs_jpeg_split_fragment()
  879. - avformat/mpegenc: Fix integer overflow with AV_NOPTS_VALUE
  880. - avformat/swfenc: Fix integer overflow in frame rate handling
  881. - avformat/aadec: Check toc_size to contain the minimum to demuxer uses
  882. - avcodec/cbs_h265_syntax_template: Limit num_long_term_pics more strictly
  883. - ffplay: set stream_index to -1 earlier to prevent segfault
  884. - avformat/mov: Free temp buffer upon negative sample_size error.
  885. - avformat/matroskadec: Improve forward compability
  886. - avformat/matroskadec: Don't discard valid packets
  887. - avformat/matroskaenc: Don't segfault when seekability changes
  888. - avformat/utils: Fix memleaks
  889. - avformat/utils: Fix memleaks in avformat_open_input()
  890. - avfilter/vf_dedot: Fix leak of AVFrame if making it writable fails
  891. - avfilter/vf_paletteuse: Fix potential double-free of AVFrame
  892. - avformat/mov: Don't leak MOVFragmentStreamInfo on error
  893. - avformat/mov: Free encryption data on error
  894. - fftools/ffmpeg: Free swresample dictionary during cleanup
  895. - avcodec/mediacodec_wrapper: fix {input,output}_buffers global reference leak
  896. - avformat/webm_chunk: Close IO if writing header fails
  897. - avcodec/cavsdsp: Fix undefined left shifts of negative numbers
  898. - avcodec/ra144enc: Fix invalid left shift of negative number
  899. - avcodec/adxenc: Avoid undefined left shift of negative numbers
  900. - avcodec/adpcm: Fix undefined left shifts of negative numbers
  901. - avcodec/proresenc_anatoliy: Fix invalid left shift of negative number
  902. - avformat/aviobuf: Honor avio_open[2] documentation
  903. - avcodec/cinepakenc: Fix invalid shifts
  904. - avfilter/vf_xbr: Fix left shift of negative number
  905. - avfilter/vf_hqx: Fix undefined left shifts of negative numbers
  906. - avcodec/jpeg2000dwt: Fix undefined shifts of negative numbers
  907. - avcodec/ituh263dec: Fix undefined left shift of negative number
  908. - avcodec/dnxhdenc: Fix undefined left shifts of negative numbers
  909. - swscale/utils: Fix invalid left shifts of negative numbers
  910. - swscale/x86/swscale: Fix undefined left shifts of negative numbers
  911. - fftools/ffmpeg_opt: Fix signed integer overflow
  912. - avcodec/exr: Fix undefined left shifts of negative numbers
  913. - avformat/movenc: Fix undefined shift
  914. - avcodec/pcm: Fix undefined shifts
  915. - avcodec/wavpackenc: Fix undefined shifts
  916. - avutil/encryption_info: Don't pass NULL to memcpy
  917. - avcodec/ac3enc: Fix memleak
  918. - avcodec/ac3enc: Fix invalid shift
  919. - avcodec/g723_1dec: Fix invalid shift
  920. - avcodec/tdsc: Fix undefined shifts
  921. - avcodec/ttaenc: Fix undefined shift
  922. - avformat/avidec: Fix memleak with embedded GAB2 subtitles
  923. - avformat/matroskadec: Don't discard the upper 32bits of TrackNumber
  924. - dump_extradata: Insert extradata even for small packets
  925. - avformat/segafilmenc: Fix undefined left shift of 1 by 31 places
  926. - avformat/wtvdec: Fix memleak when reading header fails
  927. - avformat/dashenc: Fix leak of AVFormatContext on error
  928. - avformat/fitsdec: Fix potential leak of string in AVBPrint
  929. - avformat/matroskadec: Sanitize SeekHead entries
  930. - avformat/matroskaenc: Fix memleak upon encountering bogus chapter
  931. - avformat/matroskaenc: Make ebml_num_size() more robust
  932. - avformat/oggenc: Don't free AVStream's priv_data, fix memleak
  933. - avformat/utils: Fix memleak when decoding subtitle in find_stream_info
  934. - fftools/ffmpeg_opt: Check attachment filesize
  935. - avformat/mpeg: Don't use unintialized value
  936. - avformat/webmdashenc: Check codec types
  937. - avformat/webmdashenc: Fix memleak upon realloc failure
  938. - avformat/subtitles: Don't increment packet counter prematurely
  939. - avformat/bethsoftvid: Fix potential memleak upon reallocation failure
  940. - avformat/smoothstreaming: Fix memleaks on errors
  941. - avformat/matroskaenc: Check BlockAdditional size before use
  942. - avformat/matroskaenc: Check functions that can fail
  943. - avformat/matroskaenc: Check for reformatting errors
  944. - avformat/matroskadec: Check before allocations
  945. - avfilter/vf_unsharp: Don't dereference NULL
  946. - avcodec/zmbvenc: Correct offset in buffer
  947. - avcodec/cbs_h2645: Fix potential out-of-bounds array access
  948. - avformat/mov: Don't allow negative sample sizes.
  949. - mpeg4videoenc: Don't crash with -fsanitize=bounds
  950. - avformat/mpegts: Shuffle avio_seek
  951. - avcodec/binkaudio: Fix 2Ghz sample_rate
  952. - avcodec/adpcm: Fix integer overflow in ADPCM THP
  953. - avcodec/ralf: Check num_blocks before use
  954. - avcodec/iff: Test video_size being non zero
  955. - avcodec/utvideodec: Fix integer overflow in decode_plane()
  956. - avcodec/ttadsp: Fix several integer overflows in tta_filter_process_c()
  957. - avcodec/ralf: Fix integer overflow in decode_block()
  958. - avcodec/nuv: widen buf_size type
  959. - avcodec/iff: Fix several integer overflows
  960. - avcodec/g729postfilter: Clip gain before scaling with AGC_FAC1
  961. - avcodec/alac: Fix integer overflow with 24/20bps samples
  962. - avcodec/dstdec: Check sample rate
  963. - avformat/thp: Require a video stream
  964. - avformat/mpeg: Decrease score by 1 for files with very little valid data
  965. - avcodec/pngdec: Check length in fdAT
  966. - avcodec/g2meet: Check tile_width in epic_jb_decode_tile()
  967. - avcodec/hapdec: Check tex_size more strictly and before using it
  968. - avcodec/vp9dsp_template: Fix integer overflows in idct32_1d()
  969. - avcodec/alacdsp: Fix invalid shift in append_extra_bits()
  970. - libavcodec/wmalosslessdec: prevent sum of positive numbers from becoming negative
  971. - avcodec/dstdec: Fix integer overflow in read_table()
  972. - avcodec/txd: Check for input size against the header size.
  973. - avcodec/svq1dec: Check that there is data left after the header
  974. - avcodec/cbs_h265_syntax_template: Check num_negative/positive_pics when inter_ref_pic_set_prediction_flag is set
  975. - avcodec/intrax8: Check for end of bitstream in ff_intrax8_decode_picture()
  976. - avcodec/hevc_mp4toannexb_bsf: Check nalu_size
  977. - avcodec/iff: Check length before memcpy() in decode_deep_rle32()
  978. - avcodec/iff: Fix invalid pointer intermediates in decode_deep_rle32()
  979. - avcodec/pngdec: Pass ret from decode_iccp_chunk()
  980. - avcodec/rv40dsp: Fix integer overflows in rv40_weight_func_*()
  981. - avcodec/ac3dec_fixed: Fix several invalid left shifts in scale_coefs()
  982. - avcodec/flac_parser: Do not lose header count in find_headers_search()
  983. - avcodec/audiodsp: Fix integer overflow in scalarproduct_int16_c()
  984. - avcodec/cbs_jpeg_syntax_template: Check array index in huffman_table()
  985. - avcodec/cbs_jpeg_syntax_template: Check table index before use in dht()
  986. - avformat/oggdec: Check for EOF after page header
  987. - swscale/yuv2rgb: Fix vertical dither offset with slices
  988. - avcodec/dpcm: clip exponent into supported range in XAN DPCM
  989. - avcodec/flacdsp_template: Fix invalid shifts in decorrelate
  990. - avcodec/xvididct: Fix integer overflow in MULT()
  991. - avcodec/ffwavesynth: Correct undefined overflow of PINK_UNIT
  992. - avcodec/cbs_h264_syntax_template: fix off by 1 error with slice_group_change_cycle
  993. - swscale/output: Fix integer overflow in yuv2rgb_write_full() with out of range input
  994. - swscale/output: Fix integer overflow in alpha computation in yuv2gbrp16_full_X_c()
  995. - libavformat/amr.c: Check return value from avio_read()
  996. - libavformat/mov.c: Free aes_decrypt to avoid leaking memory
  997. - libavformat/oggdec.c: Check return value from avio_read()
  998. - avformat/asfdec_f: Fix overflow check in get_tag()
  999. - avformat/nsvdec: Fix memleaks on errors while reading the header
  1000. - avcodec/ffwavesynth: Fix integer overflow in computation of ddphi
  1001. - avcodec/cbs_jpeg: Check length for SOS
  1002. - avcodec/adpcm: Fix invalid shift in AV_CODEC_ID_ADPCM_PSX
  1003. - avcodec/mpeg12dec: Fix invalid shift in mpeg2_fast_decode_block_intra()
  1004. - avcodec/cbs_h2645: Treat slices without data as invalid
  1005. - avcodec/cbs_h2645: Remove dead code to delete trailing zeroes
  1006. - avcodec/cbs_av1_syntax_template: Set seen_frame_header only after successfull uncompressed_header()
  1007. - avcodec/mpegaudioenc_template: fix invalid shift of sample
  1008. - avcodec/motion_est_template: Fix invalid shifts in no_sub_motion_search()
  1009. - libavformat/avienc: Check bits per sample for PAL8
  1010. - avformat/mpegts: Improve the position determination for avpriv_mpegts_parse_packet()
  1011. - avcodec/magicyuv: Check that there are enough lines for interlacing to be possible
  1012. - avformat/mvdec: Check stream numbers
  1013. - avcodec/pcm: Fix invalid shift in AV_CODEC_ID_PCM_LXF
  1014. - avcodec/qdm2: Check fft_coefs_index
  1015. - avformat/utils: Fix integer overflow with complex time bases in avformat_find_stream_info()
  1016. - avformat/avidec: Avoid integer overflow in NI switch check
  1017. - fftools/ffmpeg: Fix integer overflow in duration computation in seek_to_start()
  1018. - avfilter/vf_aspect: Fix integer overflow in compute_dar()
  1019. - avcodec/apedec: Fix invalid shift with 24 bps
  1020. - avformat/utils: Fix undefined behavior in ff_configure_buffers_for_index()
  1021. - avcodec/dpcm: Fix integer overflow in AV_CODEC_ID_GREMLIN_DPCM
  1022. - avcodec/wmalosslessdec: Fix integer overflow with sliding in padding bits
  1023. - avcodec/wmalosslessdec: Fix loop in revert_acfilter()
  1024. - avcodec/agm: YUV420 without DCT needs even dimensions
  1025. - avcodec/agm: Test remaining data in decode_raw_intra_rgb()
  1026. - avcodec/lagarith: Sanity check scale
  1027. - avcodec/apedec: Fix integer overflows in predictor_decode_mono_3950()
  1028. - avcodec/ralf: Fix integer overflow in apply_lpc()
  1029. - avcodec/dca_lbr: Fix some error codes and error passing
  1030. - avcodec/wmavoice: Fix rounding and integer anomalies in calc_input_response()
  1031. - avcodec/wmavoice: sanity check block_align
  1032. - avcodec/pcm: Fix invalid shift in pcm_decode_frame for LXF
  1033. - avcodec/snappy: Sanity check bytestream2_get_levarint()
  1034. - avcodec/mlpdsp: Fix a invalid shift in ff_mlp_rematrix_channel()
  1035. - avcodec/avdct: Clear IDCTDSPContext context
  1036. - avcodec/x86/diracdsp: Fix high bits on Windows x86_64
  1037. - tests/fate/lavf-video.mak: fix fate-lavf-gif dependencies
  1038. - avformat/mov: Check STCO location
  1039. - avcodec/wmalosslessdec: Fix multiple integer overflows
  1040. - avcodec/apedec: Fix undefined integer overflow in decode_array_0000()
  1041. - avcodec/smacker: Check space before decoding type
  1042. - avcodec/rawdec: Use linesize in b64a
  1043. - avcodec/iff: Over-allocate ham_palbuf for HAM6 IFF-PBM
  1044. - avcodec/x86/diracdsp: Fix incorrect src addressing in dequant_subband_32()
  1045. - avfilter/vf_find_rect: Remove assert
  1046. - avfilter/vf_find_rect: Increase worst case score
  1047. - swscale/input: Fix several invalid shifts related to rgb2yuv constants
  1048. - swscale/output: Fix several invalid shifts in yuv2rgb_full_1_c_template()
  1049. - swscale/swscale: Fix several invalid shifts related to vChrDrop
  1050. - avcodec/hevc_mp4toannexb_bsf: check that nalu size doesnt overflow
  1051. - avcodec/hevc_mp4toannexb_bsf: Avoid NULL memcpy()
  1052. - avcodec/cbs_av1: Check leb128 values read
  1053. - avcodec/wmalosslessdec: move channel check up
  1054. - avcodec/cbs_h2645: Skip all 0 NAL units
  1055. - avcodec/adpcm: Fix overflow in FFABS() IMA_EA_EACS
  1056. - avcodec/alac: Fix integer overflow in LPC coefficient adaption
  1057. - avcodec/g729postfilter: Optimize out overflowing multiplication from apply_tilt_comp()
  1058. - avcodec/vc1dec: Check field_mode for sprites
  1059. - avcodec/vc1dec: Limit bits by the actual bitstream size
  1060. - avcodec/vmdaudio: Check block_align more
  1061. - configure: bump year
  1062. - avcodec/pgssubdec: Free subtitle on error
  1063. - avcodec/nvenc: use framerate if available
  1064. - avcodec/cbs_h265: fix writing extension_data bits
  1065. - avcodec/nvenc: offset dts to account for b-frame reordering
  1066. - Revert "avformat/rtp: Pass sources and block filter addresses via sdp file for rtp"
  1067. - avformat/matroskadec: Fix default value of BlockAddID
  1068. - avformat/dashdec: Don't allocate and leak strings that are never used
  1069. - avformat/matroskaenc: Write level 1 elements in one go
  1070. - avformat/rtp: Pass sources and block filter addresses via sdp file for rtp
  1071. - avformat/bintext: avoid division by zero
  1072. version 4.2.2
  1073. - cbs_mpeg2: Fix parsing the last unit
  1074. - cbs_mpeg2: Rearrange start code search
  1075. - cbs_mpeg2: Decompose Sequence End
  1076. - cbs_mpeg2: Fix parsing of picture and slice headers
  1077. - cbs: Remove useless initializations
  1078. - mpeg2_metadata, cbs_mpeg2: Fix handling of colour_description
  1079. - lavc/cbs_h2645_syntax_template: Fix memleak
  1080. - avcodec/cbs: Fix potential overflow
  1081. - avcodec/cbs: Factor out common code for writing units
  1082. - avcodec/ffwavesynth: Fix undefined overflow in wavesynth_synth_sample()
  1083. - avcodec/ffwavesynth: Fix undefined overflow in wavesynth_synth_sample()
  1084. - avcodec/cook: Use 3 stage VLC decoding for channel_coupling
  1085. - avcodec/wmalosslessdec: Fixes undefined overflow in dequantization in decode_subframe()
  1086. - avcodec/sonic: Check e in get_symbol()
  1087. - avcodec/twinvqdec: Correct overflow in block align check
  1088. - avcodec/vc1dec: Fix "return -1" cases
  1089. - avcodec/vc1dec: Free sprite_output_frame on error
  1090. - avcodec/atrac9dec: Clamp band_ext_data to max that can be read if skipped.
  1091. - avcodec/agm: Include block size in the MV check for flags == 3
  1092. - avcodec/wmadec: Keep track of exponent initialization per channel
  1093. - avcodec/iff: Check that video_size is large enough for the read parameters
  1094. - avcodec/cbs_vp9: Check data_size
  1095. - avcodec/cbs_vp9: Check index_size
  1096. - avcodec/adpcm: Clip predictor for APC
  1097. - avcodec/targa: Check colors vs. available space
  1098. - avcodec/dstdec: Use get_ur_golomb_jpegls()
  1099. - avcodec/wmavoice: Check remaining input in parse_packet_header()
  1100. - avcodec/wmalosslessdec: Fix 2 overflows in mclms
  1101. - avcodec/wmaprodec: Fixes integer overflow with 32bit samples
  1102. - avcodec/adpcm: Fix invalid shift in xa_decode()
  1103. - avcodec/wmalosslessdec: Fix several integer issues
  1104. - avcodec/wmalosslessdec: Check that padding bits is not more than sample bits
  1105. - avcodec/iff: Skip overflowing runs in decode_delta_d()
  1106. - avcodec/pnm: Check that the header is not truncated
  1107. - avcodec/mp3_header_decompress_bsf: Check sample_rate_index
  1108. - avcodec/cbs_av1_syntax_template: Check num_y_points
  1109. - avformat/rmdec: Initialize and sanity check offset in ivr_read_header()
  1110. - avcodec/agm: Do not allow MVs out of the picture area as no edge is allocated
  1111. - avcodec/apedec: Fix 2 integer overflows
  1112. - avformat/id3v2: Fix double-free on error
  1113. - avcodec/wmaprodec: Set packet_loss when we error out on a sanity check
  1114. - avcodec/wmaprodec: Check offset
  1115. - avcodec/truemotion2: Fix 2 integer overflows in tm2_low_res_block()
  1116. - avcodec/wmaprodec: Check if the channel sum of all internal contexts match the external
  1117. - avcodec/atrac9dec: Check q_unit_cnt more completely before using it to access at9_tab_band_ext_group
  1118. - avcodec/fitsdec: Use lrint()
  1119. - avcodec/g729dec: Avoid using buf_size
  1120. - avcodec/g729dec: Factor block_size out
  1121. - avcodec/g729dec: require buf_size to be non 0
  1122. - avcodec/alac: Fix integer overflow in lpc_prediction() with sign
  1123. - avcodec/wmaprodec: Fix buflen computation in save_bits()
  1124. - avcodec/vc1_block: Fix integer overflow in AC rescaling in vc1_decode_i_block_adv()
  1125. - avcodec/vmdaudio: Check chunk counts to avoid integer overflow
  1126. - avformat/mxfdec: Clear metadata_sets_count in mxf_read_close()
  1127. - avcodec/nuv: Use ff_set_dimensions()
  1128. - avformat/vividas: Error out on audio packets in the absence of audio streams
  1129. - avformat/vividas: Check and require 1 video stream
  1130. - avcodec/ffwavesynth: Fix integer overflow with pink_ts_cur/next
  1131. - avcodec/ralf: Fix integer overflows with the filter coefficient in decode_channel()
  1132. - avcodec/g729dec: Use 64bit and clip in scalar product
  1133. - avcodec/mxpegdec: Check for multiple SOF
  1134. - avcodec/nuv: Move comptype check up
  1135. - avcodec/wmavoice: Fix integer overflow in synth_frame()
  1136. - avcodec/rawdec: Check bits_per_coded_sample more pedantically for 16bit cases
  1137. - avutil/lfg: Correct index increment type to avoid undefined behavior
  1138. - avcodec/cngdec: Remove AV_CODEC_CAP_DELAY
  1139. - avcodec/iff: Move index use after check in decodeplane8()
  1140. - avcodec/atrac3: Check for huge block aligns
  1141. - avcodec/ralf: use multiply instead of shift to avoid undefined behavior in decode_block()
  1142. - avcodec/wmadec: Require previous exponents for reuse
  1143. - avcodec/vc1_block: Fix undefined behavior in ac prediction rescaling
  1144. - avcodec/qdm2: The smallest header seems to have 2 bytes so treat 1 as invalid
  1145. - avcodec/apedec: Fixes integer overflow of res+*data in do_apply_filter()
  1146. - avcodec/sonic: Fix integer overflow in predictor_calc_error()
  1147. - avformat/vividas: Add EOF check in val_1 loop in track_header()
  1148. - avcodec/atrac9dec: Check precision_fine/coarse
  1149. - avformat/mp3dec: Check that the frame fits within the probe buffer
  1150. - vcodec/agm: Alloc based on coded dimensions
  1151. - avcodec/wmaprodec: get frame during frame decode
  1152. - avcodec/interplayacm: Fix overflow of last unused value
  1153. - avcodec/adpcm: Fix undefined behavior with negative predictions in IMA OKI
  1154. - avcodec/cook: Move up and extend block_align check
  1155. - avcodec/sbcdec: Fix integer overflows in sbc_synthesize_four()
  1156. - avcodec/twinvq: Check block_align
  1157. - avcodec/cook: Enlarge gain table
  1158. - avcodec/cook: Check samples_per_channel earlier
  1159. - avcodec/atrac3plus: Check split point in fill mode 3
  1160. - avcodec/wmavoice: Check sample_rate
  1161. - avcodec/xsubdec: fix overflow in alpha handling
  1162. - avcodec/iff: Check available space before entering loop in decode_long_vertical_delta2() / decode_long_vertical_delta()
  1163. - avcodec/apedec: Fix integer overflow in filter_3800()
  1164. - avutil/lfg: Document the AVLFG struct
  1165. - avcodec/ffv1dec: Use a different error message for the slice level CRC
  1166. - avcodec/apedec: Fix undefined integer overflow in long_filter_ehigh_3830()
  1167. - avcodec/dstdec: Check that AC probabilities are within range
  1168. - avcodec/dstdec: Check read_table() for failure
  1169. - avformat/vividas: Fix n_sb_blocks Check
  1170. - avcodec/snowenc: Set mb_num to avoid ratecontrol floating point divisions by 0.0
  1171. - avcodec/snowenc: Fix 2 undefined shifts
  1172. - avformat/nutenc: Do not pass NULL to memcmp() in get_needed_flags()
  1173. - avcodec/aptx: Check the number of channels
  1174. - avcodec/aacdec_template: Check samplerate
  1175. - avcodec/truemotion2: Fix several integer overflows in tm2_low_res_block()
  1176. - avcodec/utils: Check block_align
  1177. - avcodec/wmalosslessdec: Fix some integer anomalies
  1178. - avcodec/adpcm: Fix invalid shifts in ADPCM DTK
  1179. - avcodec/apedec: Only clear the needed buffer space, instead of all
  1180. - avcodec/libvorbisdec: Fix insufficient input checks leading to out of array reads
  1181. - avcodec/g723_1dec: fix invalid shift with negative sid_gain
  1182. - avcodec/vp5: Check render_x/y
  1183. - avcodec/hcom: Check the root entry and the right entries
  1184. - avcodec/qdrw: Check input for header/skiped space before get_buffer()
  1185. - avcodec/ralf: Skip initializing unused filter variables
  1186. - avcodec/takdec: Fix overflow with large sample rates
  1187. - avcodec/atrac9dec: Set channels
  1188. - avcodec/alsdec: Check that input space for header exists in read_diff_float_data()
  1189. - avformat/pjsdec: Check duration for overflow
  1190. - avcodec/agm: Check for reference frame earlier
  1191. - avcodec/ptx: Check that the input contains at least one line
  1192. - avcodec/alac: Fix integer overflow in LPC
  1193. - avcodec/smacker: Fix integer overflows in pred[] in smka_decode_frame()
  1194. - avcodec/aliaspixdec: Check input size against minimal picture size
  1195. - avcodec/ffwavesynth: Fix integer overflows in pink noise addition
  1196. - avcodec/vc1_block: Fixes integer overflow in vc1_decode_i_block_adv()
  1197. - avcodec/wmalosslessdec: Check block_align
  1198. - avcodec/g729dec: Avoid computing invalid temporary pointers for ff_acelp_weighted_vector_sum()
  1199. - avcodec/g729postfilter: Fix left shift of negative value
  1200. - avcodec/binkaudio: Check sample rate
  1201. - avcodec/sbcdec: Fix integer overflows in sbc_synthesize_eight()
  1202. - avcodec/adpcm: Check initial predictor for ADPCM_IMA_EA_EACS
  1203. - avcodec/g723_1dec: Fix overflow in shift
  1204. - avcodec/apedec: Fix integer overflow in predictor_update_3930()
  1205. - avcodec/g729postfilter: Fix undefined intermediate pointers
  1206. - avcodec/g729postfilter: Fix undefined shifts
  1207. - avcodec/lsp: Fix undefined shifts in lsp2poly()
  1208. - avcodec/adpcm: Fix left shifts in AV_CODEC_ID_ADPCM_EA
  1209. - avformat/shortendec: Check k in probe
  1210. - avfilter/vf_geq: Use av_clipd() instead of av_clipf()
  1211. - avcodec/wmaprodec: Check that the streams channels do not exceed the overall channels
  1212. - avcodec/qdmc: Check input space in qdmc_get_vlc()
  1213. - avcodec/wmaprodec: Fix cleanup on error
  1214. - avcodec/pcm: Check bits_per_coded_sample
  1215. - avcodec/exr: Allow duplicate use of channel indexes
  1216. - avcodec/fitsdec: Fail on 0 naxisn
  1217. - avcodec/dxv: Subtract 12 earlier in dxv_decompress_cocg()
  1218. - libavcodec/dxv: Remove redundant seek
  1219. - avcodec/ituh263dec: Check input for minimal frame size
  1220. - avcodec/truemotion1: Check that the input has enough space for a minimal index_stream
  1221. - avformat/mpsubdec: Clear queue on error
  1222. - avcodec/sunrast: Check that the input is large enough for the maximally compressed image
  1223. - avcodec/sunrast: Check for availability of maplength before allocating image
  1224. - avformat/subtitles: Check nb_subs in ff_subtitles_queue_finalize()
  1225. - avcodec/vc1_block: Fix invalid left shift in vc1_decode_p_mb()
  1226. - avcodec/wmaprodec: Check if there is a stream
  1227. - avcodec/g2meet: Check for end of input in jpg_decode_block()
  1228. - avcodec/g2meet: Check if adjusted pixel was on the stack
  1229. - avformat/electronicarts: If no packet has been read at the end do not treat it as if theres a packet
  1230. - avcodec/dxv: Check op_offset in dxv_decompress_yo()
  1231. - avcodec/utils: Check sample_rate before opening the decoder
  1232. - avcodec/aptx: Fix multiple shift anomalies
  1233. - avcodec/fitsdec: fix use of uninitialised values
  1234. - avcodec/motionpixels: Mark 2 functions as always_inline
  1235. - avcodec/ituh263dec: Make the condition for the studio slice start code match between ff_h263_resync() and ff_mpeg4_decode_studio_slice_header()
  1236. - avcodec/ralf: Fix integer overflow in decode_channel()
  1237. - vcodec/vc1: compute rangex/y only for P/B frames
  1238. - avcodec/vc1_pred: Fix invalid shifts in scaleforopp()
  1239. - avcodec/vc1_block: Fix invalid shift with rangeredfrm
  1240. - avcodec/vc1: Check for excessive resolution
  1241. - avcodec/vc1: check REFDIST
  1242. - avcodec/apedec: Fix several integer overflows in predictor_update_filter() and do_apply_filter()
  1243. - avcodec/hevc_cabac: Tighten the limit on k in ff_hevc_cu_qp_delta_abs()
  1244. - avcodec/4xm: Check index in decode_i_block() also in the path where its not used.
  1245. - avcodec/loco: Check for end of input in the first line
  1246. - avcodec/atrac3: Check block_align
  1247. - avcodec/alsdec: Avoid dereferencing context pointer in inner interleave loop
  1248. - avcodec/hcom: Check that there are dictionary entries
  1249. - avcodec/fitsdec: Prevent division by 0 with huge data_max
  1250. - avcodec/dstdec: Fix integer overflow in samples_per_frame computation
  1251. - avcodec/g729_parser: Check block_size
  1252. - avcodec/sbcdec: Initialize number of channels
  1253. - avcodec/utils: Optimize ff_color_frame() using memcpy()
  1254. - avcodec/aacdec: Check if we run out of input in read_stream_mux_config()
  1255. - avcodec/utils: Use av_memcpy_backptr() in ff_color_frame()
  1256. - avcodec/smacker: Fix integer overflow in signed int multiply in SMK_BLK_FILL
  1257. - avcodec/alac: Fix invalid shifts in 20/24 bps
  1258. - avcodec/alac: fix undefined behavior with INT_MIN in lpc_prediction()
  1259. - avcodec/ffwavesynth: Fix integer overflow in timestamps
  1260. - avformat/vividas: Test size and packet numbers a bit more
  1261. - avformat/vividas: Check n_sb_blocks against input space
  1262. - avcodec/dxv: Check op_offset in both directions
  1263. - avcodec/adpcm: Check number of channels for MTAF
  1264. - avcodec/sunrast: Fix indention
  1265. - avcodec/sunrast: Fix return type for "unsupported (compression) type"
  1266. - avcodec/utils: Check channels fully earlier
  1267. - avformat/mov: Check for EOF in mov_read_meta()
  1268. - avcodec/hevcdec: Fix memleak of a53_caption
  1269. - avformat/vividas: Remove align offset which is always masked off
  1270. - avformat/vividas: remove dead assignment
  1271. - avformat/cdxl: Fix integer overflow in intermediate
  1272. - avcodec/hevcdec: repeat character in skiped
  1273. - repeat an even number of characters in occured
  1274. - avcodec/gdv: Replace assert() checking bitstream by if()
  1275. - libavcodec/utils: Free threads on init failure
  1276. - avcodec/htmlsubtitles: Avoid locale dependant isdigit()
  1277. - avcodec/alsdec: Check k from being outside what our implementation can handle
  1278. - avcodec/takdec: Fix integer overflow in decorrelate()
  1279. - avcodec/aacps: Fix integer overflows in hybrid_synthesis()
  1280. - avcodec/mpeg4videodec: Fix integer overflow in mpeg4_decode_studio_block()
  1281. - avcodec/vp56rac: delay signaling an error on truncated input
  1282. - avcodec/pnm_parser: Use memchr() in pnm_parse()
  1283. - tests: Fix bash errors in lavf_container tests.
  1284. - avformat/matroskadec: Fix use-after-free when demuxing ProRes
  1285. - avformat/matroskadec: Fix demuxing ProRes
  1286. - avcodec/cbs_av1: fix array size for ar_coeffs_cb_plus_128 and ar_coeffs_cr_plus_128
  1287. - avcodec/cbs_av1: avoid reading trailing bits when obu type is OBU_TILE_LIST
  1288. - lavc/cbs_h2645: Fix incorrect max size of nalu unit
  1289. - avcodec/extract_extradata_bsf: Don't unref uninitialized buffers
  1290. - avformat/av1: Fix leak of dynamic buffer in case of parsing failure
  1291. - libavformat/rtsp: return error if rtsp_hd_out is null instead of crash
  1292. - cbs_h264: Fix missing inferred colour description fields
  1293. - avcodec/cbs_av1: keep separate reference frame state for reading and writing
  1294. - avcodec/cbs_av1: fix reading reference order hint in skip_mode_params()
  1295. - avcodec/amfnec: allocate packets using av_new_packet()
  1296. - avcodec/nvenc: make sure newly allocated packets are refcounted
  1297. - lavc/mpeg4audio: add chan_config check to avoid indeterminate channels
  1298. - aformat/movenc: add missing padding to output track extradata
  1299. - avcodec/nvenc: add driver version info for SDK 9.1
  1300. - avcodec/bsf: check that AVBSFInternal was allocated before dereferencing it
  1301. version 4.2.1:
  1302. - avformat/vividas: check for tiny blocks using alignment
  1303. - avcodec/vc1_pred: Fix refdist in scaleforopp()
  1304. - avcodec/vorbisdec: fix FASTDIV usage for vr_type == 2
  1305. - avcodec/iff: Check for overlap in cmap_read_palette()
  1306. - avcodec/apedec: Fix 32bit int overflow in do_apply_filter()
  1307. - lavf/rawenc: Only accept the appropriate stream type for raw muxers.
  1308. - avformat/matroskadec: use av_fast_realloc to reallocate ebml list arrays
  1309. - avformat/matroskadec: use proper types for some EbmlSyntax fields
  1310. - avcodec/ralf: fix undefined shift in extend_code()
  1311. - avcodec/ralf: fix undefined shift
  1312. - avcodec/bgmc: Check input space in ff_bgmc_decode_init()
  1313. - avcodec/vp3: Check for end of input in 2 places of vp4_unpack_macroblocks()
  1314. - avcodec/truemotion2: Fix multiple integer overflows in tm2_null_res_block()
  1315. - avcodec/vc1_block: Check the return code from vc1_decode_p_block()
  1316. - avcodec/vc1dec: Require res_sprite for wmv3images
  1317. - avcodec/vc1_block: Check for double escapes
  1318. - avcodec/vorbisdec: Check get_vlc2() failure
  1319. - avcodec/tta: Fix integer overflow in prediction
  1320. - avcodec/vb: Check input packet size to be large enough to contain flags
  1321. - avcodec/cavsdec: Limit the number of access units per packet to 2
  1322. - avcodec/atrac9dec: Check block_align
  1323. - avcodec/alac: Check for bps of 0
  1324. - avcodec/alac: Fix multiple integer overflows in lpc_prediction()
  1325. - avcodec/rl2: set dimensions
  1326. - avcodec/aacdec: Add FF_CODEC_CAP_INIT_CLEANUP
  1327. - avcodec/idcinvideo: Add 320x240 default maximum resolution
  1328. - avformat/realtextdec: free queue on error
  1329. - avcodec/vp5/6/8: use vpX_rac_is_end()
  1330. - avformat/vividas: Check av_xiphlacing() return value before use
  1331. - avcodec/alsdec: Fix integer overflow in decode_var_block_data()
  1332. - avcodec/alsdec: Limit maximum channels to 512
  1333. - avcodec/anm: Check input size for a frame with just a stop code
  1334. - avcodec/flicvideo: Optimize and Simplify FLI_COPY in flic_decode_frame_24BPP() by using bytestream2_get_buffer()
  1335. - avcodec/loco: Check left column value
  1336. - avcodec/ffwavesynth: Fixes invalid shift with pink noise seeking
  1337. - avcodec/ffwavesynth: Fix integer overflow for some corner case values
  1338. - avcodec/indeo2: Check remaining input more often
  1339. - avcodec/diracdec: Check that slices are fewer than pixels
  1340. - avcodec/vp56: Consider the alpha start as end of the prior header
  1341. - avcodec/4xm: Check for end of input in decode_p_block()
  1342. - avcodec/hevcdec: Check delta_luma_weight_l0/1
  1343. - avcodec/hnm4video: Optimize postprocess_current_frame()
  1344. - avcodec/hevc_refs: Optimize 16bit generate_missing_ref()
  1345. - avcodec/scpr: Use av_memcpy_backptr() in type 17 and 33
  1346. - avcodec/tiff: Enforce increasing offsets
  1347. - avcodec/dds: Use ff_set_dimensions()
  1348. - avformat/vividas: Fix another infinite loop
  1349. - avformat/vividas: Fix infinite loop in header parser
  1350. - avcodec/mpc8: Fix 32bit mask/enum
  1351. - avcodec/alsdec: Fix integer overflows of raw_samples in decode_var_block_data()
  1352. - avcodec/alsdec: Fix integer overflow of raw_samples in decode_blocks()
  1353. - avcodec/alsdec: fix mantisse shift
  1354. - avcodec/pngdec: consider chunk size in minimal size check
  1355. - avcodec/vc1_block: Fix invalid shifts in vc1_decode_i_blocks()
  1356. - avcodec/vc1_block: fix invalid shift in vc1_decode_p_mb()
  1357. - avcodec/aacdec_template: fix integer overflow in imdct_and_windowing()
  1358. - avformat/mpegts: Check if ready on SCTE reception
  1359. - avcodec/omx: fix xFramerate calculation
  1360. - avformat/avidec: add support for recognizing HEVC fourcc when demuxing
  1361. - avformat/mpegts: fix teletext PTS when selecting teletext streams only
  1362. - avcodec/h2645_parse: zero initialize the rbsp buffer
  1363. - avcodec/omx: Fix handling of fragmented buffers
  1364. - avcodec/omx: ensure zerocopy mode can be disabled on rpi builds
  1365. - avformat/mxfdec: do not ignore bad size errors
  1366. - avformat/matroskadec: Fix seeking
  1367. - ffplay: properly detect all window size changes
  1368. version 4.2:
  1369. - tpad filter
  1370. - AV1 decoding support through libdav1d
  1371. - dedot filter
  1372. - chromashift and rgbashift filters
  1373. - freezedetect filter
  1374. - truehd_core bitstream filter
  1375. - dhav demuxer
  1376. - PCM-DVD encoder
  1377. - GIF parser
  1378. - vividas demuxer
  1379. - hymt decoder
  1380. - anlmdn filter
  1381. - maskfun filter
  1382. - hcom demuxer and decoder
  1383. - ARBC decoder
  1384. - libaribb24 based ARIB STD-B24 caption support (profiles A and C)
  1385. - Support decoding of HEVC 4:4:4 content in nvdec and cuviddec
  1386. - removed libndi-newtek
  1387. - agm decoder
  1388. - KUX demuxer
  1389. - AV1 frame split bitstream filter
  1390. - lscr decoder
  1391. - lagfun filter
  1392. - asoftclip filter
  1393. - Support decoding of HEVC 4:4:4 content in vdpau
  1394. - colorhold filter
  1395. - xmedian filter
  1396. - asr filter
  1397. - showspatial multimedia filter
  1398. - VP4 video decoder
  1399. - IFV demuxer
  1400. - derain filter
  1401. - deesser filter
  1402. - mov muxer writes tracks with unspecified language instead of English by default
  1403. - add support for using clang to compile CUDA kernels
  1404. version 4.1:
  1405. - deblock filter
  1406. - tmix filter
  1407. - amplify filter
  1408. - fftdnoiz filter
  1409. - aderivative and aintegral audio filters
  1410. - pal75bars and pal100bars video filter sources
  1411. - support mbedTLS based TLS
  1412. - adeclick filter
  1413. - adeclip filter
  1414. - libtensorflow backend for DNN based filters like srcnn
  1415. - vc1 decoder is now bit-exact
  1416. - ATRAC9 decoder
  1417. - lensfun wrapper filter
  1418. - colorconstancy filter
  1419. - AVS2 video decoder via libdavs2
  1420. - IMM4 video decoder
  1421. - Brooktree ProSumer video decoder
  1422. - MatchWare Screen Capture Codec decoder
  1423. - WinCam Motion Video decoder
  1424. - 1D LUT filter (lut1d)
  1425. - RemotelyAnywhere Screen Capture decoder
  1426. - cue and acue filters
  1427. - support for AV1 in MP4
  1428. - transpose_npp filter
  1429. - AVS2 video encoder via libxavs2
  1430. - amultiply filter
  1431. - Block-Matching 3d (bm3d) denoising filter
  1432. - acrossover filter
  1433. - ilbc decoder
  1434. - audio denoiser as afftdn filter
  1435. - AV1 parser
  1436. - SER demuxer
  1437. - sinc audio filter source
  1438. - chromahold filter
  1439. - setparams filter
  1440. - vibrance filter
  1441. - decoding S12M timecode in h264
  1442. - xstack filter
  1443. - pcm vidc decoder and encoder
  1444. - (a)graphmonitor filter
  1445. - yadif_cuda filter
  1446. version 4.0:
  1447. - Bitstream filters for editing metadata in H.264, HEVC and MPEG-2 streams
  1448. - Dropped support for OpenJPEG versions 2.0 and below. Using OpenJPEG now
  1449. requires 2.1 (or later) and pkg-config.
  1450. - VDA dropped (use VideoToolbox instead)
  1451. - MagicYUV encoder
  1452. - Raw AMR-NB and AMR-WB demuxers
  1453. - TiVo ty/ty+ demuxer
  1454. - Intel QSV-accelerated MJPEG encoding
  1455. - PCE support for extended channel layouts in the AAC encoder
  1456. - native aptX and aptX HD encoder and decoder
  1457. - Raw aptX and aptX HD muxer and demuxer
  1458. - NVIDIA NVDEC-accelerated H.264, HEVC, MJPEG, MPEG-1/2/4, VC1, VP8/9 hwaccel decoding
  1459. - Intel QSV-accelerated overlay filter
  1460. - mcompand audio filter
  1461. - acontrast audio filter
  1462. - OpenCL overlay filter
  1463. - video mix filter
  1464. - video normalize filter
  1465. - audio lv2 wrapper filter
  1466. - VAAPI MJPEG and VP8 decoding
  1467. - AMD AMF H.264 and HEVC encoders
  1468. - video fillborders filter
  1469. - video setrange filter
  1470. - nsp demuxer
  1471. - support LibreSSL (via libtls)
  1472. - AVX-512/ZMM support added
  1473. - Dropped support for building for Windows XP. The minimum supported Windows
  1474. version is Windows Vista.
  1475. - deconvolve video filter
  1476. - entropy video filter
  1477. - hilbert audio filter source
  1478. - aiir audio filter
  1479. - aiff: add support for CD-ROM XA ADPCM
  1480. - Removed the ffserver program
  1481. - Removed the ffmenc and ffmdec muxer and demuxer
  1482. - VideoToolbox HEVC encoder and hwaccel
  1483. - VAAPI-accelerated ProcAmp (color balance), denoise and sharpness filters
  1484. - Add android_camera indev
  1485. - codec2 en/decoding via libcodec2
  1486. - muxer/demuxer for raw codec2 files and .c2 files
  1487. - Moved nvidia codec headers into an external repository.
  1488. They can be found at http://git.videolan.org/?p=ffmpeg/nv-codec-headers.git
  1489. - native SBC encoder and decoder
  1490. - drmeter audio filter
  1491. - hapqa_extract bitstream filter
  1492. - filter_units bitstream filter
  1493. - AV1 Support through libaom
  1494. - E-AC-3 dependent frames support
  1495. - bitstream filter for extracting E-AC-3 core
  1496. - Haivision SRT protocol via libsrt
  1497. - segafilm muxer
  1498. - vfrdet filter
  1499. - SRCNN filter
  1500. version 3.4:
  1501. - deflicker video filter
  1502. - doubleweave video filter
  1503. - lumakey video filter
  1504. - pixscope video filter
  1505. - oscilloscope video filter
  1506. - config.log and other configuration files moved into ffbuild/ directory
  1507. - update cuvid/nvenc headers to Video Codec SDK 8.0.14
  1508. - afir audio filter
  1509. - scale_cuda CUDA based video scale filter
  1510. - librsvg support for svg rasterization
  1511. - crossfeed audio filter
  1512. - spec compliant VP9 muxing support in MP4
  1513. - remove the libnut muxer/demuxer wrappers
  1514. - remove the libschroedinger encoder/decoder wrappers
  1515. - surround audio filter
  1516. - sofalizer filter switched to libmysofa
  1517. - Gremlin Digital Video demuxer and decoder
  1518. - headphone audio filter
  1519. - superequalizer audio filter
  1520. - roberts video filter
  1521. - The x86 assembler default switched from yasm to nasm, pass
  1522. --x86asmexe=yasm to configure to restore the old behavior.
  1523. - additional frame format support for Interplay MVE movies
  1524. - support for decoding through D3D11VA in ffmpeg
  1525. - limiter video filter
  1526. - libvmaf video filter
  1527. - Dolby E decoder and SMPTE 337M demuxer
  1528. - unpremultiply video filter
  1529. - tlut2 video filter
  1530. - floodfill video filter
  1531. - pseudocolor video filter
  1532. - raw G.726 muxer and demuxer, left- and right-justified
  1533. - NewTek NDI input/output device
  1534. - Some video filters with several inputs now use a common set of options:
  1535. blend, libvmaf, lut3d, overlay, psnr, ssim.
  1536. They must always be used by name.
  1537. - FITS demuxer and decoder
  1538. - FITS muxer and encoder
  1539. - add --disable-autodetect build switch
  1540. - drop deprecated qtkit input device (use avfoundation instead)
  1541. - despill video filter
  1542. - haas audio filter
  1543. - SUP/PGS subtitle muxer
  1544. - convolve video filter
  1545. - VP9 tile threading support
  1546. - KMS screen grabber
  1547. - CUDA thumbnail filter
  1548. - V4L2 mem2mem HW assisted codecs
  1549. - Rockchip MPP hardware decoding
  1550. - vmafmotion video filter
  1551. - use MIME type "G726" for little-endian G.726, "AAL2-G726" for big-endian G.726
  1552. version 3.3:
  1553. - CrystalHD decoder moved to new decode API
  1554. - add internal ebur128 library, remove external libebur128 dependency
  1555. - Pro-MPEG CoP #3-R2 FEC protocol
  1556. - premultiply video filter
  1557. - Support for spherical videos
  1558. - configure now fails if autodetect-libraries are requested but not found
  1559. - PSD Decoder
  1560. - 16.8 floating point pcm decoder
  1561. - 24.0 floating point pcm decoder
  1562. - Apple Pixlet decoder
  1563. - QDMC audio decoder
  1564. - NewTek SpeedHQ decoder
  1565. - MIDI Sample Dump Standard demuxer
  1566. - readeia608 filter
  1567. - Sample Dump eXchange demuxer
  1568. - abitscope multimedia filter
  1569. - Scenarist Closed Captions demuxer and muxer
  1570. - threshold filter
  1571. - midequalizer filter
  1572. - Optimal Huffman tables for (M)JPEG encoding
  1573. - VAAPI-accelerated MPEG-2 and VP8 encoding
  1574. - FM Screen Capture Codec decoder
  1575. - native Opus encoder
  1576. - ScreenPressor decoder
  1577. - incomplete ClearVideo decoder
  1578. - Intel QSV video scaling and deinterlacing filters
  1579. - Support MOV with multiple sample description tables
  1580. - XPM decoder
  1581. - Removed the legacy X11 screen grabber, use XCB instead
  1582. - MPEG-7 Video Signature filter
  1583. - Removed asyncts filter (use af_aresample instead)
  1584. - Intel QSV-accelerated VP8 video decoding
  1585. - VAAPI-accelerated deinterlacing
  1586. version 3.2:
  1587. - libopenmpt demuxer
  1588. - tee protocol
  1589. - Changed metadata print option to accept general urls
  1590. - Alias muxer for Ogg Video (.ogv)
  1591. - VP8 in Ogg muxing
  1592. - curves filter doesn't automatically insert points at x=0 and x=1 anymore
  1593. - 16-bit support in curves filter and selectivecolor filter
  1594. - OpenH264 decoder wrapper
  1595. - MediaCodec H.264/HEVC/MPEG-4/VP8/VP9 hwaccel
  1596. - True Audio (TTA) muxer
  1597. - crystalizer audio filter
  1598. - acrusher audio filter
  1599. - bitplanenoise video filter
  1600. - floating point support in als decoder
  1601. - fifo muxer
  1602. - maskedclamp filter
  1603. - hysteresis filter
  1604. - lut2 filter
  1605. - yuvtestsrc filter
  1606. - CUDA CUVID H.263/VP8/VP9/10 bit HEVC (Dithered) Decoding
  1607. - vaguedenoiser filter
  1608. - added threads option per filter instance
  1609. - weave filter
  1610. - gblur filter
  1611. - avgblur filter
  1612. - sobel and prewitt filter
  1613. - MediaCodec HEVC/MPEG-4/VP8/VP9 decoding
  1614. - Meridian Lossless Packing (MLP) / TrueHD encoder
  1615. - Non-Local Means (nlmeans) denoising filter
  1616. - sdl2 output device and ffplay support
  1617. - sdl1 output device and sdl1 support removed
  1618. - extended mov edit list support
  1619. - libfaac encoder removed
  1620. - Matroska muxer now writes CRC32 elements by default in all Level 1 elements
  1621. - sidedata video and asidedata audio filter
  1622. - Changed mapping of rtp MIME type G726 to codec g726le.
  1623. - spec compliant VAAPI/DXVA2 VC-1 decoding of slices in frame-coded images
  1624. version 3.1:
  1625. - DXVA2-accelerated HEVC Main10 decoding
  1626. - fieldhint filter
  1627. - loop video filter and aloop audio filter
  1628. - Bob Weaver deinterlacing filter
  1629. - firequalizer filter
  1630. - datascope filter
  1631. - bench and abench filters
  1632. - ciescope filter
  1633. - protocol blacklisting API
  1634. - MediaCodec H264 decoding
  1635. - VC-2 HQ RTP payload format (draft v1) depacketizer and packetizer
  1636. - VP9 RTP payload format (draft v2) packetizer
  1637. - AudioToolbox audio decoders
  1638. - AudioToolbox audio encoders
  1639. - coreimage filter (GPU based image filtering on OSX)
  1640. - libdcadec removed
  1641. - bitstream filter for extracting DTS core
  1642. - ADPCM IMA DAT4 decoder
  1643. - musx demuxer
  1644. - aix demuxer
  1645. - remap filter
  1646. - hash and framehash muxers
  1647. - colorspace filter
  1648. - hdcd filter
  1649. - readvitc filter
  1650. - VAAPI-accelerated format conversion and scaling
  1651. - libnpp/CUDA-accelerated format conversion and scaling
  1652. - Duck TrueMotion 2.0 Real Time decoder
  1653. - Wideband Single-bit Data (WSD) demuxer
  1654. - VAAPI-accelerated H.264/HEVC/MJPEG encoding
  1655. - DTS Express (LBR) decoder
  1656. - Generic OpenMAX IL encoder with support for Raspberry Pi
  1657. - IFF ANIM demuxer & decoder
  1658. - Direct Stream Transfer (DST) decoder
  1659. - loudnorm filter
  1660. - MTAF demuxer and decoder
  1661. - MagicYUV decoder
  1662. - OpenExr improvements (tile data and B44/B44A support)
  1663. - BitJazz SheerVideo decoder
  1664. - CUDA CUVID H264/HEVC decoder
  1665. - 10-bit depth support in native utvideo decoder
  1666. - libutvideo wrapper removed
  1667. - YUY2 Lossless Codec decoder
  1668. - VideoToolbox H.264 encoder
  1669. version 3.0:
  1670. - Common Encryption (CENC) MP4 encoding and decoding support
  1671. - DXV decoding
  1672. - extrastereo filter
  1673. - ocr filter
  1674. - alimiter filter
  1675. - stereowiden filter
  1676. - stereotools filter
  1677. - rubberband filter
  1678. - tremolo filter
  1679. - agate filter
  1680. - chromakey filter
  1681. - maskedmerge filter
  1682. - Screenpresso SPV1 decoding
  1683. - chromaprint fingerprinting muxer
  1684. - ffplay dynamic volume control
  1685. - displace filter
  1686. - selectivecolor filter
  1687. - extensive native AAC encoder improvements and removal of experimental flag
  1688. - ADPCM PSX decoder
  1689. - 3dostr, dcstr, fsb, genh, vag, xvag, ads, msf, svag & vpk demuxer
  1690. - zscale filter
  1691. - wve demuxer
  1692. - zero-copy Intel QSV transcoding in ffmpeg
  1693. - shuffleframes filter
  1694. - SDX2 DPCM decoder
  1695. - vibrato filter
  1696. - innoHeim/Rsupport Screen Capture Codec decoder
  1697. - ADPCM AICA decoder
  1698. - Interplay ACM demuxer and audio decoder
  1699. - XMA1 & XMA2 decoder
  1700. - realtime filter
  1701. - anoisesrc audio filter source
  1702. - IVR demuxer
  1703. - compensationdelay filter
  1704. - acompressor filter
  1705. - support encoding 16-bit RLE SGI images
  1706. - apulsator filter
  1707. - sidechaingate audio filter
  1708. - mipsdspr1 option has been renamed to mipsdsp
  1709. - aemphasis filter
  1710. - mips32r5 option has been removed
  1711. - mips64r6 option has been removed
  1712. - DXVA2-accelerated VP9 decoding
  1713. - SOFAlizer: virtual binaural acoustics filter
  1714. - VAAPI VP9 hwaccel
  1715. - audio high-order multiband parametric equalizer
  1716. - automatic bitstream filtering
  1717. - showspectrumpic filter
  1718. - libstagefright support removed
  1719. - spectrumsynth filter
  1720. - ahistogram filter
  1721. - only seek with the right mouse button in ffplay
  1722. - toggle full screen when double-clicking with the left mouse button in ffplay
  1723. - afftfilt filter
  1724. - convolution filter
  1725. - libquvi support removed
  1726. - support for dvaudio in wav and avi
  1727. - libaacplus and libvo-aacenc support removed
  1728. - Cineform HD decoder
  1729. - new DCA decoder with full support for DTS-HD extensions
  1730. - significant performance improvements in Windows Television (WTV) demuxer
  1731. - nnedi deinterlacer
  1732. - streamselect video and astreamselect audio filter
  1733. - swaprect filter
  1734. - metadata video and ametadata audio filter
  1735. - SMPTE VC-2 HQ profile support for the Dirac decoder
  1736. - SMPTE VC-2 native encoder supporting the HQ profile
  1737. version 2.8:
  1738. - colorkey video filter
  1739. - BFSTM/BCSTM demuxer
  1740. - little-endian ADPCM_THP decoder
  1741. - Hap decoder and encoder
  1742. - DirectDraw Surface image/texture decoder
  1743. - ssim filter
  1744. - optional new ASF demuxer
  1745. - showvolume filter
  1746. - Many improvements to the JPEG 2000 decoder
  1747. - Go2Meeting decoding support
  1748. - adrawgraph audio and drawgraph video filter
  1749. - removegrain video filter
  1750. - Intel QSV-accelerated MPEG-2 video and HEVC encoding
  1751. - Intel QSV-accelerated MPEG-2 video and HEVC decoding
  1752. - Intel QSV-accelerated VC-1 video decoding
  1753. - libkvazaar HEVC encoder
  1754. - erosion, dilation, deflate and inflate video filters
  1755. - Dynamic Audio Normalizer as dynaudnorm filter
  1756. - Reverse video and areverse audio filter
  1757. - Random filter
  1758. - deband filter
  1759. - AAC fixed-point decoding
  1760. - sidechaincompress audio filter
  1761. - bitstream filter for converting HEVC from MP4 to Annex B
  1762. - acrossfade audio filter
  1763. - allyuv and allrgb video sources
  1764. - atadenoise video filter
  1765. - OS X VideoToolbox support
  1766. - aphasemeter filter
  1767. - showfreqs filter
  1768. - vectorscope filter
  1769. - waveform filter
  1770. - hstack and vstack filter
  1771. - Support DNx100 (1440x1080@8)
  1772. - VAAPI hevc hwaccel
  1773. - VDPAU hevc hwaccel
  1774. - framerate filter
  1775. - Switched default encoders for webm to VP9 and Opus
  1776. - Removed experimental flag from the JPEG 2000 encoder
  1777. version 2.7:
  1778. - FFT video filter
  1779. - TDSC decoder
  1780. - DTS lossless extension (XLL) decoding (not lossless, disabled by default)
  1781. - showwavespic filter
  1782. - DTS decoding through libdcadec
  1783. - Drop support for nvenc API before 5.0
  1784. - nvenc HEVC encoder
  1785. - Detelecine filter
  1786. - Intel QSV-accelerated H.264 encoding
  1787. - MMAL-accelerated H.264 decoding
  1788. - basic APNG encoder and muxer with default extension "apng"
  1789. - unpack DivX-style packed B-frames in MPEG-4 bitstream filter
  1790. - WebM Live Chunk Muxer
  1791. - nvenc level and tier options
  1792. - chorus filter
  1793. - Canopus HQ/HQA decoder
  1794. - Automatically rotate videos based on metadata in ffmpeg
  1795. - improved Quickdraw compatibility
  1796. - VP9 high bit-depth and extended colorspaces decoding support
  1797. - WebPAnimEncoder API when available for encoding and muxing WebP
  1798. - Direct3D11-accelerated decoding
  1799. - Support Secure Transport
  1800. - Multipart JPEG demuxer
  1801. version 2.6:
  1802. - nvenc encoder
  1803. - 10bit spp filter
  1804. - colorlevels filter
  1805. - RIFX format for *.wav files
  1806. - RTP/mpegts muxer
  1807. - non continuous cache protocol support
  1808. - tblend filter
  1809. - cropdetect support for non 8bpp, absolute (if limit >= 1) and relative (if limit < 1.0) threshold
  1810. - Camellia symmetric block cipher
  1811. - OpenH264 encoder wrapper
  1812. - VOC seeking support
  1813. - Closed caption Decoder
  1814. - fspp, uspp, pp7 MPlayer postprocessing filters ported to native filters
  1815. - showpalette filter
  1816. - Twofish symmetric block cipher
  1817. - Support DNx100 (960x720@8)
  1818. - eq2 filter ported from libmpcodecs as eq filter
  1819. - removed libmpcodecs
  1820. - Changed default DNxHD colour range in QuickTime .mov derivatives to mpeg range
  1821. - ported softpulldown filter from libmpcodecs as repeatfields filter
  1822. - dcshift filter
  1823. - RTP depacketizer for loss tolerant payload format for MP3 audio (RFC 5219)
  1824. - RTP depacketizer for AC3 payload format (RFC 4184)
  1825. - palettegen and paletteuse filters
  1826. - VP9 RTP payload format (draft 0) experimental depacketizer
  1827. - RTP depacketizer for DV (RFC 6469)
  1828. - DXVA2-accelerated HEVC decoding
  1829. - AAC ELD 480 decoding
  1830. - Intel QSV-accelerated H.264 decoding
  1831. - DSS SP decoder and DSS demuxer
  1832. - Fix stsd atom corruption in DNxHD QuickTimes
  1833. - Canopus HQX decoder
  1834. - RTP depacketization of T.140 text (RFC 4103)
  1835. - Port MIPS optimizations to 64-bit
  1836. version 2.5:
  1837. - HEVC/H.265 RTP payload format (draft v6) packetizer
  1838. - SUP/PGS subtitle demuxer
  1839. - ffprobe -show_pixel_formats option
  1840. - CAST128 symmetric block cipher, ECB mode
  1841. - STL subtitle demuxer and decoder
  1842. - libutvideo YUV 4:2:2 10bit support
  1843. - XCB-based screen-grabber
  1844. - UDP-Lite support (RFC 3828)
  1845. - xBR scaling filter
  1846. - AVFoundation screen capturing support
  1847. - ffserver supports codec private options
  1848. - creating DASH compatible fragmented MP4, MPEG-DASH segmenting muxer
  1849. - WebP muxer with animated WebP support
  1850. - zygoaudio decoding support
  1851. - APNG demuxer
  1852. - postproc visualization support
  1853. version 2.4:
  1854. - Icecast protocol
  1855. - ported lenscorrection filter from frei0r filter
  1856. - large optimizations in dctdnoiz to make it usable
  1857. - ICY metadata are now requested by default with the HTTP protocol
  1858. - support for using metadata in stream specifiers in fftools
  1859. - LZMA compression support in TIFF decoder
  1860. - H.261 RTP payload format (RFC 4587) depacketizer and experimental packetizer
  1861. - HEVC/H.265 RTP payload format (draft v6) depacketizer
  1862. - added codecview filter to visualize information exported by some codecs
  1863. - Matroska 3D support thorugh side data
  1864. - HTML generation using texi2html is deprecated in favor of makeinfo/texi2any
  1865. - silenceremove filter
  1866. version 2.3:
  1867. - AC3 fixed-point decoding
  1868. - shuffleplanes filter
  1869. - subfile protocol
  1870. - Phantom Cine demuxer
  1871. - replaygain data export
  1872. - VP7 video decoder
  1873. - Alias PIX image encoder and decoder
  1874. - Improvements to the BRender PIX image decoder
  1875. - Improvements to the XBM decoder
  1876. - QTKit input device
  1877. - improvements to OpenEXR image decoder
  1878. - support decoding 16-bit RLE SGI images
  1879. - GDI screen grabbing for Windows
  1880. - alternative rendition support for HTTP Live Streaming
  1881. - AVFoundation input device
  1882. - Direct Stream Digital (DSD) decoder
  1883. - Magic Lantern Video (MLV) demuxer
  1884. - On2 AVC (Audio for Video) decoder
  1885. - support for decoding through DXVA2 in ffmpeg
  1886. - libbs2b-based stereo-to-binaural audio filter
  1887. - libx264 reference frames count limiting depending on level
  1888. - native Opus decoder
  1889. - display matrix export and rotation API
  1890. - WebVTT encoder
  1891. - showcqt multimedia filter
  1892. - zoompan filter
  1893. - signalstats filter
  1894. - hqx filter (hq2x, hq3x, hq4x)
  1895. - flanger filter
  1896. - Image format auto-detection
  1897. - LRC demuxer and muxer
  1898. - Samba protocol (via libsmbclient)
  1899. - WebM DASH Manifest muxer
  1900. - libfribidi support in drawtext
  1901. version 2.2:
  1902. - HNM version 4 demuxer and video decoder
  1903. - Live HDS muxer
  1904. - setsar/setdar filters now support variables in ratio expressions
  1905. - elbg filter
  1906. - string validation in ffprobe
  1907. - support for decoding through VDPAU in ffmpeg (the -hwaccel option)
  1908. - complete Voxware MetaSound decoder
  1909. - remove mp3_header_compress bitstream filter
  1910. - Windows resource files for shared libraries
  1911. - aeval filter
  1912. - stereoscopic 3d metadata handling
  1913. - WebP encoding via libwebp
  1914. - ATRAC3+ decoder
  1915. - VP8 in Ogg demuxing
  1916. - side & metadata support in NUT
  1917. - framepack filter
  1918. - XYZ12 rawvideo support in NUT
  1919. - Exif metadata support in WebP decoder
  1920. - OpenGL device
  1921. - Use metadata_header_padding to control padding in ID3 tags (currently used in
  1922. MP3, AIFF, and OMA files), FLAC header, and the AVI "junk" block.
  1923. - Mirillis FIC video decoder
  1924. - Support DNx444
  1925. - libx265 encoder
  1926. - dejudder filter
  1927. - Autodetect VDA like all other hardware accelerations
  1928. - aliases and defaults for Ogg subtypes (opus, spx)
  1929. version 2.1:
  1930. - aecho filter
  1931. - perspective filter ported from libmpcodecs
  1932. - ffprobe -show_programs option
  1933. - compand filter
  1934. - RTMP seek support
  1935. - when transcoding with ffmpeg (i.e. not streamcopying), -ss is now accurate
  1936. even when used as an input option. Previous behavior can be restored with
  1937. the -noaccurate_seek option.
  1938. - ffmpeg -t option can now be used for inputs, to limit the duration of
  1939. data read from an input file
  1940. - incomplete Voxware MetaSound decoder
  1941. - read EXIF metadata from JPEG
  1942. - DVB teletext decoder
  1943. - phase filter ported from libmpcodecs
  1944. - w3fdif filter
  1945. - Opus support in Matroska
  1946. - FFV1 version 1.3 is stable and no longer experimental
  1947. - FFV1: YUVA(444,422,420) 9, 10 and 16 bit support
  1948. - changed DTS stream id in lavf mpeg ps muxer from 0x8a to 0x88, to be
  1949. more consistent with other muxers.
  1950. - adelay filter
  1951. - pullup filter ported from libmpcodecs
  1952. - ffprobe -read_intervals option
  1953. - Lossless and alpha support for WebP decoder
  1954. - Error Resilient AAC syntax (ER AAC LC) decoding
  1955. - Low Delay AAC (ER AAC LD) decoding
  1956. - mux chapters in ASF files
  1957. - SFTP protocol (via libssh)
  1958. - libx264: add ability to encode in YUVJ422P and YUVJ444P
  1959. - Fraps: use BT.709 colorspace by default for yuv, as reference fraps decoder does
  1960. - make decoding alpha optional for prores, ffv1 and vp6 by setting
  1961. the skip_alpha flag.
  1962. - ladspa wrapper filter
  1963. - native VP9 decoder
  1964. - dpx parser
  1965. - max_error_rate parameter in ffmpeg
  1966. - PulseAudio output device
  1967. - ReplayGain scanner
  1968. - Enhanced Low Delay AAC (ER AAC ELD) decoding (no LD SBR support)
  1969. - Linux framebuffer output device
  1970. - HEVC decoder
  1971. - raw HEVC, HEVC in MOV/MP4, HEVC in Matroska, HEVC in MPEG-TS demuxing
  1972. - mergeplanes filter
  1973. version 2.0:
  1974. - curves filter
  1975. - reference-counting for AVFrame and AVPacket data
  1976. - ffmpeg now fails when input options are used for output file
  1977. or vice versa
  1978. - support for Monkey's Audio versions from 3.93
  1979. - perms and aperms filters
  1980. - audio filtering support in ffplay
  1981. - 10% faster aac encoding on x86 and MIPS
  1982. - sine audio filter source
  1983. - WebP demuxing and decoding support
  1984. - ffmpeg options -filter_script and -filter_complex_script, which allow a
  1985. filtergraph description to be read from a file
  1986. - OpenCL support
  1987. - audio phaser filter
  1988. - separatefields filter
  1989. - libquvi demuxer
  1990. - uniform options syntax across all filters
  1991. - telecine filter
  1992. - interlace filter
  1993. - smptehdbars source
  1994. - inverse telecine filters (fieldmatch and decimate)
  1995. - colorbalance filter
  1996. - colorchannelmixer filter
  1997. - The matroska demuxer can now output proper verbatim ASS packets. It will
  1998. become the default at the next libavformat major bump.
  1999. - decent native animated GIF encoding
  2000. - asetrate filter
  2001. - interleave filter
  2002. - timeline editing with filters
  2003. - vidstabdetect and vidstabtransform filters for video stabilization using
  2004. the vid.stab library
  2005. - astats filter
  2006. - trim and atrim filters
  2007. - ffmpeg -t and -ss (output-only) options are now sample-accurate when
  2008. transcoding audio
  2009. - Matroska muxer can now put the index at the beginning of the file.
  2010. - extractplanes filter
  2011. - avectorscope filter
  2012. - ADPCM DTK decoder
  2013. - ADP demuxer
  2014. - RSD demuxer
  2015. - RedSpark demuxer
  2016. - ADPCM IMA Radical decoder
  2017. - zmq filters
  2018. - DCT denoiser filter (dctdnoiz)
  2019. - Wavelet denoiser filter ported from libmpcodecs as owdenoise (formerly "ow")
  2020. - Apple Intermediate Codec decoder
  2021. - Escape 130 video decoder
  2022. - FTP protocol support
  2023. - V4L2 output device
  2024. - 3D LUT filter (lut3d)
  2025. - SMPTE 302M audio encoder
  2026. - support for slice multithreading in libavfilter
  2027. - Hald CLUT support (generation and filtering)
  2028. - VC-1 interlaced B-frame support
  2029. - support for WavPack muxing (raw and in Matroska)
  2030. - XVideo output device
  2031. - vignette filter
  2032. - True Audio (TTA) encoder
  2033. - Go2Webinar decoder
  2034. - mcdeint filter ported from libmpcodecs
  2035. - sab filter ported from libmpcodecs
  2036. - ffprobe -show_chapters option
  2037. - WavPack encoding through libwavpack
  2038. - rotate filter
  2039. - spp filter ported from libmpcodecs
  2040. - libgme support
  2041. - psnr filter
  2042. version 1.2:
  2043. - VDPAU hardware acceleration through normal hwaccel
  2044. - SRTP support
  2045. - Error diffusion dither in Swscale
  2046. - Chained Ogg support
  2047. - Theora Midstream reconfiguration support
  2048. - EVRC decoder
  2049. - audio fade filter
  2050. - filtering audio with unknown channel layout
  2051. - allpass, bass, bandpass, bandreject, biquad, equalizer, highpass, lowpass
  2052. and treble audio filter
  2053. - improved showspectrum filter, with multichannel support and sox-like colors
  2054. - histogram filter
  2055. - tee muxer
  2056. - il filter ported from libmpcodecs
  2057. - support ID3v2 tags in ASF files
  2058. - encrypted TTA stream decoding support
  2059. - RF64 support in WAV muxer
  2060. - noise filter ported from libmpcodecs
  2061. - Subtitles character encoding conversion
  2062. - blend filter
  2063. - stereo3d filter ported from libmpcodecs
  2064. version 1.1:
  2065. - stream disposition information printing in ffprobe
  2066. - filter for loudness analysis following EBU R128
  2067. - Opus encoder using libopus
  2068. - ffprobe -select_streams option
  2069. - Pinnacle TARGA CineWave YUV16 decoder
  2070. - TAK demuxer, decoder and parser
  2071. - DTS-HD demuxer
  2072. - remove -same_quant, it hasn't worked for years
  2073. - FFM2 support
  2074. - X-Face image encoder and decoder
  2075. - 24-bit FLAC encoding
  2076. - multi-channel ALAC encoding up to 7.1
  2077. - metadata (INFO tag) support in WAV muxer
  2078. - subtitles raw text decoder
  2079. - support for building DLLs using MSVC
  2080. - LVF demuxer
  2081. - ffescape tool
  2082. - metadata (info chunk) support in CAF muxer
  2083. - field filter ported from libmpcodecs
  2084. - AVR demuxer
  2085. - geq filter ported from libmpcodecs
  2086. - remove ffserver daemon mode
  2087. - AST muxer/demuxer
  2088. - new expansion syntax for drawtext
  2089. - BRender PIX image decoder
  2090. - ffprobe -show_entries option
  2091. - ffprobe -sections option
  2092. - ADPCM IMA Dialogic decoder
  2093. - BRSTM demuxer
  2094. - animated GIF decoder and demuxer
  2095. - PVF demuxer
  2096. - subtitles filter
  2097. - IRCAM muxer/demuxer
  2098. - Paris Audio File demuxer
  2099. - Virtual concatenation demuxer
  2100. - VobSub demuxer
  2101. - JSON captions for TED talks decoding support
  2102. - SOX Resampler support in libswresample
  2103. - aselect filter
  2104. - SGI RLE 8-bit / Silicon Graphics RLE 8-bit video decoder
  2105. - Silicon Graphics Motion Video Compressor 1 & 2 decoder
  2106. - Silicon Graphics Movie demuxer
  2107. - apad filter
  2108. - Resolution & pixel format change support with multithreading for H.264
  2109. - documentation split into per-component manuals
  2110. - pp (postproc) filter ported from MPlayer
  2111. - NIST Sphere demuxer
  2112. - MPL2, VPlayer, MPlayer, AQTitle, PJS and SubViewer v1 subtitles demuxers and decoders
  2113. - Sony Wave64 muxer
  2114. - adobe and limelight publisher authentication in RTMP
  2115. - data: URI scheme
  2116. - support building on the Plan 9 operating system
  2117. - kerndeint filter ported from MPlayer
  2118. - histeq filter ported from VirtualDub
  2119. - Megalux Frame demuxer
  2120. - 012v decoder
  2121. - Improved AVC Intra decoding support
  2122. version 1.0:
  2123. - INI and flat output in ffprobe
  2124. - Scene detection in libavfilter
  2125. - Indeo Audio decoder
  2126. - channelsplit audio filter
  2127. - setnsamples audio filter
  2128. - atempo filter
  2129. - ffprobe -show_data option
  2130. - RTMPT protocol support
  2131. - iLBC encoding/decoding via libilbc
  2132. - Microsoft Screen 1 decoder
  2133. - join audio filter
  2134. - audio channel mapping filter
  2135. - Microsoft ATC Screen decoder
  2136. - RTSP listen mode
  2137. - TechSmith Screen Codec 2 decoder
  2138. - AAC encoding via libfdk-aac
  2139. - Microsoft Expression Encoder Screen decoder
  2140. - RTMPS protocol support
  2141. - RTMPTS protocol support
  2142. - RTMPE protocol support
  2143. - RTMPTE protocol support
  2144. - showwaves and showspectrum filter
  2145. - LucasArts SMUSH SANM playback support
  2146. - LucasArts SMUSH VIMA audio decoder (ADPCM)
  2147. - LucasArts SMUSH demuxer
  2148. - SAMI, RealText and SubViewer demuxers and decoders
  2149. - Heart Of Darkness PAF playback support
  2150. - iec61883 device
  2151. - asettb filter
  2152. - new option: -progress
  2153. - 3GPP Timed Text encoder/decoder
  2154. - GeoTIFF decoder support
  2155. - ffmpeg -(no)stdin option
  2156. - Opus decoder using libopus
  2157. - caca output device using libcaca
  2158. - alphaextract and alphamerge filters
  2159. - concat filter
  2160. - flite filter
  2161. - Canopus Lossless Codec decoder
  2162. - bitmap subtitles in filters (experimental and temporary)
  2163. - MP2 encoding via TwoLAME
  2164. - bmp parser
  2165. - smptebars source
  2166. - asetpts filter
  2167. - hue filter
  2168. - ICO muxer
  2169. - SubRip encoder and decoder without embedded timing
  2170. - edge detection filter
  2171. - framestep filter
  2172. - ffmpeg -shortest option is now per-output file
  2173. -pass and -passlogfile are now per-output stream
  2174. - volume measurement filter
  2175. - Ut Video encoder
  2176. - Microsoft Screen 2 decoder
  2177. - smartblur filter ported from MPlayer
  2178. - CPiA decoder
  2179. - decimate filter ported from MPlayer
  2180. - RTP depacketization of JPEG
  2181. - Smooth Streaming live segmenter muxer
  2182. - F4V muxer
  2183. - sendcmd and asendcmd filters
  2184. - WebVTT demuxer and decoder (simple tags supported)
  2185. - RTP packetization of JPEG
  2186. - faststart option in the MOV/MP4 muxer
  2187. - support for building with MSVC
  2188. version 0.11:
  2189. - Fixes: CVE-2012-2772, CVE-2012-2774, CVE-2012-2775, CVE-2012-2776, CVE-2012-2777,
  2190. CVE-2012-2779, CVE-2012-2782, CVE-2012-2783, CVE-2012-2784, CVE-2012-2785,
  2191. CVE-2012-2786, CVE-2012-2787, CVE-2012-2788, CVE-2012-2789, CVE-2012-2790,
  2192. CVE-2012-2791, CVE-2012-2792, CVE-2012-2793, CVE-2012-2794, CVE-2012-2795,
  2193. CVE-2012-2796, CVE-2012-2797, CVE-2012-2798, CVE-2012-2799, CVE-2012-2800,
  2194. CVE-2012-2801, CVE-2012-2802, CVE-2012-2803, CVE-2012-2804,
  2195. - v408 Quicktime and Microsoft AYUV Uncompressed 4:4:4:4 encoder and decoder
  2196. - setfield filter
  2197. - CDXL demuxer and decoder
  2198. - Apple ProRes encoder
  2199. - ffprobe -count_packets and -count_frames options
  2200. - Sun Rasterfile Encoder
  2201. - ID3v2 attached pictures reading and writing
  2202. - WMA Lossless decoder
  2203. - bluray protocol
  2204. - blackdetect filter
  2205. - libutvideo encoder wrapper (--enable-libutvideo)
  2206. - swapuv filter
  2207. - bbox filter
  2208. - XBM encoder and decoder
  2209. - RealAudio Lossless decoder
  2210. - ZeroCodec decoder
  2211. - tile video filter
  2212. - Metal Gear Solid: The Twin Snakes demuxer
  2213. - OpenEXR image decoder
  2214. - removelogo filter
  2215. - drop support for ffmpeg without libavfilter
  2216. - drawtext video filter: fontconfig support
  2217. - ffmpeg -benchmark_all option
  2218. - super2xsai filter ported from libmpcodecs
  2219. - add libavresample audio conversion library for compatibility
  2220. - MicroDVD decoder
  2221. - Avid Meridien (AVUI) encoder and decoder
  2222. - accept + prefix to -pix_fmt option to disable automatic conversions.
  2223. - complete audio filtering in libavfilter and ffmpeg
  2224. - add fps filter
  2225. - vorbis parser
  2226. - png parser
  2227. - audio mix filter
  2228. - ffv1: support (draft) version 1.3
  2229. version 0.10:
  2230. - Fixes: CVE-2011-3929, CVE-2011-3934, CVE-2011-3935, CVE-2011-3936,
  2231. CVE-2011-3937, CVE-2011-3940, CVE-2011-3941, CVE-2011-3944,
  2232. CVE-2011-3945, CVE-2011-3946, CVE-2011-3947, CVE-2011-3949,
  2233. CVE-2011-3950, CVE-2011-3951, CVE-2011-3952
  2234. - v410 Quicktime Uncompressed 4:4:4 10-bit encoder and decoder
  2235. - SBaGen (SBG) binaural beats script demuxer
  2236. - OpenMG Audio muxer
  2237. - Timecode extraction in DV and MOV
  2238. - thumbnail video filter
  2239. - XML output in ffprobe
  2240. - asplit audio filter
  2241. - tinterlace video filter
  2242. - astreamsync audio filter
  2243. - amerge audio filter
  2244. - ISMV (Smooth Streaming) muxer
  2245. - GSM audio parser
  2246. - SMJPEG muxer
  2247. - XWD encoder and decoder
  2248. - Automatic thread count based on detection number of (available) CPU cores
  2249. - y41p Brooktree Uncompressed 4:1:1 12-bit encoder and decoder
  2250. - ffprobe -show_error option
  2251. - Avid 1:1 10-bit RGB Packer codec
  2252. - v308 Quicktime Uncompressed 4:4:4 encoder and decoder
  2253. - yuv4 libquicktime packed 4:2:0 encoder and decoder
  2254. - ffprobe -show_frames option
  2255. - silencedetect audio filter
  2256. - ffprobe -show_program_version, -show_library_versions, -show_versions options
  2257. - rv34: frame-level multi-threading
  2258. - optimized iMDCT transform on x86 using SSE for for mpegaudiodec
  2259. - Improved PGS subtitle decoder
  2260. - dumpgraph option to lavfi device
  2261. - r210 and r10k encoders
  2262. - ffwavesynth decoder
  2263. - aviocat tool
  2264. - ffeval tool
  2265. - support encoding and decoding 4-channel SGI images
  2266. version 0.9:
  2267. - openal input device added
  2268. - boxblur filter added
  2269. - BWF muxer
  2270. - Flash Screen Video 2 decoder
  2271. - lavfi input device added
  2272. - added avconv, which is almost the same for now, except
  2273. for a few incompatible changes in the options, which will hopefully make them
  2274. easier to use. The changes are:
  2275. * The options placement is now strictly enforced! While in theory the
  2276. options for ffmpeg should be given in [input options] -i INPUT [output
  2277. options] OUTPUT order, in practice it was possible to give output options
  2278. before the -i and it mostly worked. Except when it didn't - the behavior was
  2279. a bit inconsistent. In avconv, it is not possible to mix input and output
  2280. options. All non-global options are reset after an input or output filename.
  2281. * All per-file options are now truly per-file - they apply only to the next
  2282. input or output file and specifying different values for different files
  2283. will now work properly (notably -ss and -t options).
  2284. * All per-stream options are now truly per-stream - it is possible to
  2285. specify which stream(s) should a given option apply to. See the Stream
  2286. specifiers section in the avconv manual for details.
  2287. * In ffmpeg some options (like -newvideo/-newaudio/...) are irregular in the
  2288. sense that they're specified after the output filename instead of before,
  2289. like all other options. In avconv this irregularity is removed, all options
  2290. apply to the next input or output file.
  2291. * -newvideo/-newaudio/-newsubtitle options were removed. Not only were they
  2292. irregular and highly confusing, they were also redundant. In avconv the -map
  2293. option will create new streams in the output file and map input streams to
  2294. them. E.g. avconv -i INPUT -map 0 OUTPUT will create an output stream for
  2295. each stream in the first input file.
  2296. * The -map option now has slightly different and more powerful syntax:
  2297. + Colons (':') are used to separate file index/stream type/stream index
  2298. instead of dots. Comma (',') is used to separate the sync stream instead
  2299. of colon.. This is done for consistency with other options.
  2300. + It's possible to specify stream type. E.g. -map 0:a:2 creates an
  2301. output stream from the third input audio stream.
  2302. + Omitting the stream index now maps all the streams of the given type,
  2303. not just the first. E.g. -map 0:s creates output streams for all the
  2304. subtitle streams in the first input file.
  2305. + Since -map can now match multiple streams, negative mappings were
  2306. introduced. Negative mappings disable some streams from an already
  2307. defined map. E.g. '-map 0 -map -0:a:1' means 'create output streams for
  2308. all the stream in the first input file, except for the second audio
  2309. stream'.
  2310. * There is a new option -c (or -codec) for choosing the decoder/encoder to
  2311. use, which makes it possible to precisely specify target stream(s) consistently with
  2312. other options. E.g. -c:v lib264 sets the codec for all video streams, -c:a:0
  2313. libvorbis sets the codec for the first audio stream and -c copy copies all
  2314. the streams without reencoding. Old -vcodec/-acodec/-scodec options are now
  2315. aliases to -c:v/a/s
  2316. * It is now possible to precisely specify which stream should an AVOption
  2317. apply to. E.g. -b:v:0 2M sets the bitrate for the first video stream, while
  2318. -b:a 128k sets the bitrate for all audio streams. Note that the old -ab 128k
  2319. syntax is deprecated and will stop working soon.
  2320. * -map_chapters now takes only an input file index and applies to the next
  2321. output file. This is consistent with how all the other options work.
  2322. * -map_metadata now takes only an input metadata specifier and applies to
  2323. the next output file. Output metadata specifier is now part of the option
  2324. name, similarly to the AVOptions/map/codec feature above.
  2325. * -metadata can now be used to set metadata on streams and chapters, e.g.
  2326. -metadata:s:1 language=eng sets the language of the first stream to 'eng'.
  2327. This made -vlang/-alang/-slang options redundant, so they were removed.
  2328. * -qscale option now uses stream specifiers and applies to all streams, not
  2329. just video. I.e. plain -qscale number would now apply to all streams. To get
  2330. the old behavior, use -qscale:v. Also there is now a shortcut -q for -qscale
  2331. and -aq is now an alias for -q:a.
  2332. * -vbsf/-absf/-sbsf options were removed and replaced by a -bsf option which
  2333. uses stream specifiers. Use -bsf:v/a/s instead of the old options.
  2334. * -itsscale option now uses stream specifiers, so its argument is only the
  2335. scale parameter.
  2336. * -intra option was removed, use -g 0 for the same effect.
  2337. * -psnr option was removed, use -flags +psnr for the same effect.
  2338. * -vf option is now an alias to the new -filter option, which uses stream specifiers.
  2339. * -vframes/-aframes/-dframes options are now aliases to the new -frames option.
  2340. * -vtag/-atag/-stag options are now aliases to the new -tag option.
  2341. - XMV demuxer
  2342. - LOAS demuxer
  2343. - ashowinfo filter added
  2344. - Windows Media Image decoder
  2345. - amovie source added
  2346. - LATM muxer/demuxer
  2347. - Speex encoder via libspeex
  2348. - JSON output in ffprobe
  2349. - WTV muxer
  2350. - Optional C++ Support (needed for libstagefright)
  2351. - H.264 Decoding on Android via Stagefright
  2352. - Prores decoder
  2353. - BIN/XBIN/ADF/IDF text file decoder
  2354. - aconvert audio filter added
  2355. - audio support to lavfi input device added
  2356. - libcdio-paranoia input device for audio CD grabbing
  2357. - Apple ProRes decoder
  2358. - CELT in Ogg demuxing
  2359. - G.723.1 demuxer and decoder
  2360. - libmodplug support (--enable-libmodplug)
  2361. - VC-1 interlaced decoding
  2362. - libutvideo wrapper (--enable-libutvideo)
  2363. - aevalsrc audio source added
  2364. - Ut Video decoder
  2365. - Speex encoding via libspeex
  2366. - 4:2:2 H.264 decoding support
  2367. - 4:2:2 and 4:4:4 H.264 encoding with libx264
  2368. - Pulseaudio input device
  2369. - Prores encoder
  2370. - Video Decoder Acceleration (VDA) HWAccel module.
  2371. - replacement Indeo 3 decoder
  2372. - new ffmpeg option: -map_channel
  2373. - volume audio filter added
  2374. - earwax audio filter added
  2375. - libv4l2 support (--enable-libv4l2)
  2376. - TLS/SSL and HTTPS protocol support
  2377. - AVOptions API rewritten and documented
  2378. - most of CODEC_FLAG2_*, some CODEC_FLAG_* and many codec-specific fields in
  2379. AVCodecContext deprecated. Codec private options should be used instead.
  2380. - Properly working defaults in libx264 wrapper, support for native presets.
  2381. - Encrypted OMA files support
  2382. - Discworld II BMV decoding support
  2383. - VBLE Decoder
  2384. - OS X Video Decoder Acceleration (VDA) support
  2385. - compact and csv output in ffprobe
  2386. - pan audio filter
  2387. - IFF Amiga Continuous Bitmap (ACBM) decoder
  2388. - ass filter
  2389. - CRI ADX audio format muxer and demuxer
  2390. - Playstation Portable PMP format demuxer
  2391. - Microsoft Windows ICO demuxer
  2392. - life source
  2393. - PCM format support in OMA demuxer
  2394. - CLJR encoder
  2395. - new option: -report
  2396. - Dxtory capture format decoder
  2397. - cellauto source
  2398. - Simple segmenting muxer
  2399. - Indeo 4 decoder
  2400. - SMJPEG demuxer
  2401. version 0.8:
  2402. - many many things we forgot because we rather write code than changelogs
  2403. - WebM support in Matroska de/muxer
  2404. - low overhead Ogg muxing
  2405. - MMS-TCP support
  2406. - VP8 de/encoding via libvpx
  2407. - Demuxer for On2's IVF format
  2408. - Pictor/PC Paint decoder
  2409. - HE-AAC v2 decoder
  2410. - HE-AAC v2 encoding with libaacplus
  2411. - libfaad2 wrapper removed
  2412. - DTS-ES extension (XCh) decoding support
  2413. - native VP8 decoder
  2414. - RTSP tunneling over HTTP
  2415. - RTP depacketization of SVQ3
  2416. - -strict inofficial replaced by -strict unofficial
  2417. - ffplay -exitonkeydown and -exitonmousedown options added
  2418. - native GSM / GSM MS decoder
  2419. - RTP depacketization of QDM2
  2420. - ANSI/ASCII art playback system
  2421. - Lego Mindstorms RSO de/muxer
  2422. - libavcore added (and subsequently removed)
  2423. - SubRip subtitle file muxer and demuxer
  2424. - Chinese AVS encoding via libxavs
  2425. - ffprobe -show_packets option added
  2426. - RTP packetization of Theora and Vorbis
  2427. - RTP depacketization of MP4A-LATM
  2428. - RTP packetization and depacketization of VP8
  2429. - hflip filter
  2430. - Apple HTTP Live Streaming demuxer
  2431. - a64 codec
  2432. - MMS-HTTP support
  2433. - G.722 ADPCM audio encoder/decoder
  2434. - R10k video decoder
  2435. - ocv_smooth filter
  2436. - frei0r wrapper filter
  2437. - change crop filter syntax to width:height:x:y
  2438. - make the crop filter accept parametric expressions
  2439. - make ffprobe accept AVFormatContext options
  2440. - yadif filter
  2441. - blackframe filter
  2442. - Demuxer for Leitch/Harris' VR native stream format (LXF)
  2443. - RTP depacketization of the X-QT QuickTime format
  2444. - SAP (Session Announcement Protocol, RFC 2974) muxer and demuxer
  2445. - cropdetect filter
  2446. - ffmpeg -crop* options removed
  2447. - transpose filter added
  2448. - ffmpeg -force_key_frames option added
  2449. - demuxer for receiving raw rtp:// URLs without an SDP description
  2450. - single stream LATM/LOAS decoder
  2451. - setpts filter added
  2452. - Win64 support for optimized x86 assembly functions
  2453. - MJPEG/AVI1 to JPEG/JFIF bitstream filter
  2454. - ASS subtitle encoder and decoder
  2455. - IEC 61937 encapsulation for E-AC-3, TrueHD, DTS-HD (for HDMI passthrough)
  2456. - overlay filter added
  2457. - rename aspect filter to setdar, and pixelaspect to setsar
  2458. - IEC 61937 demuxer
  2459. - Mobotix .mxg demuxer
  2460. - frei0r source added
  2461. - hqdn3d filter added
  2462. - RTP depacketization of QCELP
  2463. - FLAC parser added
  2464. - gradfun filter added
  2465. - AMR-WB decoder
  2466. - replace the ocv_smooth filter with a more generic ocv filter
  2467. - Windows Televison (WTV) demuxer
  2468. - FFmpeg metadata format muxer and demuxer
  2469. - SubRip (srt) subtitle encoder and decoder
  2470. - floating-point AC-3 encoder added
  2471. - Lagarith decoder
  2472. - ffmpeg -copytb option added
  2473. - IVF muxer added
  2474. - Wing Commander IV movies decoder added
  2475. - movie source added
  2476. - Bink version 'b' audio and video decoder
  2477. - Bitmap Brothers JV playback system
  2478. - Apple HTTP Live Streaming protocol handler
  2479. - sndio support for playback and record
  2480. - Linux framebuffer input device added
  2481. - Chronomaster DFA decoder
  2482. - DPX image encoder
  2483. - MicroDVD subtitle file muxer and demuxer
  2484. - Playstation Portable PMP format demuxer
  2485. - fieldorder video filter added
  2486. - AAC encoding via libvo-aacenc
  2487. - AMR-WB encoding via libvo-amrwbenc
  2488. - xWMA demuxer
  2489. - Mobotix MxPEG decoder
  2490. - VP8 frame-multithreading
  2491. - NEON optimizations for VP8
  2492. - Lots of deprecated API cruft removed
  2493. - fft and imdct optimizations for AVX (Sandy Bridge) processors
  2494. - showinfo filter added
  2495. - SMPTE 302M AES3 audio decoder
  2496. - Apple Core Audio Format muxer
  2497. - 9 bits and 10 bits per sample support in the H.264 decoder
  2498. - 9 bits and 10 bits FFV1 encoding / decoding
  2499. - split filter added
  2500. - select filter added
  2501. - sdl output device added
  2502. - libmpcodecs video filter support (3 times as many filters than before)
  2503. - mpeg2 aspect ratio dection fixed
  2504. - libxvid aspect pickiness fixed
  2505. - Frame multithreaded decoding
  2506. - E-AC-3 audio encoder
  2507. - ac3enc: add channel coupling support
  2508. - floating-point sample format support to the ac3, eac3, dca, aac, and vorbis decoders.
  2509. - H264/MPEG frame-level multi-threading
  2510. - All av_metadata_* functions renamed to av_dict_* and moved to libavutil
  2511. - 4:4:4 H.264 decoding support
  2512. - 10-bit H.264 optimizations for x86
  2513. - lut, lutrgb, and lutyuv filters added
  2514. - buffersink libavfilter sink added
  2515. - Bump libswscale for recently reported ABI break
  2516. - New J2K encoder (via OpenJPEG)
  2517. version 0.7:
  2518. - all the changes for 0.8, but keeping API/ABI compatibility with the 0.6 release
  2519. version 0.6:
  2520. - PB-frame decoding for H.263
  2521. - deprecated vhook subsystem removed
  2522. - deprecated old scaler removed
  2523. - VQF demuxer
  2524. - Alpha channel scaler
  2525. - PCX encoder
  2526. - RTP packetization of H.263
  2527. - RTP packetization of AMR
  2528. - RTP depacketization of Vorbis
  2529. - CorePNG decoding support
  2530. - Cook multichannel decoding support
  2531. - introduced avlanguage helpers in libavformat
  2532. - 8088flex TMV demuxer and decoder
  2533. - per-stream language-tags extraction in asfdec
  2534. - V210 decoder and encoder
  2535. - remaining GPL parts in AC-3 decoder converted to LGPL
  2536. - QCP demuxer
  2537. - SoX native format muxer and demuxer
  2538. - AMR-NB decoding/encoding, AMR-WB decoding via OpenCORE libraries
  2539. - DPX image decoder
  2540. - Electronic Arts Madcow decoder
  2541. - DivX (XSUB) subtitle encoder
  2542. - nonfree libamr support for AMR-NB/WB decoding/encoding removed
  2543. - experimental AAC encoder
  2544. - RTP depacketization of ASF and RTSP from WMS servers
  2545. - RTMP support in libavformat
  2546. - noX handling for OPT_BOOL X options
  2547. - Wave64 demuxer
  2548. - IEC-61937 compatible Muxer
  2549. - TwinVQ decoder
  2550. - Bluray (PGS) subtitle decoder
  2551. - LPCM support in MPEG-TS (HDMV RID as found on Blu-ray disks)
  2552. - WMA Pro decoder
  2553. - Core Audio Format demuxer
  2554. - ATRAC1 decoder
  2555. - MD STUDIO audio demuxer
  2556. - RF64 support in WAV demuxer
  2557. - MPEG-4 Audio Lossless Coding (ALS) decoder
  2558. - -formats option split into -formats, -codecs, -bsfs, and -protocols
  2559. - IV8 demuxer
  2560. - CDG demuxer and decoder
  2561. - R210 decoder
  2562. - Auravision Aura 1 and 2 decoders
  2563. - Deluxe Paint Animation playback system
  2564. - SIPR decoder
  2565. - Adobe Filmstrip muxer and demuxer
  2566. - RTP depacketization of H.263
  2567. - Bink demuxer and audio/video decoders
  2568. - enable symbol versioning by default for linkers that support it
  2569. - IFF PBM/ILBM bitmap decoder
  2570. - concat protocol
  2571. - Indeo 5 decoder
  2572. - RTP depacketization of AMR
  2573. - WMA Voice decoder
  2574. - ffprobe tool
  2575. - AMR-NB decoder
  2576. - RTSP muxer
  2577. - HE-AAC v1 decoder
  2578. - Kega Game Video (KGV1) decoder
  2579. - VorbisComment writing for FLAC, Ogg FLAC and Ogg Speex files
  2580. - RTP depacketization of Theora
  2581. - HTTP Digest authentication
  2582. - RTMP/RTMPT/RTMPS/RTMPE/RTMPTE protocol support via librtmp
  2583. - Psygnosis YOP demuxer and video decoder
  2584. - spectral extension support in the E-AC-3 decoder
  2585. - unsharp video filter
  2586. - RTP hinting in the mov/3gp/mp4 muxer
  2587. - Dirac in Ogg demuxing
  2588. - seek to keyframes in Ogg
  2589. - 4:2:2 and 4:4:4 Theora decoding
  2590. - 35% faster VP3/Theora decoding
  2591. - faster AAC decoding
  2592. - faster H.264 decoding
  2593. - RealAudio 1.0 (14.4K) encoder
  2594. version 0.5:
  2595. - DV50 AKA DVCPRO50 encoder, decoder, muxer and demuxer
  2596. - TechSmith Camtasia (TSCC) video decoder
  2597. - IBM Ultimotion (ULTI) video decoder
  2598. - Sierra Online audio file demuxer and decoder
  2599. - Apple QuickDraw (qdrw) video decoder
  2600. - Creative ADPCM audio decoder (16 bits as well as 8 bits schemes)
  2601. - Electronic Arts Multimedia (WVE/UV2/etc.) file demuxer
  2602. - Miro VideoXL (VIXL) video decoder
  2603. - H.261 video encoder
  2604. - QPEG video decoder
  2605. - Nullsoft Video (NSV) file demuxer
  2606. - Shorten audio decoder
  2607. - LOCO video decoder
  2608. - Apple Lossless Audio Codec (ALAC) decoder
  2609. - Winnov WNV1 video decoder
  2610. - Autodesk Animator Studio Codec (AASC) decoder
  2611. - Indeo 2 video decoder
  2612. - Fraps FPS1 video decoder
  2613. - Snow video encoder/decoder
  2614. - Sonic audio encoder/decoder
  2615. - Vorbis audio decoder
  2616. - Macromedia ADPCM decoder
  2617. - Duck TrueMotion 2 video decoder
  2618. - support for decoding FLX and DTA extensions in FLIC files
  2619. - H.264 custom quantization matrices support
  2620. - ffserver fixed, it should now be usable again
  2621. - QDM2 audio decoder
  2622. - Real Cooker audio decoder
  2623. - TrueSpeech audio decoder
  2624. - WMA2 audio decoder fixed, now all files should play correctly
  2625. - RealAudio 14.4 and 28.8 decoders fixed
  2626. - JPEG-LS decoder
  2627. - build system improvements
  2628. - tabs and trailing whitespace removed from the codebase
  2629. - CamStudio video decoder
  2630. - AIFF/AIFF-C audio format, encoding and decoding
  2631. - ADTS AAC file reading and writing
  2632. - Creative VOC file reading and writing
  2633. - American Laser Games multimedia (*.mm) playback system
  2634. - Zip Motion Blocks Video decoder
  2635. - improved Theora/VP3 decoder
  2636. - True Audio (TTA) decoder
  2637. - AVS demuxer and video decoder
  2638. - JPEG-LS encoder
  2639. - Smacker demuxer and decoder
  2640. - NuppelVideo/MythTV demuxer and RTjpeg decoder
  2641. - KMVC decoder
  2642. - MPEG-2 intra VLC support
  2643. - MPEG-2 4:2:2 encoder
  2644. - Flash Screen Video decoder
  2645. - GXF demuxer
  2646. - Chinese AVS decoder
  2647. - GXF muxer
  2648. - MXF demuxer
  2649. - VC-1/WMV3/WMV9 video decoder
  2650. - MacIntel support
  2651. - AviSynth support
  2652. - VMware video decoder
  2653. - VP5 video decoder
  2654. - VP6 video decoder
  2655. - WavPack lossless audio decoder
  2656. - Targa (.TGA) picture decoder
  2657. - Vorbis audio encoder
  2658. - Delphine Software .cin demuxer/audio and video decoder
  2659. - Tiertex .seq demuxer/video decoder
  2660. - MTV demuxer
  2661. - TIFF picture encoder and decoder
  2662. - GIF picture decoder
  2663. - Intel Music Coder decoder
  2664. - Zip Motion Blocks Video encoder
  2665. - Musepack decoder
  2666. - Flash Screen Video encoder
  2667. - Theora encoding via libtheora
  2668. - BMP encoder
  2669. - WMA encoder
  2670. - GSM-MS encoder and decoder
  2671. - DCA decoder
  2672. - DXA demuxer and decoder
  2673. - DNxHD decoder
  2674. - Gamecube movie (.THP) playback system
  2675. - Blackfin optimizations
  2676. - Interplay C93 demuxer and video decoder
  2677. - Bethsoft VID demuxer and video decoder
  2678. - CRYO APC demuxer
  2679. - ATRAC3 decoder
  2680. - V.Flash PTX decoder
  2681. - RoQ muxer, RoQ audio encoder
  2682. - Renderware TXD demuxer and decoder
  2683. - extern C declarations for C++ removed from headers
  2684. - sws_flags command line option
  2685. - codebook generator
  2686. - RoQ video encoder
  2687. - QTRLE encoder
  2688. - OS/2 support removed and restored again
  2689. - AC-3 decoder
  2690. - NUT muxer
  2691. - additional SPARC (VIS) optimizations
  2692. - Matroska muxer
  2693. - slice-based parallel H.264 decoding
  2694. - Monkey's Audio demuxer and decoder
  2695. - AMV audio and video decoder
  2696. - DNxHD encoder
  2697. - H.264 PAFF decoding
  2698. - Nellymoser ASAO decoder
  2699. - Beam Software SIFF demuxer and decoder
  2700. - libvorbis Vorbis decoding removed in favor of native decoder
  2701. - IntraX8 (J-Frame) subdecoder for WMV2 and VC-1
  2702. - Ogg (Theora, Vorbis and FLAC) muxer
  2703. - The "device" muxers and demuxers are now in a new libavdevice library
  2704. - PC Paintbrush PCX decoder
  2705. - Sun Rasterfile decoder
  2706. - TechnoTrend PVA demuxer
  2707. - Linux Media Labs MPEG-4 (LMLM4) demuxer
  2708. - AVM2 (Flash 9) SWF muxer
  2709. - QT variant of IMA ADPCM encoder
  2710. - VFW grabber
  2711. - iPod/iPhone compatible mp4 muxer
  2712. - Mimic decoder
  2713. - MSN TCP Webcam stream demuxer
  2714. - RL2 demuxer / decoder
  2715. - IFF demuxer
  2716. - 8SVX audio decoder
  2717. - non-recursive Makefiles
  2718. - BFI demuxer
  2719. - MAXIS EA XA (.xa) demuxer / decoder
  2720. - BFI video decoder
  2721. - OMA demuxer
  2722. - MLP/TrueHD decoder
  2723. - Electronic Arts CMV decoder
  2724. - Motion Pixels Video decoder
  2725. - Motion Pixels MVI demuxer
  2726. - removed animated GIF decoder/demuxer
  2727. - D-Cinema audio muxer
  2728. - Electronic Arts TGV decoder
  2729. - Apple Lossless Audio Codec (ALAC) encoder
  2730. - AAC decoder
  2731. - floating point PCM encoder/decoder
  2732. - MXF muxer
  2733. - DV100 AKA DVCPRO HD decoder and demuxer
  2734. - E-AC-3 support added to AC-3 decoder
  2735. - Nellymoser ASAO encoder
  2736. - ASS and SSA demuxer and muxer
  2737. - liba52 wrapper removed
  2738. - SVQ3 watermark decoding support
  2739. - Speex decoding via libspeex
  2740. - Electronic Arts TGQ decoder
  2741. - RV40 decoder
  2742. - QCELP / PureVoice decoder
  2743. - RV30 decoder
  2744. - hybrid WavPack support
  2745. - R3D REDCODE demuxer
  2746. - ALSA support for playback and record
  2747. - Electronic Arts TQI decoder
  2748. - OpenJPEG based JPEG 2000 decoder
  2749. - NC (NC4600) camera file demuxer
  2750. - Gopher client support
  2751. - MXF D-10 muxer
  2752. - generic metadata API
  2753. - flash ScreenVideo2 encoder
  2754. version 0.4.9-pre1:
  2755. - DV encoder, DV muxer
  2756. - Microsoft RLE video decoder
  2757. - Microsoft Video-1 decoder
  2758. - Apple Animation (RLE) decoder
  2759. - Apple Graphics (SMC) decoder
  2760. - Apple Video (RPZA) decoder
  2761. - Cinepak decoder
  2762. - Sega FILM (CPK) file demuxer
  2763. - Westwood multimedia support (VQA & AUD files)
  2764. - Id Quake II CIN playback support
  2765. - 8BPS video decoder
  2766. - FLIC playback support
  2767. - RealVideo 2.0 (RV20) decoder
  2768. - Duck TrueMotion v1 (DUCK) video decoder
  2769. - Sierra VMD demuxer and video decoder
  2770. - MSZH and ZLIB decoder support
  2771. - SVQ1 video encoder
  2772. - AMR-WB support
  2773. - PPC optimizations
  2774. - rate distortion optimal cbp support
  2775. - rate distorted optimal ac prediction for MPEG-4
  2776. - rate distorted optimal lambda->qp support
  2777. - AAC encoding with libfaac
  2778. - Sunplus JPEG codec (SP5X) support
  2779. - use Lagrange multiplier instead of QP for ratecontrol
  2780. - Theora/VP3 decoding support
  2781. - XA and ADX ADPCM codecs
  2782. - export MPEG-2 active display area / pan scan
  2783. - Add support for configuring with IBM XLC
  2784. - floating point AAN DCT
  2785. - initial support for zygo video (not complete)
  2786. - RGB ffv1 support
  2787. - new audio/video parser API
  2788. - av_log() system
  2789. - av_read_frame() and av_seek_frame() support
  2790. - missing last frame fixes
  2791. - seek by mouse in ffplay
  2792. - noise reduction of DCT coefficients
  2793. - H.263 OBMC & 4MV support
  2794. - H.263 alternative inter vlc support
  2795. - H.263 loop filter
  2796. - H.263 slice structured mode
  2797. - interlaced DCT support for MPEG-2 encoding
  2798. - stuffing to stay above min_bitrate
  2799. - MB type & QP visualization
  2800. - frame stepping for ffplay
  2801. - interlaced motion estimation
  2802. - alternate scantable support
  2803. - SVCD scan offset support
  2804. - closed GOP support
  2805. - SSE2 FDCT
  2806. - quantizer noise shaping
  2807. - G.726 ADPCM audio codec
  2808. - MS ADPCM encoding
  2809. - multithreaded/SMP motion estimation
  2810. - multithreaded/SMP encoding for MPEG-1/MPEG-2/MPEG-4/H.263
  2811. - multithreaded/SMP decoding for MPEG-2
  2812. - FLAC decoder
  2813. - Metrowerks CodeWarrior suppport
  2814. - H.263+ custom pcf support
  2815. - nicer output for 'ffmpeg -formats'
  2816. - Matroska demuxer
  2817. - SGI image format, encoding and decoding
  2818. - H.264 loop filter support
  2819. - H.264 CABAC support
  2820. - nicer looking arrows for the motion vector visualization
  2821. - improved VCD support
  2822. - audio timestamp drift compensation
  2823. - MPEG-2 YUV 422/444 support
  2824. - polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample
  2825. - better image scaling
  2826. - H.261 support
  2827. - correctly interleave packets during encoding
  2828. - VIS optimized motion compensation
  2829. - intra_dc_precision>0 encoding support
  2830. - support reuse of motion vectors/MB types/field select values of the source video
  2831. - more accurate deblock filter
  2832. - padding support
  2833. - many optimizations and bugfixes
  2834. - FunCom ISS audio file demuxer and according ADPCM decoding
  2835. version 0.4.8:
  2836. - MPEG-2 video encoding (Michael)
  2837. - Id RoQ playback subsystem (Mike Melanson and Tim Ferguson)
  2838. - Wing Commander III Movie (.mve) file playback subsystem (Mike Melanson
  2839. and Mario Brito)
  2840. - Xan DPCM audio decoder (Mario Brito)
  2841. - Interplay MVE playback subsystem (Mike Melanson)
  2842. - Duck DK3 and DK4 ADPCM audio decoders (Mike Melanson)
  2843. version 0.4.7:
  2844. - RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from mplayerhq
  2845. (originally from public domain player for Amiga at http://www.honeypot.net/audio)
  2846. - current version now also compiles with older GCC (Fabrice)
  2847. - 4X multimedia playback system including 4xm file demuxer (Mike
  2848. Melanson), and 4X video and audio codecs (Michael)
  2849. - Creative YUV (CYUV) decoder (Mike Melanson)
  2850. - FFV1 codec (our very simple lossless intra only codec, compresses much better
  2851. than HuffYUV) (Michael)
  2852. - ASV1 (Asus), H.264, Intel indeo3 codecs have been added (various)
  2853. - tiny PNG encoder and decoder, tiny GIF decoder, PAM decoder (PPM with
  2854. alpha support), JPEG YUV colorspace support. (Fabrice Bellard)
  2855. - ffplay has been replaced with a newer version which uses SDL (optionally)
  2856. for multiplatform support (Fabrice)
  2857. - Sorenson Version 3 codec (SVQ3) support has been added (decoding only) - donated
  2858. by anonymous
  2859. - AMR format has been added (Johannes Carlsson)
  2860. - 3GP support has been added (Johannes Carlsson)
  2861. - VP3 codec has been added (Mike Melanson)
  2862. - more MPEG-1/2 fixes
  2863. - better multiplatform support, MS Visual Studio fixes (various)
  2864. - AltiVec optimizations (Magnus Damn and others)
  2865. - SH4 processor support has been added (BERO)
  2866. - new public interfaces (avcodec_get_pix_fmt) (Roman Shaposhnick)
  2867. - VOB streaming support (Brian Foley)
  2868. - better MP3 autodetection (Andriy Rysin)
  2869. - qpel encoding (Michael)
  2870. - 4mv+b frames encoding finally fixed (Michael)
  2871. - chroma ME (Michael)
  2872. - 5 comparison functions for ME (Michael)
  2873. - B-frame encoding speedup (Michael)
  2874. - WMV2 codec (unfinished - Michael)
  2875. - user specified diamond size for EPZS (Michael)
  2876. - Playstation STR playback subsystem, still experimental (Mike and Michael)
  2877. - ASV2 codec (Michael)
  2878. - CLJR decoder (Alex)
  2879. .. And lots more new enhancements and fixes.
  2880. version 0.4.6:
  2881. - completely new integer only MPEG audio layer 1/2/3 decoder rewritten
  2882. from scratch
  2883. - Recoded DCT and motion vector search with gcc (no longer depends on nasm)
  2884. - fix quantization bug in AC3 encoder
  2885. - added PCM codecs and format. Corrected WAV/AVI/ASF PCM issues
  2886. - added prototype ffplay program
  2887. - added GOB header parsing on H.263/H.263+ decoder (Juanjo)
  2888. - bug fix on MCBPC tables of H.263 (Juanjo)
  2889. - bug fix on DC coefficients of H.263 (Juanjo)
  2890. - added Advanced Prediction Mode on H.263/H.263+ decoder (Juanjo)
  2891. - now we can decode H.263 streams found in QuickTime files (Juanjo)
  2892. - now we can decode H.263 streams found in VIVO v1 files(Juanjo)
  2893. - preliminary RTP "friendly" mode for H.263/H.263+ coding. (Juanjo)
  2894. - added GOB header for H.263/H.263+ coding on RTP mode (Juanjo)
  2895. - now H.263 picture size is returned on the first decoded frame (Juanjo)
  2896. - added first regression tests
  2897. - added MPEG-2 TS demuxer
  2898. - new demux API for libav
  2899. - more accurate and faster IDCT (Michael)
  2900. - faster and entropy-controlled motion search (Michael)
  2901. - two pass video encoding (Michael)
  2902. - new video rate control (Michael)
  2903. - added MSMPEG4V1, MSMPEGV2 and WMV1 support (Michael)
  2904. - great performance improvement of video encoders and decoders (Michael)
  2905. - new and faster bit readers and vlc parsers (Michael)
  2906. - high quality encoding mode: tries all macroblock/VLC types (Michael)
  2907. - added DV video decoder
  2908. - preliminary RTP/RTSP support in ffserver and libavformat
  2909. - H.263+ AIC decoding/encoding support (Juanjo)
  2910. - VCD MPEG-PS mode (Juanjo)
  2911. - PSNR stuff (Juanjo)
  2912. - simple stats output (Juanjo)
  2913. - 16-bit and 15-bit RGB/BGR/GBR support (Bisqwit)
  2914. version 0.4.5:
  2915. - some header fixes (Zdenek Kabelac <kabi at informatics.muni.cz>)
  2916. - many MMX optimizations (Nick Kurshev <nickols_k at mail.ru>)
  2917. - added configure system (actually a small shell script)
  2918. - added MPEG audio layer 1/2/3 decoding using LGPL'ed mpglib by
  2919. Michael Hipp (temporary solution - waiting for integer only
  2920. decoder)
  2921. - fixed VIDIOCSYNC interrupt
  2922. - added Intel H.263 decoding support ('I263' AVI fourCC)
  2923. - added Real Video 1.0 decoding (needs further testing)
  2924. - simplified image formats again. Added PGM format (=grey
  2925. pgm). Renamed old PGM to PGMYUV.
  2926. - fixed msmpeg4 slice issues (tell me if you still find problems)
  2927. - fixed OpenDivX bugs with newer versions (added VOL header decoding)
  2928. - added support for MPlayer interface
  2929. - added macroblock skip optimization
  2930. - added MJPEG decoder
  2931. - added mmx/mmxext IDCT from libmpeg2
  2932. - added pgmyuvpipe, ppm, and ppm_pipe formats (original patch by Celer
  2933. <celer at shell.scrypt.net>)
  2934. - added pixel format conversion layer (e.g. for MJPEG or PPM)
  2935. - added deinterlacing option
  2936. - MPEG-1/2 fixes
  2937. - MPEG-4 vol header fixes (Jonathan Marsden <snmjbm at pacbell.net>)
  2938. - ARM optimizations (Lionel Ulmer <lionel.ulmer at free.fr>).
  2939. - Windows porting of file converter
  2940. - added MJPEG raw format (input/output)
  2941. - added JPEG image format support (input/output)
  2942. version 0.4.4:
  2943. - fixed some std header definitions (Bjorn Lindgren
  2944. <bjorn.e.lindgren at telia.com>).
  2945. - added MPEG demuxer (MPEG-1 and 2 compatible).
  2946. - added ASF demuxer
  2947. - added prototype RM demuxer
  2948. - added AC3 decoding (done with libac3 by Aaron Holtzman)
  2949. - added decoding codec parameter guessing (.e.g. for MPEG, because the
  2950. header does not include them)
  2951. - fixed header generation in MPEG-1, AVI and ASF muxer: wmplayer can now
  2952. play them (only tested video)
  2953. - fixed H.263 white bug
  2954. - fixed phase rounding in img resample filter
  2955. - add MMX code for polyphase img resample filter
  2956. - added CPU autodetection
  2957. - added generic title/author/copyright/comment string handling (ASF and RM
  2958. use them)
  2959. - added SWF demux to extract MP3 track (not usable yet because no MP3
  2960. decoder)
  2961. - added fractional frame rate support
  2962. - codecs are no longer searched by read_header() (should fix ffserver
  2963. segfault)
  2964. version 0.4.3:
  2965. - BGR24 patch (initial patch by Jeroen Vreeken <pe1rxq at amsat.org>)
  2966. - fixed raw yuv output
  2967. - added motion rounding support in MPEG-4
  2968. - fixed motion bug rounding in MSMPEG4
  2969. - added B-frame handling in video core
  2970. - added full MPEG-1 decoding support
  2971. - added partial (frame only) MPEG-2 support
  2972. - changed the FOURCC code for H.263 to "U263" to be able to see the
  2973. +AVI/H.263 file with the UB Video H.263+ decoder. MPlayer works with
  2974. this +codec ;) (JuanJo).
  2975. - Halfpel motion estimation after MB type selection (JuanJo)
  2976. - added pgm and .Y.U.V output format
  2977. - suppressed 'img:' protocol. Simply use: /tmp/test%d.[pgm|Y] as input or
  2978. output.
  2979. - added pgmpipe I/O format (original patch from Martin Aumueller
  2980. <lists at reserv.at>, but changed completely since we use a format
  2981. instead of a protocol)
  2982. version 0.4.2:
  2983. - added H.263/MPEG-4/MSMPEG4 decoding support. MPEG-4 decoding support
  2984. (for OpenDivX) is almost complete: 8x8 MVs and rounding are
  2985. missing. MSMPEG4 support is complete.
  2986. - added prototype MPEG-1 decoder. Only I- and P-frames handled yet (it
  2987. can decode ffmpeg MPEGs :-)).
  2988. - added libavcodec API documentation (see apiexample.c).
  2989. - fixed image polyphase bug (the bottom of some images could be
  2990. greenish)
  2991. - added support for non clipped motion vectors (decoding only)
  2992. and image sizes non-multiple of 16
  2993. - added support for AC prediction (decoding only)
  2994. - added file overwrite confirmation (can be disabled with -y)
  2995. - added custom size picture to H.263 using H.263+ (Juanjo)
  2996. version 0.4.1:
  2997. - added MSMPEG4 (aka DivX) compatible encoder. Changed default codec
  2998. of AVI and ASF to DIV3.
  2999. - added -me option to set motion estimation method
  3000. (default=log). suppressed redundant -hq option.
  3001. - added options -acodec and -vcodec to force a given codec (useful for
  3002. AVI for example)
  3003. - fixed -an option
  3004. - improved dct_quantize speed
  3005. - factorized some motion estimation code
  3006. version 0.4.0:
  3007. - removing grab code from ffserver and moved it to ffmpeg. Added
  3008. multistream support to ffmpeg.
  3009. - added timeshifting support for live feeds (option ?date=xxx in the
  3010. URL)
  3011. - added high quality image resize code with polyphase filter (need
  3012. mmx/see optimization). Enable multiple image size support in ffserver.
  3013. - added multi live feed support in ffserver
  3014. - suppressed master feature from ffserver (it should be done with an
  3015. external program which opens the .ffm url and writes it to another
  3016. ffserver)
  3017. - added preliminary support for video stream parsing (WAV and AVI half
  3018. done). Added proper support for audio/video file conversion in
  3019. ffmpeg.
  3020. - added preliminary support for video file sending from ffserver
  3021. - redesigning I/O subsystem: now using URL based input and output
  3022. (see avio.h)
  3023. - added WAV format support
  3024. - added "tty user interface" to ffmpeg to stop grabbing gracefully
  3025. - added MMX/SSE optimizations to SAD (Sums of Absolutes Differences)
  3026. (Juan J. Sierralta P. a.k.a. "Juanjo" <juanjo at atmlab.utfsm.cl>)
  3027. - added MMX DCT from mpeg2_movie 1.5 (Juanjo)
  3028. - added new motion estimation algorithms, log and phods (Juanjo)
  3029. - changed directories: libav for format handling, libavcodec for
  3030. codecs
  3031. version 0.3.4:
  3032. - added stereo in MPEG audio encoder
  3033. version 0.3.3:
  3034. - added 'high quality' mode which use motion vectors. It can be used in
  3035. real time at low resolution.
  3036. - fixed rounding problems which caused quality problems at high
  3037. bitrates and large GOP size
  3038. version 0.3.2: small fixes
  3039. - ASF fixes
  3040. - put_seek bug fix
  3041. version 0.3.1: added avi/divx support
  3042. - added AVI support
  3043. - added MPEG-4 codec compatible with OpenDivX. It is based on the H.263 codec
  3044. - added sound for flash format (not tested)
  3045. version 0.3: initial public release