diff h263.c @ 2805:55a6659fc2ee libavcodec

fix user data parsing code so it suppors pre1 and cvs
author michael
date Sun, 24 Jul 2005 09:28:24 +0000
parents dc616c8ef3e6
children 18b231c1cb3d
line wrap: on
line diff
--- a/h263.c	Sat Jul 23 11:16:18 2005 +0000
+++ b/h263.c	Sun Jul 24 09:28:24 2005 +0000
@@ -5759,17 +5759,15 @@
     }
     
     /* ffmpeg detection */
-    e=sscanf(buf, "FFmpeg%d.%d.%db%d", &ver, &ver2, &ver3, &build);
+    e=sscanf(buf, "FFmpe%*[^b]b%d", &build)+3;
     if(e!=4)
         e=sscanf(buf, "FFmpeg v%d.%d.%d / libavcodec build: %d", &ver, &ver2, &ver3, &build); 
     if(e!=4){
         if(strcmp(buf, "ffmpeg")==0){
-            s->ffmpeg_version= 0x000406;
             s->lavc_build= 4600;
         }
     }
     if(e==4){
-        s->ffmpeg_version= ver*256*256 + ver2*256 + ver3;
         s->lavc_build= build;
     }