[FFmpeg-cvslog] New commits on branch release/4.1

Git System git at videolan.org
Fri Jul 3 18:05:35 EEST 2020


URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=fd43c6dc0e8e77c894f5373a2ad5924a7632b2cb
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Fri Jul 3 17:03:14 2020 +0200

    Update for 4.1.6
    
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=850bbc0f7802cfd5822b4d351d781f876e4640f8
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Wed Jul 1 21:27:23 2020 +0200

    avcodec/dstdec: Replace AC overread check by sample rate check
    
    Real files do skip coding 0 bits at the end, thus this kind of check
    does not work reliable.
    
    Fixes: Ticket 8770
    Fixes: dst-256fs44-6ch-refdstencoder.dff
    
    The samplerate is specified in ISO/IEC 14496-3:2005(E) as one of 3 fixed
    values, this also can be used to limit the duration and avoid the timeout
    
    This reverts commit f6df99dba1ae64b05d08fba8160d13eb9795042f.
    
    (cherry picked from commit 1679f23beb3cfc3639352b3cbe7c08c00189c6b0)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7b3b3119d548e6057df87880c7cd6e1e38971245
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun Jun 21 12:24:04 2020 +0200

    avformat/utils: reorder duration computation to avoid overflow
    
    Fixes: signed integer overflow: 8 * 9223372036854774783 cannot be represented in type 'long'
    Fixes: 23381/clusterfuzz-testcase-minimized-ffmpeg_DEMUXER_fuzzer-4818340509122560
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 10cc82c35baabbb07ffec3faccb04d8928c39e4c)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c095e870d86775f983eb796489df30e5a6797b52
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Thu Jun 25 19:22:01 2020 +0200

    avcodec/pngdec: Check for fctl after idat
    
    Fixes: out of array access
    Fixes: 23554/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_APNG_fuzzer-4796622520451072.fuzz
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 65b1ba680fb67902a9c876a49d0146eaae5a1c3d)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7dc5dfad31d1bc6cec5f4eb1f9033ce3b715425d
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Mon Jun 29 19:49:41 2020 +0200

    avformat/hls: Pass a copy of the URL for probing
    
    The segments / url can be modified by the io read when reloading
    
    This may be an alternative or additional fix for Ticket8673
    as a further alternative the reload stuff could be disabled during
    probing
    
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit b5e39880fb7269b1b3577cee288e06aa3dc1dfa2)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c229e5e80f1b67b2120f317e815fec29ca1390a5
Author: Steven Liu <lq at chinaffmpeg.org>
Date:   Fri May 29 11:39:05 2020 +0800

    avformat/hls: check segment duration value of EXTINF
    
    fix ticket: 8673
    set the default EXTINF duration to 1ms if duration is smaller than 1ms
    
    Signed-off-by: Steven Liu <lq at chinaffmpeg.org>
    (cherry picked from commit 9dfb19baeb86a8bb02c53a441682c6e9a6e104cc)

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=cb438cf8899444e9f8d033199488ae8f7ceb1e7e
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun Jun 28 00:21:09 2020 +0200

    avutil/common: Fix integer overflow in av_ceil_log2_c()
    
    Fixes: left shift of 1913647649 by 1 places cannot be represented in type 'int'
    Fixes: 23572/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_WMALOSSLESS_fuzzer-5082619795734528
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit e409262837712016097c187e97bf99aadf6a4cdf)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=55e76ddb7a7e15bc9e4e1c040a1c1b1c7e2b4a6b
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun Jun 28 00:10:19 2020 +0200

    avcodec/wmalosslessdec: fix overflow with pred in revert_cdlms
    
    Fixes: signed integer overflow: 2048 + 2147483646 cannot be represented in type 'int'
    Fixes: 23538/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_WMALOSSLESS_fuzzer-5227567073460224
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 21598d711d894081d0566282473044ba4f378f33)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=2f0a00fb3dba9ad4efa2f96c0820ca7cbd91ef7f
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Tue Jun 23 01:01:53 2020 +0200

    avformat/mvdec: Fix integer overflow with billions of channels
    
    Fixes: signed integer overflow: 1394614304 * 2 cannot be represented in type 'int'
    Fixes: 23491/clusterfuzz-testcase-minimized-ffmpeg_DEMUXER_fuzzer-5697377020411904
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit b6fbbe08c325415cc784df296058beb6604f0b9c)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f62bbddde2a63bac01629f88ae0394e35c7bd88c
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Tue Jun 23 01:43:14 2020 +0200

    avformat/microdvddec: skip malformed lines without frame number.
    
    Fixes: signed integer overflow: 1 - -9223372036854775808 cannot be represented in type 'long'
    Fixes: 23490/clusterfuzz-testcase-minimized-ffmpeg_DEMUXER_fuzzer-5133490093031424
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Reviewed-by: Nicolas George <george at nsup.org>
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit a8fb7612a97530bdd0b2549dacf91dcf71a3187a)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1f7af6a9464159f957296b16c3286160a4a17e0f
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun Jun 14 19:45:05 2020 +0200

    avformat/mxfdec: free duplicated utf16 strings
    
    Fixes: memleak
    Fixes: 23415/clusterfuzz-testcase-minimized-ffmpeg_DEMUXER_fuzzer-5124814510751744
    
    Suggested-by: Marton Balint <cus at passwd.hu>
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 0aa2768cb275bda9e9e1331ed95adc7cd686eafe)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0b124172d831afc76fb5c3b30a1c74319f1a8abf
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun Jun 14 19:51:23 2020 +0200

    avformat/4xm: Check that a video stream was created before returning packets for it
    
    Fixes: assertion failure
    Fixes: 23434/clusterfuzz-testcase-minimized-ffmpeg_DEMUXER_fuzzer-5227750851084288.fuzz
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit c517c3f4741b6897ea952d1fba199c93c5217cfe)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1f64119c8a52f7230615fd487bf66a596c6516ab
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sat Jun 13 21:47:03 2020 +0200

    avcodec/ffwavesynth: Avoid undefined operation on ts overflow
    
    Alternatively these conditions could be treated as errors
    Fixes: 23147/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_FFWAVESYNTH_fuzzer-5639254549200896
    Fixes: signed integer overflow: 9223372036854775807 + 1 cannot be represented in type 'int64_t' (aka 'long')
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 584d334afd59714ed04637a9227a4f1368c26166)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0e5ac35745939510f8511a40651540a1c4a50784
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Thu Jun 11 22:22:57 2020 +0200

    avcodec/mpeg4videodec: Fix 2 integer overflows in get_amv()
    
    Fixes: signed integer overflow: -144876608 * 16 cannot be represented in type 'int'
    Fixes: 22782/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MPEG4_fuzzer-6039584977977344
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit e361785ee05cc75d3caacf2f254160b0336f5358)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0c0c9d15ce6dd30f4288fd1c00b5a75c1881d3af
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun Jun 7 19:24:10 2020 +0200

    avcodec/lossless_audiodsp: Fix undefined overflows in scalarproduct_and_madd_int16_c()
    
    Fixes: signed integer overflow: 2142077091 + 6881070 cannot be represented in type 'int'
    Fixes: 22737/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_WMALOSSLESS_fuzzer-5958388889681920
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit c0dfe134beefde4070d43910518b1f4a58f01794)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ba6fc75d5a83cc941ab8230e53102a4b37120679
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Thu Feb 20 19:56:39 2020 +0100

    avcodec/sonic: Fix several integer overflows
    
    Fixes: signed integer overflow: 2129689466 + 2129689466 cannot be represented in type 'int'
    Fixes: 20715/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_SONIC_fuzzer-5155263109922816
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 75d520e33704447f1b29ac47fd9e40994a6bc659)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f1e0ca37092b825401b5bbc8ec2af16e6aed862e
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sat Jun 13 11:56:01 2020 +0200

    avcodec/mpeg4videodec: avoid invalid values and reinitialize in format changes for studio profile
    
    Fixes: out of array access
    Fixes: 23327/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MPEG4_fuzzer-5134822992510976
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit e53235f06c229a23d3241b47e32647019161fb7c)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b02ff154022fe275b8cf3fecd55485d502fdec11
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sat Jun 13 11:21:52 2020 +0200

    avcodec/pixlet: Fix log(0) check
    
    Fixes: passing zero to clz(), which is not a valid argument
    Fixes: 23337/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_PIXLET_fuzzer-5179131989065728
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit bd0f81526d3f4c23ecd0a399829103be2445c011)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=99d2024b18771ca9b6db4e917386b7775101fd1e
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sat Jun 13 10:48:14 2020 +0200

    avcodec/iff: Fix off by x error
    
    Fixes: out of array access
    Fixes: 23245/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_IFF_ILBM_fuzzer-5723121327013888.fuzz
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 51225dee0a6266780d26d43bd6802bbcf736327e)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c15b6bfd79aad440a19ca8e7ab3f06c37d882e6c
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Tue Jun 9 22:11:23 2020 +0200

    avcodec/wmalosslessdec: Check block_align maximum
    
    Fixes: Assertion failure
    Fixes: 22737/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_WMALOSSLESS_fuzzer-5958388889681920
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 314d10f7a60f1786c85da30a569be61e2b906fef)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=24fd6136df039d3b6f727d2e7dfe617526a8133b
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Tue Jun 9 22:14:59 2020 +0200

    avcodec/loco: Fix signed integer overflow in loco_get_rice()
    
    Fixes: signed integer overflow: 2147483647 + 1 cannot be represented in type 'int'
    Fixes: 22975/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_LOCO_fuzzer-5658160970072064
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit aa88cdfd90f5da0683cd6556c75a5ba5740a1c27)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d31345a880cd1d3f6479b7850f9d84c20befc2b6
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Mon Jun 8 09:28:55 2020 +0200

    avformat/thp: Check fps
    
    Fixes: division by zero
    Fixes: 23162/clusterfuzz-testcase-minimized-ffmpeg_DEMUXER_fuzzer-4856420817436672
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 0e15b01b4e463d12128db2c15de7741637548347)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=38af60a4542ec29dde5843d852cb2e71381f3943
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Mon Jun 8 09:47:41 2020 +0200

    avformat/mpl2dec: Fix integer overflow with duration
    
    Fixes: signed integer overflow: 9223372036854775807 - -1 cannot be represented in type 'long'
    Fixes: 23167/clusterfuzz-testcase-minimized-ffmpeg_DEMUXER_fuzzer-6425051741290496
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 9a42a67c5ca198a3879b7f3663cc44ccbcaf0bd3)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c5535532f80226bab203e156af0f43e44dba114d
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sat Jun 6 19:42:07 2020 +0200

    avcodec/mpeg12dec: remove outdated comments
    
    Found-by: Kieran
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 48de8f5816aa54dc584aeb2dbbf63a0e880279e2)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=86ae1ff10f40397fbc2f67e8f0501d03b580b54e
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sat Jun 6 17:45:39 2020 +0200

    avcodec/snowdec: Avoid integer overflow with huge qlog
    
    Fixes: integer overflow
    Fixes: 22285/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_SNOW_fuzzer-5682428762128384
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 38fbf33c7255b503453052c32ab5ae4fb151b29e)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f377de64131391e0ded0d52b51ecd60eaddd81c7
Author: Dale Curtis <dalecurtis at chromium.org>
Date:   Thu May 14 14:38:07 2020 -0700

    avformat/mov: Check if DTS is AV_NOPTS_VALUE in mov_find_next_sample().
    
    Signed-off-by: Dale Curtis <dalecurtis at chromium.org>
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit bf446711bc8b7f316771870b8d4dc4dd65f5d94b)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=4fdf23df7d2607be23445a044f68798e6448d2fa
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Thu May 28 00:19:56 2020 +0200

    avcodec/mpeg12dec: Fix got_output
    
    This makes got_output consistent with the code in slice_end() which sets the output
    
    in slice_end()
     if (s->pict_type == AV_PICTURE_TYPE_B || s->low_delay) {
         int ret = av_frame_ref(pict, s->current_picture_ptr->f);
         ...
     } else {
    
    Fixes: assertion failure
    Fixes: 22178/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MPEG1VIDEO_fuzzer-5664234440753152
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 4f33a9803a3068ce2d52289fc1db60375dc8b7a5)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a621600f667524c8720a38012392512fbe274654
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun Jun 7 21:35:43 2020 +0200

    avformat/4xm: Cleanup on GET_LIST_HEADER() failure
    
    Fixes: memleak
    Fixes: 23142/clusterfuzz-testcase-minimized-ffmpeg_DEMUXER_fuzzer-5932860820422656
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Reviewed-by: Andreas Rheinhardt <andreas.rheinhardt at gmail.com>
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit a5313ce6542a4ee4112acd260e59bff698f3dddd)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c3eaff820ab2cde6bfaed7e1e05a30668fb0e128
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Thu May 28 18:08:57 2020 +0200

    avcodec/lzf: Consider the needed size in reallocation
    
    Fixes: NULL pointer dereference
    Fixes: 22381/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_NOTCHLC_fuzzer-5659879921680384.fuzz
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 292b9b93a50aa0622e33013de9f2ddc130bef671)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e01d07c781df95bc4096832415debfb1c4c7ad88
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun May 31 14:30:43 2020 +0200

    avformat/mlvdec: fail reading a packet with 0 streams
    
    Fixes: NULL pointer dereference
    Fixes: 22604/clusterfuzz-testcase-minimized-ffmpeg_DEMUXER_fuzzer-5667739074297856.fuzz
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 5bd5c3108786bf69f108c55c375f1956f67ca7a4)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=be9e89efcde74635e120505c7f1bd0071e292011
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun May 31 14:24:04 2020 +0200

    avformat/thp: Check compcount
    
    Fixes: out of array access
    Fixes: 22520/clusterfuzz-testcase-minimized-ffmpeg_DEMUXER_fuzzer-5100297658826752
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 1ba8484559661dfdbca36dbc17b203f33f62e26c)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=dd6147888c5e17d54c018706a04fad7c4206f7bf
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun May 31 14:59:02 2020 +0200

    avcodec/adpcm: XA: Check shift similar to filter
    
    Fixes: negative shift
    Fixes: 22499/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_ADPCM_XA_fuzzer-5765452130418688
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 6d96bae9c480e020e9f51fabd5642d7ae6020943)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8935ae4395d592ea697fd0f2d1a238fd1d3a8f54
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Fri Jun 5 22:05:27 2020 +0200

    avcodec/huffyuvdec: Test vertical coordinate more often
    
    Fixes: out of array access
    Fixes: 22892/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_HYMT_fuzzer-5135996772679680.fuzz
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Reviewed-by: Paul B Mahol <onemda at gmail.com>
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit a1223ddc5692772198a02600ecff2545f32b37be)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=011c9cfab171e48b88ce85e922abadaec4e59ce4
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sat May 30 00:43:46 2020 +0200

    avcodec/hq_hqa: Check info size
    
    Fixes: assertion failure
    Fixes: 21079/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_HQ_HQA_fuzzer-5737046523248640
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit cf28521fee22dbe2f7eeb8ab0306c0fd0802c48a)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9ff5fd653767d553c8b8cc3bf672dbccaa50cfad
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sat May 23 22:02:56 2020 +0200

    avcodec/wmalosslessdec: Fix integer overflow in mclms_predict()
    
    Fixes: signed integer overflow: 2147483636 + 2048 cannot be represented in type 'int'
    Fixes: 22016/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_WMALOSSLESS_fuzzer-5109395618004992
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit c42ed06695848617350a94543823e850f190b3ab)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1ba97da44b40b5d3b779bc8da396cb82495ed07e
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun May 24 00:24:40 2020 +0200

    avcodec/vp9dsp_template: Fix integer overflow(s) in iadst16_1d()
    
    Fixes: signed integer overflow: 1080285923 - -1130879337 cannot be represented in type 'int'
    Fixes: 22002/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_VP9_fuzzer-6260237310099456
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 071e2937236945c168ab99d3e3b01539194466dd)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=6be68e6994b043e9043673a615f30166e3a5d704
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Thu May 28 14:33:58 2020 +0200

    avcodec/h264dec: Disable forced small_padding on flag2 fast
    
    Fixes: 20978/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_H264_fuzzer-5746381832847360
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=083e0314b5cfd917ccea6871c6584660d4543c59
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun Apr 19 17:05:52 2020 +0200

    avformat/oggparsevorbis: Error out on double init of vp
    
    Fixes: memleak
    Fixes: 19949/clusterfuzz-testcase-minimized-ffmpeg_DEMUXER_fuzzer-5743636058210304
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 2a3bbc0086aa608cc0465dd14901178d41cfe113)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d1eb5516bb5bed1ecd2cc4483a743e0b8727fc45
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sat May 16 00:31:23 2020 +0200

    avcodec/pnmdec: Use unsigned for maxval rescaling
    
    Fixes: signed integer overflow: 65535 * 55335 cannot be represented in type 'int'
    Fixes: 21955/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_PGMYUV_fuzzer-5669206981083136
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 49459aca47d4803b2188fbf12b758bd2b01e91d7)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=dad19158aa220c0a0c584367f91c5f26e192bae8
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Wed May 13 00:11:37 2020 +0200

    avcodec/ivi: Clear got_p_frame before decoding a new frame using it
    
    Fixes: assertion failure
    Fixes: 21666/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_INDEO4_fuzzer-5706468994318336
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 1d633e6a0a61118c9b2d1785d96bdebaa8c38592)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e7262c1f19fc300f34e09824c9097e15d1137ed7
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Mon May 4 00:04:49 2020 +0200

    avcodec/dsddec: Check channels
    
    Fixes: division by zero
    Fixes: 21677/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_DSD_MSBF_fuzzer-5712547983654912
    Fixes: 21751/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_DSD_LSBF_fuzzer-5197097180856320
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 2570a8777e7095358b10f679d35641e114a2ab33)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=05e2de829122a5ff47b6aaf51ed98a08f9d2c386
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sat May 2 21:25:17 2020 +0200

    avcodec/xvididct: Fix integer overflow in idct_row()
    
    Fixes: signed integer overflow: -1238335488 + -1003634688 cannot be represented in type 'int'
    Fixes: 21649/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MJPEG_fuzzer-5112005765890048
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 620236e4d2ac46821911b99fa4551868675d4ed9)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=296d4bf22e296345794e406f7d84b6e0d6d8b2a8
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun Apr 26 21:19:13 2020 +0200

    avcodec/wmalosslessdec: Fix integer overflows in revert_inter_ch_decorr()
    
    Fixes: signed integer overflow: -717241856 + -1434459904 cannot be represented in type 'int'
    Fixes: 21405/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_WMALOSSLESS_fuzzer-5677143666458624
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit e9a4c4fe9918220be492a4a9d74c2293fd706be3)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=02656f557081a1f117b6ffef5104226f6af5f31f
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Thu Mar 19 22:05:42 2020 +0100

    avcodec/cbs_jpeg: Fix infinite loop in cbs_jpeg_split_fragment()
    
    Fixes: Timeout
    Fixes: 21104/clusterfuzz-testcase-minimized-ffmpeg_BSF_TRACE_HEADERS_fuzzer-5129580475318272
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit a3dc67c9840f6ba6cdf6233248897146e9171cc8)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=60b78cd99d920b9b71e20569d44416e4a170d66b
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun Feb 16 18:51:52 2020 +0100

    avformat/mpegenc: Fix integer overflow with AV_NOPTS_VALUE
    
    Fixes: signed integer overflow: -9223372036854775808 - 45000 cannot be represented in type 'long'
    Fixes: ticket8187
    
    Found-by: Suhwan
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 9874815b1aadadd7fd19aa6aabb7d9193f2f43d5)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=6ffdc413d631a555b3b2db5d0df453657276510c
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun Feb 16 18:32:31 2020 +0100

    avformat/swfenc: Fix integer overflow in frame rate handling
    
    Fixes: signed integer overflow: 30000299 * 256 cannot be represented in type 'int'
    Fixes: ticket8184
    
    Found-by: Suhwan
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 31f956acadd994b8c4e22b714aaffee0f527c827)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=862801c68ce2d6f18fda31a5b851f18997e6d54e
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Tue Apr 7 12:04:25 2020 +0200

    avformat/aadec: Check toc_size to contain the minimum to demuxer uses
    
    Fixes: out of array access
    Fixes: stack-buffer-overflow-READ-0x0831fff1
    
    Found-by: GalyCannon <galycannon at gmail.com>
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit daa2482871dffa9af12fa6d874a3d2dedd73f42e)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=6f582f69dff5f497ad8c51d5b3abc78e19789844
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Mon Apr 20 23:27:04 2020 +0200

    avcodec/cbs_h265_syntax_template: Limit num_long_term_pics more strictly
    
    The limit is based on hevcdec.c
    Fixes: 20854/clusterfuzz-testcase-minimized-ffmpeg_BSF_HEVC_METADATA_fuzzer-5160442882424832
    Fixes: out of array access
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 435fa373d1f5045b17de74934e44863e2fb3071f)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b2116b438e7ff9fca8272abb9f6ac2dfdb8f2cd4
Author: Dale Curtis <dalecurtis at chromium.org>
Date:   Thu May 14 15:31:55 2020 -0700

    avformat/mov: Don't allow negative sample sizes.
    
    Signed-off-by: Dale Curtis <dalecurtis at chromium.org>
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 2d8d554f15a7a27cfeca81467cc9341a86f784e2)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=13adaa31a9afb419f3d13cbf83beec5832212001
Author: Vitaly Buka <vitalybuka-at-google.com at ffmpeg.org>
Date:   Tue Apr 21 21:34:19 2020 -0700

    mpeg4videoenc: Don't crash with -fsanitize=bounds
    
    Also the patch makes this code consistent with mpeg4videodec.c
    
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit f163d30de2090a7275f1fb8ad69258576f12c1a2)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=71fefa15c061cebceddaa2e2c0b2df999770c1a2
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Thu May 7 12:38:26 2020 +0200

    avformat/mpegts: Shuffle avio_seek
    
    This avoids accessing an old, no longer valid buffer.
    Fixes: out of array access
    Fixes: crash_audio-2020
    
    Found-by: le wu <shoulewoba at gmail.com>
    Reviewed-by: Marton Balint <cus at passwd.hu>
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit cd74af14162c803f18e90bb12b52135e893d990c)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ddaee77e3c4d07e2f1a242ddc6ea17760b4be9fa
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun Apr 19 17:05:53 2020 +0200

    avcodec/binkaudio: Fix 2Ghz sample_rate
    
    Fixes: signed integer overflow: 2147483647 + 1 cannot be represented in type 'int'
    Fixes: 19950/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_BINKAUDIO_DCT_fuzzer-5765514337189888
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Suggested-by: Paul
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit f603d10b1e6bb2fbf4dcccc43d3ea2fb911b36ba)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a19dd37e2d3e26c0749fb12d24866a9c1ee6bbd2
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Wed Feb 12 21:30:08 2020 +0100

    avcodec/adpcm: Fix integer overflow in ADPCM THP
    
    The reference (thp.txt) uses floats so wrap around would seem incorrect.
    
    Fixes: signed integer overflow: 1073741824 + 1073741824 cannot be represented in type 'int'
    Fixes: 20658/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_ADPCM_THP_fuzzer-5646302555930624
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit b12b05374f7025167e2c43449ceb8ba3f0a6083f)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1e31295ea2c4d8ecef5cbb1c98bff3d187223311
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Mon May 11 22:17:43 2020 +0200

    avcodec/ralf: Check num_blocks before use
    
    Fixes: out of array access
    Fixes: 20659/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_RALF_fuzzer-5739471895265280
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit f0c0471075fe52ed31c46e038df4280aef5b67a1)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=36ea0ddc75ee83e6dd7f9dcdb82b8fcab08dd19e
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Mon May 11 21:18:58 2020 +0200

    avcodec/iff: Test video_size being non zero
    
    Fixes: Out of array access
    Fixes: 20659/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_IFF_ILBM_fuzzer-5658548592967680
    Fixes: 20659/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_IFF_ILBM_fuzzer-5723561177382912
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit a035fd88ae7341a05c01f3b393921933e4ea9665)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=75fb0d8276ceda5d00410c40e7cfc53c8bf38a44
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun May 10 21:16:59 2020 +0200

    avcodec/utvideodec: Fix integer overflow in decode_plane()
    
    Fixes: signed integer overflow: 2147483594 + 142 cannot be represented in type 'int'
    Fixes: 20492/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_UTVIDEO_fuzzer-5658568101724160
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 876cfa67f37e944b0f42cb67b2de4e2e06f52e82)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d01f5a4dc68e5d5267fd501e692ccabeac1ff4a0
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun May 10 21:12:22 2020 +0200

    avcodec/ttadsp: Fix several integer overflows in tta_filter_process_c()
    
    Fixes: signed integer overflow: 1931744255 + 252497024 cannot be represented in type 'int'
    Fixes: 20492/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_TTA_fuzzer-5763348114440192
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 8627885172cc54db95f86529d134308d4d095054)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c04b6048f5ef2b114043149311986da759b90dd7
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun May 10 20:15:11 2020 +0200

    avcodec/ralf: Fix integer overflow in decode_block()
    
    Fixes: signed integer overflow: 289082077 - -2003141111 cannot be represented in type 'int'
    Fixes: 20492/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_RALF_fuzzer-5196077752123392
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 0c4330847c104fcf3ef929c1acee33b5b34c20db)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=428c542b45bbfa03cdb7f6cbf5a6144fe6d11cbd
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun May 10 19:09:47 2020 +0200

    avcodec/nuv: widen buf_size type
    
    Fixes: signed integer overflow: 65312 * 65312 cannot be represented in type 'int'
    Fixes: 20492/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_NUV_fuzzer-5740176118906880
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 1ac106bf5625de6aec31a34319298032e988f349)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=240b5f73f13b8f57e018d26965d573ed13bf09a5
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun May 10 12:04:05 2020 +0200

    avcodec/iff: Fix several integer overflows
    
    Fixes: negation of -2147483648 cannot be represented in type 'int32_t' (aka 'int'); cast to an unsigned type to negate this value to itself
    Fixes: signed integer overflow: -2147483648 - 1 cannot be represented in type 'int32_t' (aka 'int')
    Fixes: 20492/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_IFF_ILBM_fuzzer-5764066459254784
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 7a92147f87129851c1cc2c15f4ba714b8cf23f71)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=dd835730435a625e0f2414d154906cb0b6fece2b
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun May 10 11:34:53 2020 +0200

    avcodec/g729postfilter: Clip gain before scaling with AGC_FAC1
    
    The fixed point integer reference specifies the multiplication used
    to have 16bit input and clips so we need to clip the input
    The floating point implementation does not seem to do that.
    
    Fixes: signed integer overflow: 6317568 * 410 cannot be represented in type 'int'
    Fixes: 20492/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_G729_fuzzer-5700189272932352
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 82d4c7b95ed98d38aa834ef5a8fb1d2ef3901698)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=5325e60e47b207caa58bdade9f1ded2cdc061923
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun May 10 11:08:28 2020 +0200

    avcodec/alac: Fix integer overflow with 24/20bps samples
    
    Fixes: signed integer overflow: 1020048 * 4096 cannot be represented in type 'int'
    Fixes: 20492/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_ALAC_fuzzer-5753877751660544
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 22e51e95ac97864b3d7b21124eaf8fcce147f61e)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f65d68abd966f4c59f31cdcf042cef2c98a619a9
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Thu Feb 13 20:56:56 2020 +0100

    avcodec/dstdec: Check sample rate
    
    Fixes: out of array access
    Fixes: 20659/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_DST_fuzzer-5735812071424000
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Reviewed-by: Paul B Mahol <onemda at gmail.com>
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 5727b1f13f36c4db30d5d0de51640f740edf01e8)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=5cdbb2a977964f879cd059c903cee611b8fbcc6f
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Wed Apr 15 20:27:27 2020 +0200

    avformat/thp: Require a video stream
    
    The demuxer code assumes the existence of a video stream
    
    Fixes: assertion failure
    Fixes: 21512/clusterfuzz-testcase-minimized-ffmpeg_DEMUXER_fuzzer-5699660783288320
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 97c78caf3e8f7ec4df3d3123b5e8d0e7541319e6)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e81e27ffd02bfb2d5f33aee08326733e9f0fddef
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Tue Apr 14 00:03:30 2020 +0200

    avformat/mpeg: Decrease score by 1 for files with very little valid data
    
    Fixes: 8233/PPY6574574605_cut.mp3
    
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 20f7b4dfc9640c910655bd153c6996e9edd42ff0)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d303f28c57f98992e8f1c056057ab49f933c4c86
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Tue Apr 7 19:29:44 2020 +0200

    avcodec/pngdec: Check length in fdAT
    
    Fixes: 21089/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_APNG_fuzzer-5135981419429888
    Fixes: out of array read
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 79e5c2ee2bbdf462cabd2113c723dfb613d735c2)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9e8e8a630e96389b118e7241adb597cbf013e3bb
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun Apr 5 22:58:29 2020 +0200

    avcodec/g2meet: Check tile_width in epic_jb_decode_tile()
    
    Fixes: out of array access
    Fixes: 21469/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_G2M_fuzzer-5199357982015488
    
    Alternatively the arrays can be made bigger or the index can be clipped.
    In case a real file with such huge tiles exist we ask the user to upload it.
    
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 5501bb28ddfa6441dcbf8ea0a964a13aa33f66fe)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=35af336ccbe8893c9c49a64e1fd4a93a504eb8a0
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sat Mar 28 20:36:00 2020 +0100

    avcodec/hapdec: Check tex_size more strictly and before using it
    
    Fixes: OOM
    Fixes: 20774/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_HAP_fuzzer-5678608951803904
    Fixes: 20956/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_HAP_fuzzer-5713643025203200
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 81fe316ad9852a3dfe46b4dc919ed1709b217671)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ff3b195470a6b4056fbd6df3ef9173e7356814f0
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Tue Feb 11 22:58:08 2020 +0100

    avcodec/vp9dsp_template: Fix integer overflows in idct32_1d()
    
    Fixes: signed integer overflow: -193177 * 11585 cannot be represented in type 'int'
    Fixes: 20557/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_VP9_fuzzer-5704852816789504
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit e16e3e63f0a96b4e0ec32972c975bc0e339a49d1)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f5d9e8af89be4127f3100337485806a5845b3aac
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun Apr 26 19:29:39 2020 +0200

    avcodec/alacdsp: Fix invalid shift in append_extra_bits()
    
    Fixes: left shift of negative value -1
    Fixes: 21390/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_ALAC_fuzzer-6242539519868928
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 49ae034b42234486712a02f9b00253a0975cea02)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=4f0893fefa4ef405c13565506bbd1d8e7687b064
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun Feb 9 18:09:24 2020 +0100

    libavcodec/wmalosslessdec: prevent sum of positive numbers from becoming negative
    
    Fixes: left shift of negative value -8321365
    Fixes: 20506/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_WMALOSSLESS_fuzzer-4798062906310656
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 62e4003780cad60ac1371fef892da08c27069964)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=2d7a83457e95dc938d19ca73839e7503df26b592
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun Feb 9 00:23:14 2020 +0100

    avcodec/dstdec: Fix integer overflow in read_table()
    
    Fixes: signed integer overflow: -16 * 134217879 cannot be represented in type 'int'
    Fixes: 20492/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_DST_fuzzer-5639509530378240
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 2d465a401dd790e2ca126ecb9cbda43f898a492f)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=778965d30d3a6932ea48fd5bf9aca980d53f98da
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Tue Feb 18 23:14:16 2020 +0100

    avcodec/txd: Check for input size against the header size.
    
    Fixes: Timeout (21sec -> 80ms)
    Fixes: 20673/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_TXD_fuzzer-5177453863763968
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit aeb4e435847e0c970bcb1a835fe5eda17a4e1ce3)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=33440bd53b13ab651c681300f24a0ff701cd36fc
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Tue Feb 18 23:28:33 2020 +0100

    avcodec/svq1dec: Check that there is data left after the header
    
    Fixes: Timeout (21sec -> 255ms)
    Fixes: 20709/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_SVQ1_fuzzer-5085075089915904
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 55e344ee5aa6f6e04e50bbac457e0ca53433ab75)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=231a5e4528872e148aa2528aff51ccbba4603e8e
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun Apr 5 00:11:15 2020 +0200

    avcodec/cbs_h265_syntax_template: Check num_negative/positive_pics when inter_ref_pic_set_prediction_flag is set
    
    Fixes: out of array access
    Fixes: 20446/clusterfuzz-testcase-minimized-ffmpeg_BSF_HEVC_METADATA_fuzzer-5707770718584832
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 588114cea4ee434c9c61353ed91ffc817d2965f5)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7dc86d9a4d889479412ab20552e51610ba1ab768
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Thu Feb 6 00:33:40 2020 +0100

    avcodec/intrax8: Check for end of bitstream in ff_intrax8_decode_picture()
    
    Fixes: Timeout (105sec -> 1sec)
    Fixes: 20479/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_VC1_fuzzer-5769846937878528
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 0a9ccc2514da82812584b0e49a30625151d225e9)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1e7bbb3600b4d596a16bcf3c79be42b1fb2100ef
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun Apr 19 18:24:55 2020 +0200

    avcodec/hevc_mp4toannexb_bsf: Check nalu_size
    
    Fixes: Timeout (29sec -> 5ms)
    Fixes: 20237/clusterfuzz-testcase-minimized-ffmpeg_BSF_HEVC_MP4TOANNEXB_fuzzer-5165615044362240
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit ae2537f53e8ebfa36345241b5b70c0b1aef66dd2)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=fc559ce561e1208661b1ac4f138396071d030339
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Tue Apr 21 00:03:40 2020 +0200

    avcodec/iff: Check length before memcpy() in decode_deep_rle32()
    
    Fixes: out of array read
    Fixes: 20796/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_IFF_ILBM_fuzzer-5111364702175232.fuzz
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit b4a33387cb1cd3f4c5036e65e0fdd953c6b5012f)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=fac6bc92f7a94a167645a18272ae5b4faa9f1dbf
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Tue Apr 21 00:03:39 2020 +0200

    avcodec/iff: Fix invalid pointer intermediates in decode_deep_rle32()
    
    Reviewed-by: Peter Ross <pross at xvid.org>
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit bc41a29a5aa3c3dedba0a85b4aeb79a07eeeb1b4)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d55c05368f6877a753507861f346eea41ec6610a
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sat Apr 18 01:48:47 2020 +0200

    avcodec/pngdec: Pass ret from decode_iccp_chunk()
    
    Found while reviewing a patch fixing a similar issue
    
    Reviewed-by: Anton Khirnov <anton at khirnov.net>
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 4c7bcaa385e5e5fda0084de2fb823ac25c0deba0)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b7124ca3428d27f08addb1d7df6d1afc9a680ab8
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun Feb 2 21:01:12 2020 +0100

    avcodec/rv40dsp: Fix integer overflows in rv40_weight_func_*()
    
    Fixes: signed integer overflow: 40550400 * 128 cannot be represented in type 'int'
    Fixes: 20331/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_RV40_fuzzer-5676685725007872
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 13171ad2e304b2a7d959429527b98c68ec5ea320)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a5ff87551d6814593b83693786a2393ea68e58c7
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sat Feb 1 21:25:33 2020 +0100

    avcodec/ac3dec_fixed: Fix several invalid left shifts in scale_coefs()
    
    Fixes: left shift of negative value -14336
    Fixes: 20298/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_AC3_FIXED_fuzzer-5675484201615360
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 8e30502abe62f741cfef1e7b75048ae86a99a50f)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9494b1bc91fa03d090faea0485b0acba0eaa59b9
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Mon Feb 3 23:20:23 2020 +0100

    avcodec/flac_parser: Do not lose header count in find_headers_search()
    
    Fixes: Timeout
    Fixes: out of array access
    Fixes: 20274/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_FLAC_fuzzer-5649631988154368
    Fixes: 19275/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_FLAC_fuzzer-5757535722405888
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 55f9683cf6be97f4b398a7a35ee5bfd1208ac2a5)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=cde8c90a3d3e59c737e450597ae613eab60fc6a3
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun Feb 2 20:02:55 2020 +0100

    avcodec/audiodsp: Fix integer overflow in scalarproduct_int16_c()
    
    Fixes: signed integer overflow: 2145417478 + 76702564 cannot be represented in type 'int'
    Fixes: 20313/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_RA_144_fuzzer-5734487724130304
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit abb5762e985f4ce34e97c1b2fa6d1108ce8a881f)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=cfc2633c7531a03c1f8578dec3e23d89a11e71b4
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun Apr 12 22:06:10 2020 +0200

    avcodec/cbs_jpeg_syntax_template: Check array index in huffman_table()
    
    Fixes: index 224 out of bounds for type 'uint8_t [224]'
    Fixes: 21534/clusterfuzz-testcase-minimized-ffmpeg_BSF_TRACE_HEADERS_fuzzer-6291612167831552
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 18f5256c0dc6cfb41e649ab80b0577ba33852d76)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=20283b395e208afc154aacf96753fde3fc396c25
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun Apr 12 21:38:55 2020 +0200

    avcodec/cbs_jpeg_syntax_template: Check table index before use in dht()
    
    Fixes: out of array access
    Fixes: 21515/clusterfuzz-testcase-minimized-ffmpeg_BSF_TRACE_HEADERS_fuzzer-5766121576988672
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit d31862c2b1b1fd07dcdc503193056d6c9ad28ccb)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a99bcee917d63b39e44a175aaa9e647d43d9e779
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Wed Apr 1 20:58:52 2020 +0200

    avformat/oggdec: Check for EOF after page header
    
    Fixes: Infinite loop
    Fixes: Ticket8594
    
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit f1589be9fda00c417f9bcccb55dbbea998ee08ac)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e55bcedae9b7b4d7fbec581e3ee18fe2d8fd72ca
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Thu Apr 2 22:38:46 2020 +0200

    swscale/yuv2rgb: Fix vertical dither offset with slices
    
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit be3c29e3795cb2499e3b96335286d6a8423c0bcf)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=64f6581129aa8041288b57ab758fe402aa958874
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Thu Apr 9 15:37:55 2020 +0200

    avcodec/dpcm: clip exponent into supported range in XAN DPCM
    
    Fixes: shift exponent 32 is too large for 32-bit type 'int'
    Fixes: 21200/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_XAN_DPCM_fuzzer-5754704894361600
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Reviewed-by: Anton Khirnov <anton at khirnov.net>
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 20ade59d9633def4ebf84ec170f56367bfb6aa6c)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=01167ee6d5186e0f5cc798760efe82bb3ab7e3cd
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sat Feb 1 22:52:13 2020 +0100

    avcodec/flacdsp_template: Fix invalid shifts in decorrelate
    
    Fixes: left shift of negative value -2
    Fixes: 20303/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_FLAC_fuzzer-5096829297623040
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 3935c891e96c0819439da43d1b862652bbbdf065)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=092f21af2b57871fc0b255093b975359fd50d8ef
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Fri Jan 31 23:43:57 2020 +0100

    avcodec/xvididct: Fix integer overflow in MULT()
    
    Fixes: signed integer overflow: 23170 * 95058 cannot be represented in type 'int'
    Fixes: 20295/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MJPEG_fuzzer-5800212870463488
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 7ccb576191e91b393041b14917f1b681ec75ed3b)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e5f325a1ddd7702f8f302709a0578009c58ddad0
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Fri Jan 17 23:42:08 2020 +0100

    avcodec/ffwavesynth: Correct undefined overflow of PINK_UNIT
    
    Fixes: signed integer overflow: 9223372036854775775 + 128 cannot be represented in type 'long'
    Fixes: 20054/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_FFWAVESYNTH_fuzzer-5686385113825280
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 187161d62f35c8b613c4a6739b0a6dfa9a24da60)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f49374b47d82db83f0cbb8682ba354e095b174dd
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun Mar 22 16:38:24 2020 +0100

    avcodec/cbs_h264_syntax_template: fix off by 1 error with slice_group_change_cycle
    
    Fixes: assertion failure
    Fixes: 20390/clusterfuzz-testcase-minimized-ffmpeg_BSF_H264_REDUNDANT_PPS_fuzzer-5683400772157440
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 741565a1e69c45ce4848f01e45be5e66a68efa2f)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0a308576bf83db4c5c1728b634b951a7ce6f9b54
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun Feb 16 20:11:52 2020 +0100

    swscale/output: Fix integer overflow in yuv2rgb_write_full() with out of range input
    
    Fixes: signed integer overflow: 1169365504 + 981452800 cannot be represented in type 'int'
    Fixes: ticket8293
    
    Found-by: Suhwan
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit e057e83a4ff4c0eeeb78dffe58e21af951c056b6)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=4cdf6dc9088dc7bc5112d9ae2e91b29c17ad45cb
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun Feb 16 20:18:11 2020 +0100

    swscale/output: Fix integer overflow in alpha computation in yuv2gbrp16_full_X_c()
    
    Fixes: signed integer overflow: 524280 * 4432 cannot be represented in type 'int'
    Fixes: ticket8322
    
    Found-by: Suhwan
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 49ba1879add99d3f64d70d34fb0255c8a49d4b28)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a09b223cd2a102313fc0ac6edf3a32dd1912b7f4
Author: John Rummell <jrummell at chromium.org>
Date:   Mon Mar 30 21:30:33 2020 -0700

    libavformat/amr.c: Check return value from avio_read()
    
    If the buffer doesn't contain enough bytes when reading a stream,
    fail rather than continuing on with initialized data. Caught by
    Chromium fuzzeras (crbug.com/1065731).
    
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 5b967f56b6d85f62446836fc8ef64d0dcfcbda17)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7f8e9d9b7716b1193e40dd8029268ed994ed18a5
Author: John Rummell <jrummell at chromium.org>
Date:   Mon Mar 30 14:08:01 2020 -0700

    libavformat/mov.c: Free aes_decrypt to avoid leaking memory
    
    Found by Chromium fuzzers (crbug.com/1057205).
    
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit ad91cf1f2f5793db5c6dd7ab9947fcc6d7832607)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=cd655e4c0dc75a5de43d66af664d9347a82c2059
Author: John Rummell <jrummell at chromium.org>
Date:   Mon Mar 30 14:56:11 2020 -0700

    libavformat/oggdec.c: Check return value from avio_read()
    
    If the buffer doesn't contain enough bytes when reading a stream,
    fail rather than continuing on with unitialized data. Caught by
    Chromium fuzzers (crbug.com/1054229).
    
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit b7c67b1ae3657058b32b9235119d07529ad5cce1)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=12a53bf6731f6d56b61571f68154b83ad30c565c
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun Mar 15 17:26:51 2020 +0100

    avformat/asfdec_f: Fix overflow check in get_tag()
    
    Fixes: signed integer overflow: 2 * 1210064928 cannot be represented in type 'int'
    Fixes: 20873/clusterfuzz-testcase-minimized-ffmpeg_DEMUXER_fuzzer-5761116909338624
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Reviewed-by: Anton Khirnov <anton at khirnov.net>
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit c8140fe7324f264faacf7395b27e12531d1f13f7)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=dee744a8c4ab2c2b13b821b0cb4533db20863e6e
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Wed Mar 18 20:20:44 2020 +0100

    avformat/nsvdec: Fix memleaks on errors while reading the header
    
    Fixes: memleaks
    Fixes: 21084/clusterfuzz-testcase-minimized-ffmpeg_DEMUXER_fuzzer-5655975492321280
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Reviewed-by: Paul B Mahol <onemda at gmail.com>
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 96c04694550999cc214cae8c4a16d2d7ac0958bc)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e121488dc85e11ae59e608e5d62e946e916ade18
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun Mar 15 18:25:56 2020 +0100

    avcodec/ffwavesynth: Fix integer overflow in computation of ddphi
    
    Fixes: signed integer overflow: 1302123111085380114 - -8319005078741256972 cannot be represented in type 'long'
    Fixes: 20991/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_FFWAVESYNTH_fuzzer-5148554161291264
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Reviewed-by: Nicolas George <george at nsup.org>
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit c85bf1631823e9089e59a474d5c6c0efc708c507)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a3a3730b5456ca00587455004d40c047f7b20a99
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sat Mar 7 15:42:58 2020 +0100

    avcodec/cbs_jpeg: Check length for SOS
    
    Fixes: out of array access
    Fixes: 19734/clusterfuzz-testcase-minimized-ffmpeg_BSF_TRACE_HEADERS_fuzzer-5673507031875584
    Fixes: 19353/clusterfuzz-testcase-minimized-ffmpeg_BSF_TRACE_HEADERS_fuzzer-5703944462663680
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 1812352d767ccf5431aa440123e2e260a4db2726)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8640db14e70fa7f52397dbb6e54a62e5e1f0d2c2
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun Mar 1 22:46:34 2020 +0100

    avcodec/adpcm: Fix invalid shift in AV_CODEC_ID_ADPCM_PSX
    
    Fixes: left shift of negative value -1
    Fixes: 20859/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_ADPCM_PSX_fuzzer-5720391507247104
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 0a11ef68f0a85905e704e503b433f5aa645d59ac)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b66f444683206ca318572c3da5bc017d1b780cb1
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Thu Dec 5 22:35:03 2019 +0100

    avcodec/mpeg12dec: Fix invalid shift in mpeg2_fast_decode_block_intra()
    
    Fixes: left shift of negative value -695
    Fixes: 19232/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MPEG1VIDEO_fuzzer-5702856963522560
    Fixes: 19555/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MPEG1VIDEO_fuzzer-5741218147598336
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit c40df2166c7925fc81e1ef22563c2e32124cf1d6)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=73374013ffe73dbeb964a4061d89f60d8d025d77
Author: Andreas Rheinhardt <andreas.rheinhardt at gmail.com>
Date:   Mon Dec 9 23:26:03 2019 +0100

    avcodec/cbs_h2645: Treat slices without data as invalid
    
    Slices that end after their header (meaning slices after the header
    without any data before the rbsp_stop_one_bit or possibly without any
    rbsp_stop_one_bit at all) are invalid and are now dropped. This ensures
    that one doesn't run into two asserts in cbs_h2645_write_slice_data().
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at gmail.com>
    Fixes: 19629/clusterfuzz-testcase-minimized-ffmpeg_BSF_H264_METADATA_fuzzer-5676822528524288
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 66fac1ff7ccbc4fb6a3aa6b9a95de7b6bc31d14e)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=107345d0a1162f4a0aa8cb413d15150ead849587
Author: Andreas Rheinhardt <andreas.rheinhardt at gmail.com>
Date:   Mon Dec 9 23:26:02 2019 +0100

    avcodec/cbs_h2645: Remove dead code to delete trailing zeroes
    
    Trailing zeroes are already discarded when splitting a fragment, which
    makes the code to remove them when decomposing slices dead code.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at gmail.com>
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 8f701932b39a6345f2a8bab85f48d555a98802e3)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f94ca27470ac4124cec4f98b7362bb65e29e080e
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sat Dec 14 18:43:24 2019 +0100

    avcodec/cbs_av1_syntax_template: Set seen_frame_header only after successfull uncompressed_header()
    
    Fixes: assertion failure
    Fixes: 19301/clusterfuzz-testcase-minimized-ffmpeg_BSF_AV1_FRAME_MERGE_fuzzer-5743212006473728
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit a2e4879432b9de6aa899b85aebbc0eb6a8b5f37f)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c5419a53ac179a5005d68ff0c6a1cf1d53a03e09
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Thu Jan 23 12:41:41 2020 +0100

    avcodec/mpegaudioenc_template: fix invalid shift of sample
    
    Fixes: Ticket8010
    
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit a2c97a8342fab6393280cc2f0e2ffb39c381d29c)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=eb64c10a4ba6d64c54b8f6c51be65b5c20395f66
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Thu Jan 23 12:50:30 2020 +0100

    avcodec/motion_est_template: Fix invalid shifts in no_sub_motion_search()
    
    Fixes: Ticket8167
    
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit e13eee37ee3268b0a985ddc74a9bde0179bd553c)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1170ec748bb3ac4672321218ee2389329191bbe3
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun Jan 26 22:19:48 2020 +0100

    libavformat/avienc: Check bits per sample for PAL8
    
    Fixes: assertion failure
    Fixes: Ticket 8172
    
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 35958782819c00211e247332ab18fbf2f28267e1)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=6faa32dd6cc9d83586bcd4a0fc3b02451f05e9a0
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Mon Jan 27 19:07:00 2020 +0100

    avformat/mpegts: Improve the position determination for avpriv_mpegts_parse_packet()
    
    Fixes: assertion failure
    Fixes: Ticket 8005
    
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit e5bb48ae5990347dff22fc38ff5a1c1f7f60a1c5)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=59a4a990fc395b092a65faae44b421b9cfeead3a
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sat Feb 22 00:42:30 2020 +0100

    avcodec/magicyuv: Check that there are enough lines for interlacing to be possible
    
    Fixes: out of array access
    Fixes: 20763/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MAGICYUV_fuzzer-5759562508664832
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Reviewed-by: Paul B Mahol <onemda at gmail.com>
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit f8a0e9f9f71cf5650bdc250ff7475e0f7d8e8420)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=366929ab4e9f7b4d9cdbe721987a1d04bab7db15
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun Feb 23 09:27:27 2020 +0100

    avformat/mvdec: Check stream numbers
    
    Fixes: null pointer dereference
    Fixes: 20768/clusterfuzz-testcase-minimized-ffmpeg_DEMUXER_fuzzer-5638648978735104.fuzz
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Reviewed-by: Andreas Rheinhardt <andreas.rheinhardt at gmail.com>
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 618a9bea65112a27a106e02ada3ae475cc8ac1ac)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a7dabc18ea2eff1fd827dcbba1a7296b5ecc132b
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Thu Feb 20 22:26:18 2020 +0100

    avcodec/pcm: Fix invalid shift in AV_CODEC_ID_PCM_LXF
    
    Fixes: left shift of 233 by 24 places cannot be represented in type 'int'
    Fixes: 20736/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_PCM_LXF_fuzzer-4829212685107200
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Reviewed-by: Paul B Mahol <onemda at gmail.com>
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 051d11f659455f38be7ce40e2dc9d03b082dcd4d)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=4e2dd06d27da7f9e5d4af7e69da542d643ad04da
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Tue Feb 18 22:58:12 2020 +0100

    avcodec/qdm2: Check fft_coefs_index
    
    Fixes: out of array access
    Fixes: 20660/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_QDM2_fuzzer-5658290216501248
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Reviewed-by: Paul B Mahol <onemda at gmail.com>
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 9fc73bf022eb781eea7f685e2d2e9de4ba8898ca)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=31098af56df68147408568f8bea2dec3666390eb
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sat Feb 15 23:23:55 2020 +0100

    avformat/utils: Fix integer overflow with complex time bases in avformat_find_stream_info()
    
    Fixes: signed integer overflow: 2045163756 * 2 cannot be represented in type 'int'
    Fixes: Ticket5132
    
    Found-by: tsmith
    Reviewed-by: Paul B Mahol <onemda at gmail.com>
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit f3d8f517dbc42de8e2f97cc01bf5171bb05fbcc7)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=4b7a304b6ebcce5e47e27294da2894327b4173cd
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sat Feb 15 23:18:25 2020 +0100

    avformat/avidec: Avoid integer overflow in NI switch check
    
    Fixes: signed integer overflow: 0 - -9223372036854775808 cannot be represented in type 'long'
    Fixes: Ticket8149
    
    Found-by: Suhwan
    Reviewed-by: Paul B Mahol <onemda at gmail.com>
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 347920ca2102d762e4713f101a2e75811791e2b3)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=6a300f6a9079d2c3156d8c1f03f50fdad0cee0af
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sat Feb 15 22:56:18 2020 +0100

    fftools/ffmpeg: Fix integer overflow in duration computation in seek_to_start()
    
    Fixes: signed integer overflow: -9223372036854775808 - 9223372036854775807 cannot be represented in type 'long'
    Fixes: Ticket8142
    
    Found-by: Suhwan
    Reviewed-by: Paul B Mahol <onemda at gmail.com>
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 4f4ad33d96a01d82edf56d58599017cb0ae5bfa8)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=555d2ab5a5685b369b27609cbafe6ea5bf5c8ed3
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sat Feb 15 22:35:37 2020 +0100

    avfilter/vf_aspect: Fix integer overflow in compute_dar()
    
    Fixes: signed integer overflow: 1562273630 * 17 cannot be represented in type 'int'
    Fixes: Ticket8323
    
    Found-by: Suhwan
    Reviewed-by: Paul B Mahol <onemda at gmail.com>
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 0c0ca0f244b823238e5a4f5584168e620da84899)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=55f147c2bae989242735487d618b2d26f3d6beed
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Tue Feb 11 23:56:45 2020 +0100

    avcodec/apedec: Fix invalid shift with 24 bps
    
    Fixes: left shift of negative value -463
    Fixes: 20542/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_APE_fuzzer-5688714435231744
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Reviewed-by: Paul B Mahol <onemda at gmail.com>
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 8e278672294f28a3feaba0a38460afd51f0fadda)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b89759ea54652544d916cd78a6fe63dfa65386cf
Author: Dale Curtis <dalecurtis at chromium.org>
Date:   Tue Jan 28 16:49:14 2020 -0800

    avformat/utils: Fix undefined behavior in ff_configure_buffers_for_index()
    
    When e2_pts == INT64_MIN and e1_pts >= 0 the calculation of
    e2_pts - e1_pts will overflow an int64_t.
    
    Signed-off-by: Dale Curtis <dalecurtis at chromium.org>
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit f15007afa90a3eb3639848d9702c1cc3ac3e896b)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=27db9c828890af9e986df979b558a11308fc4002
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Wed Jan 22 23:11:47 2020 +0100

    avcodec/dpcm: Fix integer overflow in AV_CODEC_ID_GREMLIN_DPCM
    
    Fixes: signed integer overflow: -2147479324 + -32568 cannot be represented in type 'int'
    Fixes: 20103/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_GREMLIN_DPCM_fuzzer-5667667579240448
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit b1aecad9eae900b9c3054392994d150d5ae572c5)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=52b9e7f530f88a73f6c5d96d9a38c75631294c38
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sat Jan 18 19:55:23 2020 +0100

    avcodec/wmalosslessdec: Fix integer overflow with sliding in padding bits
    
    Fixes: signed integer overflow: -53716100 * 256 cannot be represented in type 'int'
    Fixes: 20143/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_WMALOSSLESS_fuzzer-5716604000403456
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit b8a0be93528187721a2414f66abbc252a258afa3)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=3653108a5c1abe8a0dc8a0e4b7124475c1a5728e
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sat Jan 18 19:28:36 2020 +0100

    avcodec/wmalosslessdec: Fix loop in revert_acfilter()
    
    Fixes: out of array read
    Fixes: 20059/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_WMALOSSLESS_fuzzer-5691776237305856
    
    No testcase except the fuzzed one.
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 5584c0bb945d6010a9d8c22ef3270792022e1761)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c4dccb509dea86fb3b0c9cc0ced325d269649836
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Tue Jan 28 20:12:25 2020 +0100

    avcodec/lagarith: Sanity check scale
    
    A value of 24 and above can collaps the range to 0 which would not work.
    
    Fixes: Timeout (75sec -> 21sec)
    Fixes: 18707/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_LAGARITH_fuzzer-5708950892969984
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit fb3855342b9e4c577c63b38a7a5a574830a21934)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d75d754b84d4fc8df3bdb98d3e3bbdcc9a13f0db
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Tue Jan 28 18:35:43 2020 +0100

    avcodec/apedec: Fix integer overflows in predictor_decode_mono_3950()
    
    Fixes: signed integer overflow: -2147407150 + -1871606 cannot be represented in type 'int'
    Fixes: 18702/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_APE_fuzzer-5679095417667584
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit eb64a5c6f94981e4a68ad65a6e445557e11c08fc)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9f30a1694c6c1cc92df5777b6a17032e19250bbc
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun Dec 8 13:48:45 2019 +0100

    avcodec/ralf: Fix integer overflow in apply_lpc()
    
    Fixes: signed integer overflow: 2147482897 + 2048 cannot be represented in type 'int'
    Fixes: 19240/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_RALF_fuzzer-5743240326414336
    Fixes: 19869/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_RALF_fuzzer-5150136636538880
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit fd313d8cf8368918882b6de0880e44ae25cc7394)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=af1bfe5bc3102cebb35c64a69e115268a2b42fc1
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sat Jan 4 23:01:12 2020 +0100

    avcodec/dca_lbr: Fix some error codes and error passing
    
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit bfea054a75f17d140f2f171056a801c4c89f6d26)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9f3047384674217bc988128b5ebbe7a397fca741
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sat Dec 14 15:27:44 2019 +0100

    avcodec/wmavoice: Fix rounding and integer anomalies in calc_input_response()
    
    Fixes: out of array access
    Fixes: inf is outside the range of representable values of type 'int'
    Fixes: signed integer overflow: -9223372036854775808 - 1 cannot be represented in type 'long'
    Fixes: 19316/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_WMAVOICE_fuzzer-5677369365102592
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 38d37584448731f90977132b838d50ff1a28811b)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=20c0ea160ec7cd71cf766236ccf212ba5883a342
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sat Dec 21 22:27:37 2019 +0100

    avcodec/wmavoice: sanity check block_align
    
    This limit is roughly based on the bitreader limit, its likely a much tighter limit
    could be used
    
    Fixes: left shift of 1965039647 by 1 places cannot be represented in type 'int'
    Fixes: 19545/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_WMAVOICE_fuzzer-5695391899320320
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 6847e22c8c85b80bf1d25ec66f77f7ccbcf43aed)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=958db2c43895e2cc58eea1203601746519c2e3e8
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Wed Dec 18 00:07:50 2019 +0100

    avcodec/pcm: Fix invalid shift in pcm_decode_frame for LXF
    
    Fixes: left shift of 32 by 28 places cannot be represented in type 'int'
    Fixes: 19472/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_PCM_LXF_fuzzer-5704364320096256
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 985d3666f672781152f4b68093740ea6a9888194)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=bc77d29d9ea3a3b360779f25bcd3fa8b1c9a95cf
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun Jan 19 21:51:11 2020 +0100

    avcodec/snappy: Sanity check bytestream2_get_levarint()
    
    Fixes: left shift of 79 by 28 places cannot be represented in type 'int'
    Fixes: 20202/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_HAP_fuzzer-5719004081815552
    Fixes: 20219/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_HAP_fuzzer-5641738677125120
    Fixes: 20389/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_HAP_fuzzer-5680721517871104
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit be54da2117a6f58c14283f2511e71fda8d3bfe9d)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=5e83098085edfdbbb5b5595c66e48081f6ada374
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sat Feb 1 23:25:42 2020 +0100

    avcodec/mlpdsp: Fix a invalid shift in ff_mlp_rematrix_channel()
    
    Fixes: left shift of negative value -2
    Fixes: 20305/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_TRUEHD_fuzzer-5677196618498048
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Reviewed-by: Jai Luthra <me at jailuthra.in>
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit fcc9f13717c8c3fe08ca5caf957c39e76ea35e4f)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=51c084bf728e7900c0606d54257ac7474b2db6fe
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Mon Jan 27 21:54:22 2020 +0100

    avcodec/avdct: Clear IDCTDSPContext context
    
    Fixes use of uninitialized variable and segfault
    
    Reviewed-by: Paul B Mahol <onemda at gmail.com>
    Reviewed-by: James Almer <jamrial at gmail.com>
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit b82825eba837f7cbb24c1d66e93285d029307417)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9ed9c8cc51051c6a234b08853aafbbddd1478ca0
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Thu Jan 30 22:04:06 2020 +0100

    avcodec/x86/diracdsp: Fix high bits on Windows x86_64
    
    Found-by: james
    (cherry picked from commit 24af459d1e568fd134476f305f4fba23bf2c386a)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e1146c8b7255f18e3768a0332b9f0f30ce26af06
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sat Jan 11 12:09:08 2020 +0100

    avformat/mov: Check STCO location
    
    Fixes: bypassing of checks and assertion failure
    Fixes: asan_1003879.mp4
    
    Found-by: Clusterfuzz + asan
    Reported-by: Thomas Guilbert <tguilbert at google.com>
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 1cd41840208bce7e690a4ccc48077567418a0aa8)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=862c0048ec39085bc43bdc61b22e012466147e21
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Thu Jan 9 02:06:36 2020 +0100

    avcodec/wmalosslessdec: Fix multiple integer overflows
    
    Fixes: left shift of 3329 by 20 places cannot be represented in type 'int'
    Fixes: signed integer overflow: -199378355 + -1948950833 cannot be represented in type 'int'
    Fixes: 19837/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_WMALOSSLESS_fuzzer-5752565837070336
    Fixes: 19839/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_WMALOSSLESS_fuzzer-5767483265122304
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 422202516cfb6239abb4e20db9f628f3899a76e2)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=109cab14878f5e71606d56231c0a6028cfe95875
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sat Dec 7 20:55:16 2019 +0100

    avcodec/apedec: Fix undefined integer overflow in decode_array_0000()
    
    Fixes: signed integer overflow: -2143289344 - 6246400 cannot be represented in type 'int'
    Fixes: 19239/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_APE_fuzzer-5173755680915456
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit a3655bb02c21e70573335e9396632f64b2589536)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b7c2f4d298f31c38c97b9249837c567f3bd5ff43
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Wed Jan 1 20:43:05 2020 +0100

    avcodec/smacker: Check space before decoding type
    
    Fixes: Timeout (232sec -> 280ms)
    Fixes: 19682/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_SMACKER_fuzzer-5654129649385472
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 6f5c18da5977a3214e1ea30e6b0c0d9d858ce83d)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=3f42af03427100d38657b0940c50c89d0c9cc812
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Wed Jan 1 22:32:04 2020 +0100

    avcodec/rawdec: Use linesize in b64a
    
    Fixes: out of array access
    Fixes: 19750/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_RAWVIDEO_fuzzer-5074834119983104
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 2b5b9d5dac9a3525d7330662724c0e9045078bfb)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=57278dac15cba65b34717ff3e2c97c4303bb6581
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Fri Jan 3 23:24:15 2020 +0100

    avcodec/iff: Over-allocate ham_palbuf for HAM6 IFF-PBM
    
    IFF-PBM-HAM6 can read out of array without this overallocation
    Fixes: Out of array read
    Fixes: 19752/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_IFF_ILBM_fuzzer-5675331403120640
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 8652f4e7a15e56fadf9697188c1ed42c9981db82)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e1bea6d4121801f5b42112246754d7d2efd97cb4
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Wed Jan 29 22:11:45 2020 +0100

    avcodec/x86/diracdsp: Fix incorrect src addressing in dequant_subband_32()
    
    Fixes: Segfault (not reproducable with asm, which made this hard to debug)
    Fixes: decoding errors
    Fixes: 19854/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_DIRAC_fuzzer-5729372837511168
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Reviewed-by: Paul B Mahol <onemda at gmail.com>
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 0694b60b7b4892eac1d6e2aca64de9e0cb096486)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7a7be53ac5330ba86e573f47a998478cb455cf92
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun Jan 26 20:45:07 2020 +0100

    avfilter/vf_find_rect: Remove assert
    
    A score of 0 is possible
    Fixes: Ticket8500
    
    Reviewed-by: Paul B Mahol <onemda at gmail.com>
    Reviewed-by: Andreas Rheinhardt <andreas.rheinhardt at gmail.com>
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit dfc471488675aa257183745502d0074055db3bd2)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b7b8aeef138c1e0425fc803dead0c9022e9cde5f
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun Jan 26 20:45:06 2020 +0100

    avfilter/vf_find_rect: Increase worst case score
    
    score could be 1.0 which lead to uninitialized values
    
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 6ff2474e02200dce7abdea3fd211fcaf49691c2c)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=cfd165dda7c0914de592a9d13efdb5640ae8ee8e
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Tue Jan 21 22:52:19 2020 +0100

    swscale/input: Fix several invalid shifts related to rgb2yuv constants
    
    Fixes: Invalid shifts
    Fixes: #8140
    Fixes: #8146
    
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit d48e510124d0fea24e2ec27271687c92e4428a18)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f541744f735d0773177f40da81e64f3401cadbc1
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Tue Jan 21 22:52:19 2020 +0100

    swscale/output: Fix several invalid shifts in yuv2rgb_full_1_c_template()
    
    Fixes: Invalid shifts
    Fixes: #8320
    
    Reviewed-by: Andreas Rheinhardt <andreas.rheinhardt at gmail.com>
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 7b7f97532b2ac8836d8d8e3c71dd026e35ae1ca7)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0ec11133d928f0d64531528c8bf4c04d9b314046
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Tue Jan 21 22:52:19 2020 +0100

    swscale/swscale: Fix several invalid shifts related to vChrDrop
    
    Fixes: Invalid shifts
    Fixes: #8166
    Fixes: filter-crop_scale_vflip FATE-test
    
    Reviewed-by: Andreas Rheinhardt <andreas.rheinhardt at gmail.com>
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit a6ca22c11834c0ff075592e3f051d41068c407db)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=88326e29dc683b6168cb697773abf1fd9059cadf
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Fri Dec 13 00:50:21 2019 +0100

    avcodec/hevc_mp4toannexb_bsf: check that nalu size doesnt overflow
    
    Fixes: Out of array access
    Fixes: 19299/clusterfuzz-testcase-minimized-ffmpeg_BSF_HEVC_MP4TOANNEXB_fuzzer-5169193398042624
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit a8ceb2a72fa1bef4ab5f1ec6cdc7ce74fffda19d)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a0d0e9b245b9f654b719d7c665dd9f2f4f5d16e4
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Fri Dec 13 00:38:29 2019 +0100

    avcodec/hevc_mp4toannexb_bsf: Avoid NULL memcpy()
    
    Fixes: invalid memcpy use
    Fixes: 19299/clusterfuzz-testcase-minimized-ffmpeg_BSF_HEVC_MP4TOANNEXB_fuzzer-5169193398042624
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 1e23b5a706cd378ed07a200dfee656b38504f165)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=831ac9ad46c63267493ab3557f00a17fa7797c73
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Thu Dec 12 23:50:27 2019 +0100

    avcodec/cbs_av1: Check leb128 values read
    
    "It is a requirement of bitstream conformance that the value returned from the leb128 parsing process is less than or equal
    to (1 << 32) - 1."
    
    Fixes: assertion failure
    Fixes: 19293/clusterfuzz-testcase-minimized-ffmpeg_BSF_TRACE_HEADERS_fuzzer-5749508361420800
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit a70d8363648fdd380df7f2ed39eaccf08d406e6a)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=623ecb2ec855fbf0cf5e75928d063a07aa705e3f
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Wed Jan 15 00:32:55 2020 +0100

    avcodec/wmalosslessdec: move channel check up
    
    Fixes: out of array access
    Fixes: 2nd part of 18429/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_WMALOSSLESS_fuzzer-6210814364614656
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Reviewed-by: Andreas Rheinhardt <andreas.rheinhardt at gmail.com>
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 891bcc4acc93e0c5a75ab7a9da668df84a0edba7)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=94a1280fb0b1a1cf34c7f28d2c2d2e42c42840b3
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Wed Dec 11 19:19:49 2019 +0100

    avcodec/cbs_h2645: Skip all 0 NAL units
    
    Fixes: assertion failure
    Fixes: 19286/clusterfuzz-testcase-minimized-ffmpeg_BSF_H264_REDUNDANT_PPS_fuzzer-5707990724509696
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 285138ef14327ec71f356e3a923c4adde0874dc6)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7be077fcf88d1cb0c81e1ba761288ab82e4d7bc9
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sat Dec 7 00:14:16 2019 +0100

    avcodec/adpcm: Fix overflow in FFABS() IMA_EA_EACS
    
    Fixes: negation of -2147483648 cannot be represented in type 'int'; cast to an unsigned type to negate this value to itself
    Fixes: 19235/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_ADPCM_IMA_EA_EACS_fuzzer-5680878952382464
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 794352ae9d1cb32b4b9e45d3affb83763f4ee12e)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b36592ce07fb81b5035f9b6cfbeab5c7c5e2c36e
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sat Dec 7 20:42:54 2019 +0100

    avcodec/alac: Fix integer overflow in LPC coefficient adaption
    
    Fixes: signed integer overflow: 267693597 * 10 cannot be represented in type 'int'
    Fixes: 19237/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_ALAC_fuzzer-5755407700328448
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 6a865cec5e7584ef476f394fc55c1fc91cec1a14)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=84048cf37f518ab79e1a43b7acbe031f112685c8
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sat Dec 7 20:38:13 2019 +0100

    avcodec/g729postfilter: Optimize out overflowing multiplication from apply_tilt_comp()
    
    Fixes: signed integer overflow: -1114392282 * 2 cannot be represented in type 'int'
    Fixes: 19236/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_G729_fuzzer-5741678938030080
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit c0bd5fa43d193aa389bea7c5176b2fe23f6eeddd)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=fabd42043a833f65328d36114b2366cb9905e576
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun Dec 8 20:18:07 2019 +0100

    avcodec/vc1dec: Check field_mode for sprites
    
    Fixes: Out of array read
    Fixes: 19263/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_VC1IMAGE_fuzzer-5389219325542400
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 32fb9198360402941e49aa878b9d33737b654f62)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f2a0bde8f3008a737f22cce80656cfddc79fdbe6
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Sun Dec 8 19:37:46 2019 +0100

    avcodec/vc1dec: Limit bits by the actual bitstream size
    
    Fixes: Timeout (350 ->19sec)
    Fixes: 19249/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_VC1IMAGE_fuzzer-6566896438870016
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit c56a52a82c0a4039e606e82b948a8abfe417f35f)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

URL:    http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f061fe9aa1845183a6f4e3b119f310771bb2774f
Author: Michael Niedermayer <michael at niedermayer.cc>
Date:   Mon Jan 6 01:38:21 2020 +0100

    avcodec/vmdaudio: Check block_align more
    
    Fixes: signed integer overflow: 2147483647 + 1 cannot be represented in type 'int'
    Fixes: 19788/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_VMDAUDIO_fuzzer-5743379690553344
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Reviewed-by: Paul B Mahol <onemda at gmail.com>
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
    (cherry picked from commit 06f6857b54a7fbbd087b0803f75bed44abed50d9)
    Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>



More information about the ffmpeg-cvslog mailing list