From f1f15c3c1a813c86e669aeb58a07c10d9cc21893 Mon Sep 17 00:00:00 2001 From: Georgi Chorbadzhiyski Date: Thu, 8 Sep 2011 20:38:48 +0300 Subject: [PATCH] mpegts: improve error reporting When reporting continuity error show pid, expected and received cc. Signed-off-by: Luca Barbato --- libavformat/mpegts.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c index 41a685c2bb..16f69328a0 100644 --- a/libavformat/mpegts.c +++ b/libavformat/mpegts.c @@ -1292,7 +1292,9 @@ static int handle_packet(MpegTSContext *ts, const uint8_t *packet) tss->last_cc = cc; if (!cc_ok) { - av_log(ts->stream, AV_LOG_WARNING, "Continuity Check Failed\n"); + av_log(ts->stream, AV_LOG_WARNING, + "Continuity check failed for pid %d expected %d got %d\n", + pid, expected_cc, cc); if(tss->type == MPEGTS_PES) { PESContext *pc = tss->u.pes_filter.opaque; pc->flags |= AV_PKT_FLAG_CORRUPT;