From c64f80b0e85ad138fca300f05278263bd713d27a Mon Sep 17 00:00:00 2001 From: Zohar Kelrich Date: Sun, 24 Jul 2011 11:13:50 +0300 Subject: [PATCH] mpegts: Reset continuity counter on seek Signed-off-by: Zohar Kelrich Signed-off-by: Luca Barbato --- libavformat/mpegts.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c index 13b3117..f3b76aa 100644 --- a/libavformat/mpegts.c +++ b/libavformat/mpegts.c @@ -1625,6 +1625,7 @@ static int mpegts_read_packet(AVFormatContext *s, if (ts->pids[i] && ts->pids[i]->type == MPEGTS_PES) { PESContext *pes = ts->pids[i]->u.pes_filter.opaque; av_freep(&pes->buffer); + ts->pids[i]->last_cc = -1; pes->data_index = 0; pes->state = MPEGTS_SKIP; /* skip until pes header */ } -- 2.7.4