diff options
author | Martin Storsjö <martin@martin.st> | 2014-10-06 11:41:33 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2014-10-06 23:30:52 +0300 |
commit | 28816050e47b6dba430a52e429d21a864cffda8e (patch) | |
tree | 901f3de2c6bb7e06d2dd12b84576b71f9362ccff /libavformat/hdsenc.c | |
parent | b76249443864c88ffb2d41ab8d1de7432e985dc7 (diff) | |
download | ffmpeg-28816050e47b6dba430a52e429d21a864cffda8e.tar.gz |
lavf: Set the stream time base hint properly for chained muxers
This avoids warnings about using the codec time base as time
base hint.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/hdsenc.c')
-rw-r--r-- | libavformat/hdsenc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/hdsenc.c b/libavformat/hdsenc.c index 882f157d91..53fef339b8 100644 --- a/libavformat/hdsenc.c +++ b/libavformat/hdsenc.c @@ -398,6 +398,7 @@ static int hds_write_header(AVFormatContext *s) } avcodec_copy_context(st->codec, s->streams[i]->codec); st->sample_aspect_ratio = s->streams[i]->sample_aspect_ratio; + st->time_base = s->streams[i]->time_base; } if (c->streams[c->nb_streams].ctx) c->nb_streams++; |