Commit 51b0694b authored by Michael Niedermayer's avatar Michael Niedermayer

ff_dv_frame_profile2: Check input buffer size.

Based on code by DivX, Inc. / drffmpeg
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent dd968a2e
......@@ -249,11 +249,13 @@ static const DVprofile dv_profiles[] = {
const DVprofile* ff_dv_frame_profile2(AVCodecContext* codec, const DVprofile *sys,
const uint8_t* frame, unsigned buf_size)
{
int i;
int i, dsf, stype;
int dsf = (frame[3] & 0x80) >> 7;
if(buf_size < DV_PROFILE_BYTES)
return NULL;
int stype = frame[80*5 + 48 + 3] & 0x1f;
dsf = (frame[3] & 0x80) >> 7;
stype = frame[80*5 + 48 + 3] & 0x1f;
/* 576i50 25Mbps 4:1:1 is a special case */
if (dsf == 1 && stype == 0 && frame[4] & 0x07 /* the APT field */) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment