mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-09 14:14:39 +02: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_WARNING, "Could not update timestamps for discarded samples.\n");
|
||||||
}
|
}
|
||||||
av_log(avctx, AV_LOG_DEBUG, "discard %d/%d 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;
|
frame->nb_samples -= discard_padding;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user