Commit e71c241b authored by hwren's avatar hwren Committed by Michael Niedermayer

lavc/libxavs2: fix parameter setting result determination

Signed-off-by: 's avatarhwren <hwrenx@126.com>
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent e1b89c76
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment