diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-04-01 18:19:59 +0000 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-04-02 00:27:22 +0200 |
commit | cba4e6062a02d5bf684e13a770be88aa1fec717e (patch) | |
tree | cf0ecd5a96c69be36b166d68356c64f637893fbd /libavcodec/utvideodec.c | |
parent | 80035db88c1f7cc23110c7472a2b13a4d2d8b73e (diff) | |
download | ffmpeg-cba4e6062a02d5bf684e13a770be88aa1fec717e.tar.gz |
More correct printf format specifiers
This avoids compiler warnings about argument and specifier type mismatch.
Diffstat (limited to 'libavcodec/utvideodec.c')
-rw-r--r-- | libavcodec/utvideodec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/utvideodec.c b/libavcodec/utvideodec.c index 41d5344815..f066e1feb8 100644 --- a/libavcodec/utvideodec.c +++ b/libavcodec/utvideodec.c @@ -487,7 +487,7 @@ static av_cold int decode_init(AVCodecContext *avctx) av_log(avctx, AV_LOG_DEBUG, "Encoder version %d.%d.%d.%d\n", avctx->extradata[3], avctx->extradata[2], avctx->extradata[1], avctx->extradata[0]); - av_log(avctx, AV_LOG_DEBUG, "Original format %X\n", + av_log(avctx, AV_LOG_DEBUG, "Original format %"PRIX32"\n", AV_RB32(avctx->extradata + 4)); c->frame_info_size = AV_RL32(avctx->extradata + 8); c->flags = AV_RL32(avctx->extradata + 12); |