From 106fa129f498c93f9639a09d186c2223abe2b2c0 Mon Sep 17 00:00:00 2001 From: John Stebbins Date: Sat, 12 Dec 2009 15:26:33 +0000 Subject: [PATCH] Reset pts_buffers in av_read_frame_flush(). Patch by John Stebbins, jstebbins jetheaddev com Originally committed as revision 20806 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/utils.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libavformat/utils.c b/libavformat/utils.c index 98f670d48..af9ec2556 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -1177,7 +1177,7 @@ int av_find_default_stream_index(AVFormatContext *s) void av_read_frame_flush(AVFormatContext *s) { AVStream *st; - int i; + int i, j; flush_packet_queue(s); @@ -1200,6 +1200,9 @@ void av_read_frame_flush(AVFormatContext *s) st->cur_len = 0; st->probe_packets = MAX_PROBE_PACKETS; + + for(j=0; jpts_buffer[j]= AV_NOPTS_VALUE; } } -- 2.11.0