Commit 84417593 authored by dsmudhar's avatar dsmudhar Committed by Michael Niedermayer

libavcodec/cfhd: fixed wrong printf format

Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 5836a503
...@@ -343,7 +343,7 @@ static int cfhd_decode(AVCodecContext *avctx, void *data, int *got_frame, ...@@ -343,7 +343,7 @@ static int cfhd_decode(AVCodecContext *avctx, void *data, int *got_frame,
} }
av_log(avctx, AV_LOG_DEBUG, "Transform-type? %"PRIu16"\n", data); av_log(avctx, AV_LOG_DEBUG, "Transform-type? %"PRIu16"\n", data);
} else if (abstag >= 0x4000 && abstag <= 0x40ff) { } else if (abstag >= 0x4000 && abstag <= 0x40ff) {
av_log(avctx, AV_LOG_DEBUG, "Small chunk length %"PRIu16" %s\n", data * 4, tag < 0 ? "optional" : "required"); av_log(avctx, AV_LOG_DEBUG, "Small chunk length %d %s\n", data * 4, tag < 0 ? "optional" : "required");
bytestream2_skipu(&gb, data * 4); bytestream2_skipu(&gb, data * 4);
} else if (tag == 23) { } else if (tag == 23) {
av_log(avctx, AV_LOG_DEBUG, "Skip frame\n"); av_log(avctx, AV_LOG_DEBUG, "Skip frame\n");
...@@ -469,7 +469,7 @@ static int cfhd_decode(AVCodecContext *avctx, void *data, int *got_frame, ...@@ -469,7 +469,7 @@ static int cfhd_decode(AVCodecContext *avctx, void *data, int *got_frame,
goto end; goto end;
} }
av_log(avctx, AV_LOG_DEBUG, "Start of lowpass coeffs component %"PRIu16" height:%d, width:%d\n", s->channel_num, lowpass_height, lowpass_width); av_log(avctx, AV_LOG_DEBUG, "Start of lowpass coeffs component %d height:%d, width:%d\n", s->channel_num, lowpass_height, lowpass_width);
for (i = 0; i < lowpass_height; i++) { for (i = 0; i < lowpass_height; i++) {
for (j = 0; j < lowpass_width; j++) for (j = 0; j < lowpass_width; j++)
coeff_data[j] = bytestream2_get_be16u(&gb); coeff_data[j] = bytestream2_get_be16u(&gb);
...@@ -487,7 +487,7 @@ static int cfhd_decode(AVCodecContext *avctx, void *data, int *got_frame, ...@@ -487,7 +487,7 @@ static int cfhd_decode(AVCodecContext *avctx, void *data, int *got_frame,
lowpass_width * sizeof(*coeff_data)); lowpass_width * sizeof(*coeff_data));
} }
av_log(avctx, AV_LOG_DEBUG, "Lowpass coefficients %"PRIu16"\n", lowpass_width * lowpass_height); av_log(avctx, AV_LOG_DEBUG, "Lowpass coefficients %d\n", lowpass_width * lowpass_height);
} }
if (tag == 55 && s->subband_num_actual != 255 && s->a_width && s->a_height) { if (tag == 55 && s->subband_num_actual != 255 && s->a_width && s->a_height) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment