[FFmpeg-devel] [PATCH 1/3] lavc/libxavs2: fix parameter setting result determination
hwren
hwrenx at 126.com
Sat Oct 12 04:28:32 EEST 2019
From: hwrenx <hwrenx at 126.com>
Signed-off-by: hwrenx <hwrenx at 126.com>
---
libavcodec/libxavs2.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/libxavs2.c b/libavcodec/libxavs2.c
index d5c4557..0179a1e 100644
--- a/libavcodec/libxavs2.c
+++ b/libavcodec/libxavs2.c
@@ -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);
--
2.7.4
More information about the ffmpeg-devel
mailing list