Browse Source

Be less verbose about continuity check errors.

tags/n0.9
Carl Eugen Hoyos 14 years ago
parent
commit
7e75f06182
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/mpegts.c

+ 1
- 1
libavformat/mpegts.c View File

@@ -1327,7 +1327,7 @@ static int handle_packet(MpegTSContext *ts, const uint8_t *packet)


tss->last_cc = cc; tss->last_cc = cc;
if (!cc_ok) { if (!cc_ok) {
av_log(ts->stream, AV_LOG_WARNING,
av_log(ts->stream, AV_LOG_DEBUG,
"Continuity check failed for pid %d expected %d got %d\n", "Continuity check failed for pid %d expected %d got %d\n",
pid, expected_cc, cc); pid, expected_cc, cc);
if(tss->type == MPEGTS_PES) { if(tss->type == MPEGTS_PES) {


Loading…
Cancel
Save