Commit 95f524af authored by wm4's avatar wm4 Committed by Michael Niedermayer

lavc: use correct type for printf() argument

This was passing uint32_t for %d.
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 2b5f34f7
......@@ -2600,7 +2600,7 @@ int attribute_align_arg avcodec_decode_audio4(AVCodecContext *avctx,
av_log(avctx, AV_LOG_WARNING, "Could not update timestamps for discarded samples.\n");
}
av_log(avctx, AV_LOG_DEBUG, "discard %d/%d samples\n",
discard_padding, frame->nb_samples);
(int)discard_padding, frame->nb_samples);
frame->nb_samples -= discard_padding;
}
}
......
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