diff options
author | Anton Khirnov <anton@khirnov.net> | 2014-04-04 19:38:04 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2014-05-03 21:44:24 +0200 |
commit | 9580818c5d934bde65a95efd2cee61c174721092 (patch) | |
tree | 33ca5dfd65eda19fb2d635cda0674ac47d02581b /avconv_opt.c | |
parent | 01947f07b81a57fb1e15114b710f6d5ae4f70a11 (diff) | |
download | ffmpeg-9580818c5d934bde65a95efd2cee61c174721092.tar.gz |
avconv: rename OutputStream.opts to OutputStream.encoder_opts
This makes it more clear what is this variable for exactly.
Diffstat (limited to 'avconv_opt.c')
-rw-r--r-- | avconv_opt.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/avconv_opt.c b/avconv_opt.c index 22f598e9fd..f400e75cd7 100644 --- a/avconv_opt.c +++ b/avconv_opt.c @@ -894,7 +894,7 @@ static OutputStream *new_output_stream(OptionsContext *o, AVFormatContext *oc, e AVIOContext *s = NULL; char *buf = NULL, *arg = NULL, *preset = NULL; - ost->opts = filter_codec_opts(o->g->codec_opts, ost->enc->id, oc, st, ost->enc); + ost->encoder_opts = filter_codec_opts(o->g->codec_opts, ost->enc->id, oc, st, ost->enc); MATCH_PER_STREAM_OPT(presets, str, preset, oc, st); if (preset && (!(ret = get_preset_file_2(preset, ost->enc->name, &s)))) { @@ -909,7 +909,7 @@ static OutputStream *new_output_stream(OptionsContext *o, AVFormatContext *oc, e exit_program(1); } *arg++ = 0; - av_dict_set(&ost->opts, buf, arg, AV_DICT_DONT_OVERWRITE); + av_dict_set(&ost->encoder_opts, buf, arg, AV_DICT_DONT_OVERWRITE); av_free(buf); } while (!s->eof_reached); avio_close(s); @@ -921,7 +921,7 @@ static OutputStream *new_output_stream(OptionsContext *o, AVFormatContext *oc, e exit_program(1); } } else { - ost->opts = filter_codec_opts(o->g->codec_opts, AV_CODEC_ID_NONE, oc, st, NULL); + ost->encoder_opts = filter_codec_opts(o->g->codec_opts, AV_CODEC_ID_NONE, oc, st, NULL); } avcodec_get_context_defaults3(st->codec, ost->enc); @@ -1565,7 +1565,7 @@ loop_end: unused_opts = strip_specifiers(o->g->codec_opts); for (i = of->ost_index; i < nb_output_streams; i++) { e = NULL; - while ((e = av_dict_get(output_streams[i]->opts, "", e, + while ((e = av_dict_get(output_streams[i]->encoder_opts, "", e, AV_DICT_IGNORE_SUFFIX))) av_dict_set(&unused_opts, e->key, NULL, 0); } |