[FFmpeg-cvslog] hls: fix timebase

Michael Niedermayer git at videolan.org
Thu Mar 7 19:55:28 CET 2013


ffmpeg | branch: release/1.0 | Michael Niedermayer <michaelni at gmx.at> | Thu Mar  7 13:42:12 2013 +0100| [16ac9edc2f0e9b1e5eaaeb39290d93b4501541b1] | committer: Carl Eugen Hoyos

hls: fix timebase

Fixes Ticket1733

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
(cherry picked from commit a12a618aa9c6d84ec3c01695fb5aec9796453a6d)

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=16ac9edc2f0e9b1e5eaaeb39290d93b4501541b1
---

 libavformat/hls.c |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/libavformat/hls.c b/libavformat/hls.c
index 00c3cf0..065a759 100644
--- a/libavformat/hls.c
+++ b/libavformat/hls.c
@@ -536,11 +536,13 @@ 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;
             }
             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,



More information about the ffmpeg-cvslog mailing list