This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 620e59bbec0698b06539032dde4bafeef0d3e4b0 Author: Michael Niedermayer <[email protected]> AuthorDate: Mon Jun 1 04:39:03 2026 +0200 Commit: michaelni <[email protected]> CommitDate: Tue Jun 2 00:59:38 2026 +0000 avcodec/aac/aacdec: More detailed warning about sample rates Signed-off-by: Michael Niedermayer <[email protected]> --- libavcodec/aac/aacdec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/aac/aacdec.c b/libavcodec/aac/aacdec.c index 73e2457924..7799f73c40 100644 --- a/libavcodec/aac/aacdec.c +++ b/libavcodec/aac/aacdec.c @@ -831,8 +831,8 @@ static int decode_pce(AVCodecContext *avctx, MPEG4AudioConfig *m4ac, sampling_index = get_bits(gb, 4); if (m4ac->sampling_index != sampling_index) av_log(avctx, AV_LOG_WARNING, - "Sample rate index in program config element does not " - "match the sample rate index configured by the container.\n"); + "Sample rate index (%d) in program config element does not " + "match the sample rate index (%d) configured by the container.\n", sampling_index, m4ac->sampling_index); num_front = get_bits(gb, 4); num_side = get_bits(gb, 4); _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
