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

sumover-dev at cs.ucl.ac.uk sumover-dev at cs.ucl.ac.uk
Tue Jul 1 13:19:58 BST 2008


Author: piers
Date: Tue Jul  1 13:19:58 2008
New Revision: 4204

Modified:
   vic/branches/mpeg4/codec/rtp_h264_depayloader.cpp

Log:
Commented debug output during packet handling.
Converted to use debug_msg for final debug display.

Modified: vic/branches/mpeg4/codec/rtp_h264_depayloader.cpp
==============================================================================
--- vic/branches/mpeg4/codec/rtp_h264_depayloader.cpp	(original)
+++ vic/branches/mpeg4/codec/rtp_h264_depayloader.cpp	Tue Jul  1 13:19:58 2008
@@ -306,7 +306,7 @@
     assert(data->cookie == MAGIC_COOKIE);
     assert(buf);
 
-    fprintf(stderr, /*NULL, AV_LOG_ERROR,*/ "H264_RTP: Single NAL type (%d, equiv. to >=1 or <=23), len=%4d\n", type, len);
+    //fprintf(stderr, /*NULL, AV_LOG_ERROR,*/ "H264_RTP: Single NAL type (%d, equiv. to >=1 or <=23), len=%4d\n", type, len);
 
     if (buf[0]==0x02 && buf[1]==0x5d && buf[2]==0x47){
       type=99; // IOCOM's non-standard H.264 packet format
@@ -536,7 +536,7 @@
 
     for (ii = 0; ii < 32; ii++) {
         if (data->packet_types_received[ii])
-            fprintf(stderr, /*NULL, AV_LOG_DEBUG,*/ "Received %d packets of type %d\n",
+            debug_msg(/*NULL, AV_LOG_DEBUG,*/ "Received %d packets of type %d\n",
                    data->packet_types_received[ii], ii);
     }
 #endif



More information about the Sumover-dev mailing list