[FFmpeg-cvslog] mpegts: Reset continuity counter on seek

Zohar Kelrich git at videolan.org
Tue Aug 2 22:24:35 CEST 2011


ffmpeg | branch: master | Zohar Kelrich <lumimies at gmail.com> | Sun Jul 24 11:13:50 2011 +0300| [c64f80b0e85ad138fca300f05278263bd713d27a] | committer: Luca Barbato

mpegts: Reset continuity counter on seek

Signed-off-by: Zohar Kelrich <lumimies at gmail.com>
Signed-off-by: Luca Barbato <lu_zero at gentoo.org>

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

 libavformat/mpegts.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

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 */
             }



More information about the ffmpeg-cvslog mailing list