You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
mpeg4videodec: raise an error if sprite_trajectory.table is NULL
CC: libav-stable@libav.org Bug-Id: 1012
This commit is contained in:
@@ -186,6 +186,10 @@ static int mpeg4_decode_sprite_trajectory(Mpeg4DecContext *ctx, GetBitContext *g
|
||||
if (w <= 0 || h <= 0)
|
||||
return AVERROR_INVALIDDATA;
|
||||
|
||||
/* the decoder was not properly initialized and we cannot continue */
|
||||
if (sprite_trajectory.table == NULL)
|
||||
return AVERROR_INVALIDDATA;
|
||||
|
||||
for (i = 0; i < ctx->num_sprite_warping_points; i++) {
|
||||
int length;
|
||||
int x = 0, y = 0;
|
||||
|
Reference in New Issue
Block a user