Commit c6d3b3be authored by Michael Niedermayer's avatar Michael Niedermayer

aacsbr: Silence warning: max_qmf_subbands may be used uninitialized in this function

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent e907aa98
......@@ -399,6 +399,8 @@ static int sbr_make_f_master(AACContext *ac, SpectralBandReplication *sbr,
max_qmf_subbands = 35;
} else if (sbr->sample_rate >= 48000)
max_qmf_subbands = 32;
else
av_assert0(0);
if (sbr->k[2] - sbr->k[0] > max_qmf_subbands) {
av_log(ac->avctx, AV_LOG_ERROR,
......
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