]> granicus.if.org Git - libx264/commitdiff
cli: don't try to get resolution from filename unless input is rawyuv
authorLoren Merritt <pengvado@videolan.org>
Thu, 3 Aug 2006 18:22:08 +0000 (18:22 +0000)
committerLoren Merritt <pengvado@videolan.org>
Thu, 3 Aug 2006 18:22:08 +0000 (18:22 +0000)
git-svn-id: svn://svn.videolan.org/x264/trunk@549 df754926-b1dd-0310-bc7b-ec298dee348c

x264.c

diff --git a/x264.c b/x264.c
index cdf3996b35c313c798033c6619b1876fcc825f9f..1324c83fd243b3995bdd6f669612a9681677a052 100644 (file)
--- a/x264.c
+++ b/x264.c
@@ -60,7 +60,6 @@ static void    SigIntHandler( int a )
 }
 
 typedef struct {
-    int b_decompress;
     int b_progress;
     int i_seek;
     hnd_t hin;
@@ -573,7 +572,16 @@ static int  Parse( int argc, char **argv,
     }
     psz_filename = argv[optind++];
 
-    if( !opt->b_decompress )
+    /* check demuxer type */
+    psz = psz_filename + strlen(psz_filename) - 1;
+    while( psz > psz_filename && *psz != '.' )
+        psz--;
+    if( !strncasecmp( psz, ".avi", 4 ) || !strncasecmp( psz, ".avs", 4 ) )
+        b_avis = 1;
+    if( !strncasecmp( psz, ".y4m", 4 ) )
+        b_y4m = 1;
+
+    if( !(b_avis || b_y4m) ) // raw yuv
     {
         if( optind > argc - 1 )
         {
@@ -593,21 +601,12 @@ static int  Parse( int argc, char **argv,
         {
             sscanf( argv[optind++], "%ux%u", &param->i_width, &param->i_height );
         }
+    }
         
-        /* check avis input */
-        psz = psz_filename + strlen(psz_filename) - 1;
-        while( psz > psz_filename && *psz != '.' )
-            psz--;
-
-        if( !strncasecmp( psz, ".avi", 4 ) || !strncasecmp( psz, ".avs", 4 ) )
-            b_avis = 1;
-        if( !strncasecmp( psz, ".y4m", 4 ) )
-            b_y4m = 1;
-        if( !(b_avis || b_y4m) && ( !param->i_width || !param->i_height ) )
-        {
-            Help( &defaults );
-            return -1;
-        }
+    if( !(b_avis || b_y4m) && ( !param->i_width || !param->i_height ) )
+    {
+        Help( &defaults );
+        return -1;
     }
 
     /* open the input */