mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
aacdec: correct "audio config changed" warning message
Idea-by: Reimar Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
d039b6074c
commit
acdf9a6ca5
@ -2665,7 +2665,11 @@ static int latm_decode_audio_specific_config(struct LATMContext *latmctx,
|
||||
ac->oc[1].m4ac.sample_rate != m4ac.sample_rate ||
|
||||
ac->oc[1].m4ac.chan_config != m4ac.chan_config) {
|
||||
|
||||
av_log(avctx, AV_LOG_INFO, "audio config changed\n");
|
||||
if(latmctx->initialized) {
|
||||
av_log(avctx, AV_LOG_INFO, "audio config changed\n");
|
||||
} else {
|
||||
av_log(avctx, AV_LOG_INFO, "initializing latmctx\n");
|
||||
}
|
||||
latmctx->initialized = 0;
|
||||
|
||||
esize = (bits_consumed+7) / 8;
|
||||
|
Loading…
Reference in New Issue
Block a user