diff flvdec.c @ 2001:1a3c9056982a libavformat

allocate 32 extra bytes at the end of the probe buffer and remove most probe buf_size checks
author michael
date Sun, 08 Apr 2007 11:34:15 +0000
parents cf8db4fe9efa
children a3e79d6e4e3c
line wrap: on
line diff
--- a/flvdec.c	Sun Apr 08 09:50:08 2007 +0000
+++ b/flvdec.c	Sun Apr 08 11:34:15 2007 +0000
@@ -31,8 +31,6 @@
 {
     const uint8_t *d;
 
-    if (p->buf_size < 6)
-        return 0;
     d = p->buf;
     if (d[0] == 'F' && d[1] == 'L' && d[2] == 'V' && d[3] < 5 && d[5]==0) {
         return AVPROBE_SCORE_MAX;