Home
last modified time | relevance | path

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

/third_party/ffmpeg/libavcodec/
Dg722.c121 band->pole_mem[1] = av_clip((sg[0] * av_clip(band->pole_mem[0], -8191, 8191) >> 5) + in do_adaptive_prediction()
122 (sg[1] * 128) + (band->pole_mem[1] * 127 >> 7), -12288, 12288); in do_adaptive_prediction()
124 limit = 15360 - band->pole_mem[1]; in do_adaptive_prediction()
125 band->pole_mem[0] = av_clip(-192 * sg[0] + (band->pole_mem[0] * 255 >> 8), -limit, limit); in do_adaptive_prediction()
131 (band->pole_mem[0] * cur_qtzd_reconst >> 15) + in do_adaptive_prediction()
132 (band->pole_mem[1] * band->prev_qtzd_reconst >> 15)); in do_adaptive_prediction()
Dg722.h48 int16_t pole_mem[2]; ///< second-order pole section coefficient buffer member