]> git.sesse.net Git - ffmpeg/commitdiff
Be less verbose about continuity check errors.
authorCarl Eugen Hoyos <cehoyos@ag.or.at>
Sun, 9 Oct 2011 20:47:35 +0000 (22:47 +0200)
committerCarl Eugen Hoyos <cehoyos@ag.or.at>
Sun, 9 Oct 2011 20:47:35 +0000 (22:47 +0200)
libavformat/mpegts.c

index 02f0d56e5a748dcc6a92ebf4085a2c7962781ce1..7b4771b4e9a9b0a1ea7055caf39dbcfd965f951c 100644 (file)
@@ -1327,7 +1327,7 @@ static int handle_packet(MpegTSContext *ts, const uint8_t *packet)
 
     tss->last_cc = cc;
     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",
                pid, expected_cc, cc);
         if(tss->type == MPEGTS_PES) {