diff options
author | Anton Khirnov <anton@khirnov.net> | 2016-05-23 09:29:01 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2016-06-21 12:39:02 +0200 |
commit | 1e93c1e30ff0e8bf6094a426ca60f005e9cdaed3 (patch) | |
tree | 24b695b5f03fcd9b3fc52fa92e0293195b73755b /avconv.c | |
parent | 90944ee3ab79081845ea1bd97eea475031ce0842 (diff) | |
download | ffmpeg-1e93c1e30ff0e8bf6094a426ca60f005e9cdaed3.tar.gz |
avconv: do not set encoder options when streamcopy is used
Diffstat (limited to 'avconv.c')
-rw-r--r-- | avconv.c | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -1735,10 +1735,6 @@ static int init_output_stream(OutputStream *ost, char *error, int error_len) ost->st->time_base = ost->enc_ctx->time_base; } else if (ost->stream_copy) { - ret = av_opt_set_dict(ost->enc_ctx, &ost->encoder_opts); - if (ret < 0) - return ret; - /* * FIXME: will the codec context used by the parser during streamcopy * This should go away with the new parser API. |