[MPlayer-cvslog] r31365 - trunk/libmpcodecs/ve_x264.c

tack subversion at mplayerhq.hu
Thu Jun 10 23:58:03 CEST 2010


Author: tack
Date: Thu Jun 10 23:58:03 2010
New Revision: 31365

Log:
Cosmetics: properly indent block after introducing if statement in r31363.

Modified:
   trunk/libmpcodecs/ve_x264.c

Modified: trunk/libmpcodecs/ve_x264.c
==============================================================================
--- trunk/libmpcodecs/ve_x264.c	Thu Jun 10 23:49:59 2010	(r31364)
+++ trunk/libmpcodecs/ve_x264.c	Thu Jun 10 23:58:03 2010	(r31365)
@@ -116,11 +116,12 @@ void x264enc_set_param(const m_option_t*
         } else if (!strcasecmp(name, "slow_firstpass"))
             slow_firstpass = 1;
         else if (strcasecmp(name, "preset") && strcasecmp(name, "tune")) {
-        ret = x264_param_parse(&param, name, value);
-        if(ret == X264_PARAM_BAD_NAME)
-	    mp_msg(MSGT_CFGPARSER, MSGL_ERR, "Option x264encopts: Unknown suboption %s\n", name);
-        if(ret == X264_PARAM_BAD_VALUE)
-	    mp_msg(MSGT_CFGPARSER, MSGL_ERR, "Option x264encopts: Bad argument %s=%s\n", name, value ? value : "(null)");
+            ret = x264_param_parse(&param, name, value);
+            if (ret == X264_PARAM_BAD_NAME)
+                mp_msg(MSGT_CFGPARSER, MSGL_ERR, "Option x264encopts: Unknown suboption %s\n", name);
+            if (ret == X264_PARAM_BAD_VALUE)
+                mp_msg(MSGT_CFGPARSER, MSGL_ERR, "Option x264encopts: Bad argument %s=%s\n",
+                       name, value ? value : "(null)");
 
         }
         /* mark this option as done, so it's not reparsed if there's another -x264encopts */


More information about the MPlayer-cvslog mailing list