diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-03-08 22:39:14 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-04-03 16:40:11 +0200 |
commit | 512f973eac9a8c38ca33f089b6f3bb433ffc6a2e (patch) | |
tree | 4e60d3fae2b6c19537b9efe6ac1fe777c0ae011f | |
parent | 5b56ad03fa3c580e38322c902891a77ecc93686b (diff) | |
download | ffmpeg-512f973eac9a8c38ca33f089b6f3bb433ffc6a2e.tar.gz |
Fix issue2437
-rw-r--r-- | libavformat/utils.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index c19238ea74..c4e57f66d8 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -2016,6 +2016,7 @@ static void av_estimate_timings_from_pts(AVFormatContext *ic, int64_t old_offset st= ic->streams[i]; st->cur_dts= st->first_dts; st->last_IP_pts = AV_NOPTS_VALUE; + st->reference_dts = AV_NOPTS_VALUE; } } |