Check offset in flv_probe()
authorMichael Niedermayer <michaelni@gmx.at>
Tue, 15 Sep 2009 14:56:09 +0000 (14:56 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Tue, 15 Sep 2009 14:56:09 +0000 (14:56 +0000)
Originally committed as revision 19858 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/flvdec.c

index c982708..b3b3cc1 100644 (file)
@@ -39,7 +39,7 @@ static int flv_probe(AVProbeData *p)
     const uint8_t *d;
 
     d = p->buf;
-    if (d[0] == 'F' && d[1] == 'L' && d[2] == 'V' && d[3] < 5 && d[5]==0) {
+    if (d[0] == 'F' && d[1] == 'L' && d[2] == 'V' && d[3] < 5 && d[5]==0 && AV_RB32(d+5)>8) {
         return AVPROBE_SCORE_MAX;
     }
     return 0;