Commit f2ba60d4 authored by Rostislav Pehlivanov's avatar Rostislav Pehlivanov

aacenc_tns: temporarily disable

Due to segfaults on some platforms, fix will take a bit longer.
Signed-off-by: 's avatarRostislav Pehlivanov <atomnuker@gmail.com>
parent eb3cfa7d
......@@ -185,6 +185,9 @@ void ff_aac_search_for_tns(AACEncContext *s, SingleChannelElement *sce)
const float freq_mult = mpeg4audio_sample_rates[s->samplerate_index]/(1024.0f/sce->ics.num_windows)/2.0f;
float max_coef = 0.0f;
sce->tns.present = 0;
return;
for (coef_start = 0; coef_start < 1024; coef_start++)
max_coef = FFMAX(max_coef, sce->pcoeffs[coef_start]);
......
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