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/h264_ps.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/h264_ps.c')
-rw-r--r-- | libavcodec/h264_ps.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264_ps.c b/libavcodec/h264_ps.c index f3477c1823..183cc44ea3 100644 --- a/libavcodec/h264_ps.c +++ b/libavcodec/h264_ps.c @@ -495,7 +495,7 @@ int ff_h264_decode_seq_parameter_set(H264Context *h) if (h->avctx->debug & FF_DEBUG_PICT_INFO) { static const char csp[4][5] = { "Gray", "420", "422", "444" }; av_log(h->avctx, AV_LOG_DEBUG, - "sps:%u profile:%d/%d poc:%d ref:%d %dx%d %s %s crop:%u/%u/%u/%u %s %s %d/%d\n", + "sps:%u profile:%d/%d poc:%d ref:%d %dx%d %s %s crop:%u/%u/%u/%u %s %s %"PRId32"/%"PRId32"\n", sps_id, sps->profile_idc, sps->level_idc, sps->poc_type, sps->ref_frame_count, |