[FFmpeg-cvslog] avcodec/bitpacked: add missing comma to codec tags
Michael Niedermayer
git at videolan.org
Thu Jun 4 20:38:56 EEST 2020
ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Wed Jun 3 19:17:34 2020 +0200| [e34686d7acdd2d2562286753a727e100cedd6393] | committer: Michael Niedermayer
avcodec/bitpacked: add missing comma to codec tags
Fixes: array end overread
Fixes: 22395/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_BITPACKED_fuzzer-5760940300828672
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Reviewed-by: James Darnley <james.darnley at gmail.com>
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e34686d7acdd2d2562286753a727e100cedd6393
---
libavcodec/bitpacked.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/bitpacked.c b/libavcodec/bitpacked.c
index be7d1e3629..952ba73a32 100644
--- a/libavcodec/bitpacked.c
+++ b/libavcodec/bitpacked.c
@@ -147,7 +147,7 @@ AVCodec ff_bitpacked_decoder = {
.decode = bitpacked_decode,
.capabilities = AV_CODEC_CAP_EXPERIMENTAL,
.codec_tags = (const uint32_t []){
- MKTAG('U', 'Y', 'V', 'Y')
+ MKTAG('U', 'Y', 'V', 'Y'),
FF_CODEC_TAGS_END,
},
};
More information about the ffmpeg-cvslog
mailing list