mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/mpegaudiodec_template: Correct return code on id3 tag discarding
Fixes: 665/clusterfuzz-testcase-4863789881098240
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit 5d81616be3
)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
04fc0a8244
commit
d506777063
|
@ -1655,7 +1655,7 @@ static int decode_frame(AVCodecContext * avctx, void *data, int *got_frame_ptr,
|
|||
header = AV_RB32(buf);
|
||||
if (header>>8 == AV_RB32("TAG")>>8) {
|
||||
av_log(avctx, AV_LOG_DEBUG, "discarding ID3 tag\n");
|
||||
return buf_size;
|
||||
return buf_size + skipped;
|
||||
}
|
||||
if (ff_mpa_check_header(header) < 0) {
|
||||
av_log(avctx, AV_LOG_ERROR, "Header missing\n");
|
||||
|
|
Loading…
Reference in New Issue