Browse Source

lavc/libxavs2: fix parameter setting result determination

Signed-off-by: hwren <hwrenx@126.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n4.3
hwren Michael Niedermayer 6 years ago
parent
commit
e71c241bea
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/libxavs2.c

+ 1
- 1
libavcodec/libxavs2.c View File

@@ -31,7 +31,7 @@
int err; \
av_strlcatf(opt_str, sizeof(opt_str), format, __VA_ARGS__); \
err = cae->api->opt_set2(cae->param, name, opt_str); \
if (err) {\
if (err < 0) {\
av_log(avctx, AV_LOG_WARNING, "Invalid value for %s: %s\n", name, opt_str);\
}\
} while(0);


Loading…
Cancel
Save