[Sumover-dev] [svn commit] r4451 - vic/branches/mpeg4/codec

sumover-dev at cs.ucl.ac.uk sumover-dev at cs.ucl.ac.uk
Thu Jun 4 12:01:06 BST 2009


Author: piers
Date: Thu Jun  4 12:01:05 2009
New Revision: 4451

Modified:
   vic/branches/mpeg4/codec/decoder-h264.cpp

Log:
Changed printf() to debug_msg() - The warning can inundate the user when there are problems with the network.

Modified: vic/branches/mpeg4/codec/decoder-h264.cpp
==============================================================================
--- vic/branches/mpeg4/codec/decoder-h264.cpp	(original)
+++ vic/branches/mpeg4/codec/decoder-h264.cpp	Thu Jun  4 12:01:05 2009
@@ -216,13 +216,13 @@
     }
 
     if (abs(seq - last_seq) > 5) {
-	    fprintf(stderr, "H264_RTP: sequece interrupt!\n");
+	    debug_msg("H264_RTP: sequece interrupt!\n");
 	    idx = seq;
 	    pktIdx = 0;
 	    stream->clear();
     }else if (last_seq + 1 != seq) {
 	    // oops - missing packet
-	    fprintf(stderr, "H264_RTP: missing packet\n");
+	    debug_msg("H264_RTP: missing packet\n");
     }
 
     //===================================================



More information about the Sumover-dev mailing list