diff options
author | Marvin Scholz <epirat07@gmail.com> | 2024-09-08 19:58:16 +0200 |
---|---|---|
committer | Marvin Scholz <epirat07@gmail.com> | 2024-09-13 00:20:12 +0200 |
commit | 4c6d07dd286562a78ac0c74a68bdb85a8e218423 (patch) | |
tree | 995cb1d58cfa8c37ae76e79a751241b9032ad799 | |
parent | bbde886b6373795c304506e1692a9851acdd1ea1 (diff) | |
download | ffmpeg-4c6d07dd286562a78ac0c74a68bdb85a8e218423.tar.gz |
fftools/cmdutils: fix variable shadowing
-rw-r--r-- | fftools/cmdutils.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fftools/cmdutils.c b/fftools/cmdutils.c index f725c31c12..a9a7ff4194 100644 --- a/fftools/cmdutils.c +++ b/fftools/cmdutils.c @@ -802,7 +802,7 @@ int split_commandline(OptionParseContext *octx, int argc, char *argv[], while (optindex < argc) { const char *opt = argv[optindex++], *arg; const OptionDef *po; - int ret, group_idx; + int group_idx; av_log(NULL, AV_LOG_DEBUG, "Reading option '%s' ...", opt); @@ -1366,7 +1366,7 @@ int filter_codec_opts(const AVDictionary *opts, enum AVCodecID codec_id, } int setup_find_stream_info_opts(AVFormatContext *s, - AVDictionary *codec_opts, + AVDictionary *local_codec_opts, AVDictionary ***dst) { int ret; @@ -1382,7 +1382,7 @@ int setup_find_stream_info_opts(AVFormatContext *s, return AVERROR(ENOMEM); for (int i = 0; i < s->nb_streams; i++) { - ret = filter_codec_opts(codec_opts, s->streams[i]->codecpar->codec_id, + ret = filter_codec_opts(local_codec_opts, s->streams[i]->codecpar->codec_id, s, s->streams[i], NULL, &opts[i], NULL); if (ret < 0) goto fail; |