[FFmpeg-devel] [PATCH v2 04/31] avcodec/librav1e: remove unnecessary variable

Marvin Scholz epirat07 at gmail.com
Sat Nov 26 16:46:21 EET 2022


---
 libavcodec/librav1e.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/libavcodec/librav1e.c b/libavcodec/librav1e.c
index f48d5e0eb4..3481b7637d 100644
--- a/libavcodec/librav1e.c
+++ b/libavcodec/librav1e.c
@@ -245,8 +245,7 @@ static av_cold int librav1e_encode_init(AVCodecContext *avctx)
     {
         const AVDictionaryEntry *en = NULL;
         while ((en = av_dict_iterate(ctx->rav1e_opts, en))) {
-            int parse_ret = rav1e_config_parse(cfg, en->key, en->value);
-            if (parse_ret < 0)
+            if (rav1e_config_parse(cfg, en->key, en->value) < 0)
                 av_log(avctx, AV_LOG_WARNING, "Invalid value for %s: %s.\n", en->key, en->value);
         }
     }
-- 
2.37.0 (Apple Git-136)



More information about the ffmpeg-devel mailing list