mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2025-01-08 12:21:07 +00:00
lavc: use correct type for printf() argument
This was passing uint32_t for %d. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
2b5f34f788
commit
95f524aff5
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user