Mercurial > libavformat.hg
changeset 1734:fc243e5a290e libavformat
remove some printf warnings
author | bcoudurier |
---|---|
date | Wed, 24 Jan 2007 15:59:58 +0000 |
parents | 377e4b1a4439 |
children | 1b19ef7c2ec0 |
files | mov.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/mov.c Wed Jan 24 15:57:41 2007 +0000 +++ b/mov.c Wed Jan 24 15:59:58 2007 +0000 @@ -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)