[FFmpeg-cvslog] avformat/mpegts: reset last_version on seeking

Michael Niedermayer git at videolan.org
Wed Apr 29 05:46:40 CEST 2015


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Wed Apr 29 05:00:51 2015 +0200| [639781492684fcad05da52e7700bcbf6086599ea] | committer: Michael Niedermayer

avformat/mpegts: reset last_version on seeking

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

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

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

diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c
index 82c86fc..2caa6c6 100644
--- a/libavformat/mpegts.c
+++ b/libavformat/mpegts.c
@@ -2369,6 +2369,8 @@ static int handle_packets(MpegTSContext *ts, int64_t nb_packets)
                     av_buffer_unref(&pes->buffer);
                     pes->data_index = 0;
                     pes->state = MPEGTS_SKIP; /* skip until pes header */
+                } else if (ts->pids[i]->type == MPEGTS_SECTION) {
+                    ts->pids[i]->u.section_filter.last_ver = -1;
                 }
                 ts->pids[i]->last_cc = -1;
                 ts->pids[i]->last_pcr = -1;



More information about the ffmpeg-cvslog mailing list