mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-06-19 19:03:00 +02:00
yopdec: check frame oddness to be within supported limits
Fixes Ticket1365 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -224,6 +224,10 @@ static int yop_decode_frame(AVCodecContext *avctx, void *data, int *data_size,
|
|||||||
s->low_nibble = NULL;
|
s->low_nibble = NULL;
|
||||||
|
|
||||||
is_odd_frame = avpkt->data[0];
|
is_odd_frame = avpkt->data[0];
|
||||||
|
if(is_odd_frame>1){
|
||||||
|
av_log(avctx, AV_LOG_ERROR, "frame is too odd %d\n", is_odd_frame);
|
||||||
|
return AVERROR_INVALIDDATA;
|
||||||
|
}
|
||||||
firstcolor = s->first_color[is_odd_frame];
|
firstcolor = s->first_color[is_odd_frame];
|
||||||
palette = (uint32_t *)s->frame.data[1];
|
palette = (uint32_t *)s->frame.data[1];
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user