diff options
author | wm4 <nfxjfg@googlemail.com> | 2015-04-14 21:24:34 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-04-14 21:45:07 +0200 |
commit | 95f524aff513cbb6af4acb7d88fc52bf50efc349 (patch) | |
tree | 9cd570508afd49a13af1ad3b7595d81f87ea15d8 /libavcodec/utils.c | |
parent | 2b5f34f788d8419c39c9108e1ab1f5fa0d0f3e0d (diff) | |
download | ffmpeg-95f524aff513cbb6af4acb7d88fc52bf50efc349.tar.gz |
lavc: use correct type for printf() argument
This was passing uint32_t for %d.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/utils.c')
-rw-r--r-- | libavcodec/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c index d2b8631c9f..fe435fd893 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -2600,7 +2600,7 @@ int attribute_align_arg avcodec_decode_audio4(AVCodecContext *avctx, av_log(avctx, AV_LOG_WARNING, "Could not update timestamps for discarded samples.\n"); } av_log(avctx, AV_LOG_DEBUG, "discard %d/%d samples\n", - discard_padding, frame->nb_samples); + (int)discard_padding, frame->nb_samples); frame->nb_samples -= discard_padding; } } |