You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avfilter/avfilter: Fix indentation
Forgotten after fdd93eabfb
.
Reviewed-by: Nicolas George <george@nsup.org>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
This commit is contained in:
@@ -857,17 +857,17 @@ static int process_options(AVFilterContext *ctx, AVDictionary **options,
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
av_dict_set(options, key, value, 0);
|
av_dict_set(options, key, value, 0);
|
||||||
if ((ret = av_opt_set(ctx->priv, key, value, AV_OPT_SEARCH_CHILDREN)) < 0) {
|
if ((ret = av_opt_set(ctx->priv, key, value, AV_OPT_SEARCH_CHILDREN)) < 0) {
|
||||||
if (!av_opt_find(ctx->priv, key, NULL, 0, AV_OPT_SEARCH_CHILDREN | AV_OPT_SEARCH_FAKE_OBJ)) {
|
if (!av_opt_find(ctx->priv, key, NULL, 0, AV_OPT_SEARCH_CHILDREN | AV_OPT_SEARCH_FAKE_OBJ)) {
|
||||||
if (ret == AVERROR_OPTION_NOT_FOUND)
|
if (ret == AVERROR_OPTION_NOT_FOUND)
|
||||||
av_log(ctx, AV_LOG_ERROR, "Option '%s' not found\n", key);
|
av_log(ctx, AV_LOG_ERROR, "Option '%s' not found\n", key);
|
||||||
av_free(value);
|
av_free(value);
|
||||||
av_free(parsed_key);
|
av_free(parsed_key);
|
||||||
return ret;
|
return ret;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
av_free(value);
|
av_free(value);
|
||||||
av_free(parsed_key);
|
av_free(parsed_key);
|
||||||
|
Reference in New Issue
Block a user