mirror of https://git.ffmpeg.org/ffmpeg.git
Merge commit '5e1840622ce6e41c57d9c407604863d3f3dcc3ae'
* commit '5e1840622ce6e41c57d9c407604863d3f3dcc3ae':
avconv: fix handling attachments in init_output_stream
Conflicts:
avconv.c
This is functionally a no-op, as we don't have the bug this is trying to
fix. See 843be56ee1
.
Merged-by: Timothy Gu <timothygu99@gmail.com>
This commit is contained in:
commit
e5c79cd854
2
ffmpeg.c
2
ffmpeg.c
|
@ -2677,7 +2677,7 @@ static int init_output_stream(OutputStream *ost, char *error, int error_len)
|
|||
// copy timebase while removing common factors
|
||||
ost->st->time_base = av_add_q(ost->enc_ctx->time_base, (AVRational){0, 1});
|
||||
ost->st->codec->codec= ost->enc_ctx->codec;
|
||||
} else {
|
||||
} else if (ost->stream_copy) {
|
||||
ret = av_opt_set_dict(ost->st->codec, &ost->encoder_opts);
|
||||
if (ret < 0) {
|
||||
av_log(NULL, AV_LOG_FATAL,
|
||||
|
|
Loading…
Reference in New Issue