changeset 2002:1aa1bc9c5be8 libavformat

factorize
author michael
date Sun, 08 Apr 2007 11:37:04 +0000
parents 1a3c9056982a
children 05b383b1c46c
files nsvdec.c
diffstat 1 files changed, 1 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/nsvdec.c	Sun Apr 08 11:34:15 2007 +0000
+++ b/nsvdec.c	Sun Apr 08 11:37:04 2007 +0000
@@ -728,12 +728,9 @@
     int i;
 //    PRINT(("nsv_probe(), buf_size %d\n", p->buf_size));
     /* check file header */
-    if (p->buf[0] == 'N' && p->buf[1] == 'S' &&
-        p->buf[2] == 'V' && p->buf[3] == 'f')
-        return AVPROBE_SCORE_MAX;
     /* streamed files might not have any header */
     if (p->buf[0] == 'N' && p->buf[1] == 'S' &&
-        p->buf[2] == 'V' && p->buf[3] == 's')
+        p->buf[2] == 'V' && (p->buf[3] == 'f' || p->buf[3] == 's'))
         return AVPROBE_SCORE_MAX;
     /* XXX: do streamed files always start at chunk boundary ?? */
     /* or do we need to search NSVs in the byte stream ? */