[FFmpeg-cvslog] r13424 - trunk/libavformat/ffmdec.c

bcoudurier subversion
Mon May 26 06:38:46 CEST 2008


Author: bcoudurier
Date: Mon May 26 06:38:46 2008
New Revision: 13424

Log:
use av_hex_dump_log

Modified:
   trunk/libavformat/ffmdec.c

Modified: trunk/libavformat/ffmdec.c
==============================================================================
--- trunk/libavformat/ffmdec.c	(original)
+++ trunk/libavformat/ffmdec.c	Mon May 26 06:38:46 2008
@@ -370,12 +370,7 @@ static int ffm_read_packet(AVFormatConte
             FRAME_HEADER_SIZE)
             return AVERROR(EAGAIN);
 #if 0
-        {
-            int i;
-            for(i=0;i<FRAME_HEADER_SIZE;i++)
-                printf("%02x ", ffm->header[i]);
-            printf("\n");
-        }
+        av_hexdump_log(s, AV_LOG_DEBUG, ffm->header, FRAME_HEADER_SIZE);
 #endif
         ffm->read_state = READ_DATA;
         /* fall thru */




More information about the ffmpeg-cvslog mailing list