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

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
pull/73/head
Michael Niedermayer 11 years ago
parent 891f33cc70
commit 557571ff7d
  1. 4
      libavformat/h261dec.c

@ -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];
}
}

Loading…
Cancel
Save