diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2007-01-24 15:59:58 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2007-01-24 15:59:58 +0000 |
commit | e809d7e50ab6336f077dccb48159741fd0693bc2 (patch) | |
tree | 83566ecddeb5ab96704fe8c49f3ab2313e7c913f /libavformat | |
parent | 01aa1937cf5393e2addb53c723ec6ed94ac7046c (diff) | |
download | ffmpeg-e809d7e50ab6336f077dccb48159741fd0693bc2.tar.gz |
remove some printf warnings
Originally committed as revision 7691 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/mov.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index d1e8a21a33..f088e5c1e6 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -1097,7 +1097,7 @@ static int mov_read_stss(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) 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 @@ static int mov_read_stsz(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) 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) |