[Ffmpeg-cvslog] r7691 - trunk/libavformat/mov.c

bcoudurier subversion
Wed Jan 24 16:59:58 CET 2007


Author: bcoudurier
Date: Wed Jan 24 16:59:58 2007
New Revision: 7691

Modified:
   trunk/libavformat/mov.c

Log:
remove some printf warnings

Modified: trunk/libavformat/mov.c
==============================================================================
--- trunk/libavformat/mov.c	(original)
+++ trunk/libavformat/mov.c	Wed Jan 24 16:59:58 2007
@@ -1097,7 +1097,7 @@
 
     sc->keyframe_count = entries;
 #ifdef DEBUG
-    av_log(NULL, AV_LOG_DEBUG, "keyframe_count = %ld\n", sc->keyframe_count);
+    av_log(NULL, AV_LOG_DEBUG, "keyframe_count = %d\n", sc->keyframe_count);
 #endif
     sc->keyframes = av_malloc(entries * sizeof(long));
     if (!sc->keyframes)
@@ -1132,7 +1132,7 @@
         return 0;
 
 #ifdef DEBUG
-    av_log(NULL, AV_LOG_DEBUG, "sample_size = %ld sample_count = %ld\n", sc->sample_size, sc->sample_count);
+    av_log(NULL, AV_LOG_DEBUG, "sample_size = %d sample_count = %d\n", sc->sample_size, sc->sample_count);
 #endif
     sc->sample_sizes = av_malloc(entries * sizeof(long));
     if (!sc->sample_sizes)




More information about the ffmpeg-cvslog mailing list