Commit 5f760da6 authored by Rostislav Pehlivanov's avatar Rostislav Pehlivanov

aacenc_utils: add 'inline' flag to find_form_factor, silence warning

Seems it was forgotten.
parent 224a529b
......@@ -96,7 +96,7 @@ static inline int find_min_book(float maxval, int sf)
return cb;
}
static float find_form_factor(int group_len, int swb_size, float thresh, const float *scaled, float nzslope) {
static inline float find_form_factor(int group_len, int swb_size, float thresh, const float *scaled, float nzslope) {
const float iswb_size = 1.0f / swb_size;
const float iswb_sizem1 = 1.0f / (swb_size - 1);
const float ethresh = thresh;
......
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