summaryrefslogtreecommitdiffstats
path: root/libavcodec/dvdec.c
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2017-03-24 13:29:45 +0100
committerClément Bœsch <u@pkh.me>2017-03-24 13:34:39 +0100
commit46f4f8ad865d4e4d867d14edb44a656318951ec1 (patch)
tree0e85a99befbcfc982b98ebc3ac994fbbdd470ec0 /libavcodec/dvdec.c
parent1436769c57cc6e5209609073e5fd60776a293669 (diff)
parent1263b2039eb5aaf1522e9de9f07c787ab30a5f50 (diff)
downloadffmpeg-streaming-46f4f8ad865d4e4d867d14edb44a656318951ec1.zip
ffmpeg-streaming-46f4f8ad865d4e4d867d14edb44a656318951ec1.tar.gz
Merge commit '1263b2039eb5aaf1522e9de9f07c787ab30a5f50'
* commit '1263b2039eb5aaf1522e9de9f07c787ab30a5f50': Adjust printf conversion specifiers to match variable signedness Merged-by: Clément Bœsch <u@pkh.me>
Diffstat (limited to 'libavcodec/dvdec.c')
-rw-r--r--libavcodec/dvdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dvdec.c b/libavcodec/dvdec.c
index d71a660..a8d7a07 100644
--- a/libavcodec/dvdec.c
+++ b/libavcodec/dvdec.c
@@ -222,7 +222,7 @@ static void dv_decode_ac(GetBitContext *gb, BlockInfo *mb, int16_t *block)
/* get the AC coefficients until last_index is reached */
for (;;) {
- ff_dlog(NULL, "%2d: bits=%04x index=%d\n", pos, SHOW_UBITS(re, gb, 16),
+ ff_dlog(NULL, "%2d: bits=%04x index=%u\n", pos, SHOW_UBITS(re, gb, 16),
re_index);
/* our own optimized GET_RL_VLC */
index = NEG_USR32(re_cache, TEX_VLC_BITS);
OpenPOWER on IntegriCloud