summaryrefslogtreecommitdiff
path: root/libavformat/hls.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-03-07 13:42:12 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-03-07 13:42:12 +0100
commita12a618aa9c6d84ec3c01695fb5aec9796453a6d (patch)
tree22fe3007bf27a8f356a055811f89fce1ed9e12be /libavformat/hls.c
parent8cc5481d51bf746d9d43348af711dbf201bf336a (diff)
hls: fix timebase
Fixes Ticket1733 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/hls.c')
-rw-r--r--libavformat/hls.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/hls.c b/libavformat/hls.c
index 4e7af90f33..7de6059c5a 100644
--- a/libavformat/hls.c
+++ b/libavformat/hls.c
@@ -590,12 +590,14 @@ static int hls_read_header(AVFormatContext *s)
/* Create new AVStreams for each stream in this variant */
for (j = 0; j < v->ctx->nb_streams; j++) {
AVStream *st = avformat_new_stream(s, NULL);
+ AVStream *ist = v->ctx->streams[j];
if (!st) {
ret = AVERROR(ENOMEM);
goto fail;
}
ff_program_add_stream_index(s, i, stream_offset + j);
st->id = i;
+ avpriv_set_pts_info(st, ist->pts_wrap_bits, ist->time_base.num, ist->time_base.den);
avcodec_copy_context(st->codec, v->ctx->streams[j]->codec);
if (v->bandwidth)
av_dict_set(&st->metadata, "variant_bitrate", bitrate_str,