Commit d36cb466 authored by Andreas Rheinhardt's avatar Andreas Rheinhardt

avcodec/libxeve: Use av_dict_iterate()

Signed-off-by: 's avatarAndreas Rheinhardt <andreas.rheinhardt@outlook.com>
parent fbf1e513
......@@ -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",
......
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