lavu/opt: prefer if(){}else{} over if()else{} construct

Improve consistency.
This commit is contained in:
Stefano Sabatini 2012-11-02 15:55:42 +01:00
parent 481fdeeecf
commit ca11f6b240
1 changed files with 2 additions and 2 deletions

View File

@ -265,9 +265,9 @@ int av_opt_set(void *obj, const char *name, const char *val, int search_flags)
av_log(obj, AV_LOG_ERROR, "Unable to parse option value \"%s\" as image size\n", val);
return ret;
case AV_OPT_TYPE_PIXEL_FMT:
if (!val || !strcmp(val, "none"))
if (!val || !strcmp(val, "none")) {
ret = AV_PIX_FMT_NONE;
else {
} else {
ret = av_get_pix_fmt(val);
if (ret == AV_PIX_FMT_NONE) {
char *tail;