# HG changeset patch # User tack # Date 1276207083 0 # Node ID 34507085a8415d2bd62e5bb2a07c91c1cb9b82e6 # Parent 4afc7cdeb900dbf289a93226ddaab1620c7e93ee Cosmetics: properly indent block after introducing if statement in r31363. diff -r 4afc7cdeb900 -r 34507085a841 libmpcodecs/ve_x264.c --- a/libmpcodecs/ve_x264.c Thu Jun 10 21:49:59 2010 +0000 +++ b/libmpcodecs/ve_x264.c Thu Jun 10 21:58:03 2010 +0000 @@ -116,11 +116,12 @@ } else if (!strcasecmp(name, "slow_firstpass")) slow_firstpass = 1; else if (strcasecmp(name, "preset") && strcasecmp(name, "tune")) { - ret = x264_param_parse(¶m, 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(¶m, 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 */