mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
mpegts: improve error reporting
When reporting continuity error show pid, expected and received cc. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
This commit is contained in:
parent
162f1fbc14
commit
f1f15c3c1a
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user