Home
last modified time | relevance | path

Searched refs:step_scale (Results 1 – 1 of 1) sorted by relevance

/third_party/ffmpeg/libavcodec/
Ddca_core.h229 int64_t step_scale = (int64_t)step_size * scale; in ff_dca_core_dequantize() local
233 if (step_scale > (1 << 23)) { in ff_dca_core_dequantize()
234 shift = av_log2(step_scale >> 23) + 1; in ff_dca_core_dequantize()
235 step_scale >>= shift; in ff_dca_core_dequantize()
241 output[n] += clip23(norm__(input[n] * step_scale, 22 - shift)); in ff_dca_core_dequantize()
244 output[n] = clip23(norm__(input[n] * step_scale, 22 - shift)); in ff_dca_core_dequantize()