OSDN Git Service

bit: require at least 1 frame for probing
authorMichael Niedermayer <michaelni@gmx.at>
Sun, 16 Oct 2011 00:43:36 +0000 (02:43 +0200)
committerMichael Niedermayer <michaelni@gmx.at>
Sun, 16 Oct 2011 00:43:36 +0000 (02:43 +0200)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavformat/bit.c

index 7400d24..d72d2a8 100644 (file)
@@ -12,6 +12,9 @@ static int probe(AVProbeData *p)
 {
     int i, j;
 
+    if(p->buf_size < 0x40)
+        return 0;
+
     for(i=0; i+3<p->buf_size && i< 10*0x50; ){
         if(AV_RL16(&p->buf[0]) != SYNC_WORD)
             return 0;