summaryrefslogtreecommitdiff
path: root/libavcodec/wmadec.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2012-10-01 12:46:41 +0200
committerDiego Biurrun <diego@biurrun.de>2012-10-01 12:46:41 +0200
commitd25fe4cc65b66311b10de5e097cecd56409896ce (patch)
tree5973ef1e4281e5c55a5f0a26304b5a781212f084 /libavcodec/wmadec.c
parent1218777ffd152287244349d4ff9e1cbc84fa2c54 (diff)
wmadec: Adjust debug printf argument length modifier
Diffstat (limited to 'libavcodec/wmadec.c')
-rw-r--r--libavcodec/wmadec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/wmadec.c b/libavcodec/wmadec.c
index 1f9ab61969..79401e21b6 100644
--- a/libavcodec/wmadec.c
+++ b/libavcodec/wmadec.c
@@ -913,7 +913,7 @@ static int wma_decode_superframe(AVCodecContext *avctx, void *data,
samples += s->nb_channels * s->frame_len;
}
- av_dlog(s->avctx, "%d %d %d %d outbytes:%d eaten:%d\n",
+ av_dlog(s->avctx, "%d %d %d %d outbytes:%td eaten:%d\n",
s->frame_len_bits, s->block_len_bits, s->frame_len, s->block_len,
(int8_t *)samples - (int8_t *)data, s->block_align);