Signed-off-by: Andreas Rheinhardt <andreas.rheinha...@outlook.com> --- libavcodec/libxeve.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavcodec/libxeve.c b/libavcodec/libxeve.c index ef1681d397..c923ac1cac 100644 --- a/libavcodec/libxeve.c +++ b/libavcodec/libxeve.c @@ -354,8 +354,8 @@ static av_cold int libxeve_init(AVCodecContext *avctx) } { - AVDictionaryEntry *en = NULL; - while (en = av_dict_get(xectx->xeve_params, "", en, AV_DICT_IGNORE_SUFFIX)) { + const AVDictionaryEntry *en = NULL; + while (en = av_dict_iterate(xectx->xeve_params, en)) { if ((ret = xeve_param_parse(&cdsc->param, en->key, en->value)) < 0) { av_log(avctx, AV_LOG_WARNING, "Error parsing option '%s = %s'.\n", -- 2.40.1 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".