Commit 557571ff authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/h261dec: dont accept invalid gobs in probe as valid

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 891f33cc
......@@ -43,10 +43,10 @@ static int h261_probe(AVProbeData *p)
else valid_psc++;
if(src_fmt){ // CIF
static const int lut[16]={1,2,3,4,5,6,7,8,9,10,11,12,0,1,2,3};
static const int lut[16]={1,2,3,4,5,6,7,8,9,10,11,12,0,16,16,16};
next_gn = lut[gn];
}else{ //QCIF
static const int lut[16]={1,3,4,5,6,0,1,2,3,4,5,6,0,1,2,3,4};
static const int lut[16]={1,3,16,5,16,0,16,16,16,16,16,16,16,16,16,16};
next_gn = lut[gn];
}
}
......
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