mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avcodec/vp9_superframe_split_bsf: Don't read inexistent data
Fixes: Out of array read Fixes: 45137/clusterfuzz-testcase-minimized-ffmpeg_BSF_VP9_SUPERFRAME_SPLIT_fuzzer-4984270639202304 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
d20ef30f53
commit
d311d820a7
@ -51,6 +51,9 @@ static int vp9_superframe_split_filter(AVBSFContext *ctx, AVPacket *out)
|
|||||||
return ret;
|
return ret;
|
||||||
in = s->buffer_pkt;
|
in = s->buffer_pkt;
|
||||||
|
|
||||||
|
if (!in->size)
|
||||||
|
goto passthrough;
|
||||||
|
|
||||||
marker = in->data[in->size - 1];
|
marker = in->data[in->size - 1];
|
||||||
if ((marker & 0xe0) == 0xc0) {
|
if ((marker & 0xe0) == 0xc0) {
|
||||||
int length_size = 1 + ((marker >> 3) & 0x3);
|
int length_size = 1 + ((marker >> 3) & 0x3);
|
||||||
@ -121,6 +124,7 @@ static int vp9_superframe_split_filter(AVBSFContext *ctx, AVPacket *out)
|
|||||||
out->pts = AV_NOPTS_VALUE;
|
out->pts = AV_NOPTS_VALUE;
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
passthrough:
|
||||||
av_packet_move_ref(out, s->buffer_pkt);
|
av_packet_move_ref(out, s->buffer_pkt);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user