Lines Matching refs:predictor_k
70 int *predictor_k; member
649 s->predictor_k = av_calloc(s->num_taps, sizeof(*s->predictor_k) ); in sonic_encode_init()
650 if (!s->predictor_k) in sonic_encode_init()
705 av_freep(&s->predictor_k); in sonic_encode_close()
774 s->predictor_k, s->num_taps, s->channels, s->tap_quant); in sonic_encode_frame()
776 if ((ret = intlist_write(&c, state, s->predictor_k, s->num_taps, 0)) < 0) in sonic_encode_frame()
942 s->predictor_k = av_calloc(s->num_taps, sizeof(*s->predictor_k)); in sonic_decode_init()
970 av_freep(&s->predictor_k); in sonic_decode_close()
1003 intlist_read(&c, state, s->predictor_k, s->num_taps, 0); in sonic_decode_frame()
1007 s->predictor_k[i] *= s->tap_quant[i]; in sonic_decode_frame()
1023 predictor_init_state(s->predictor_k, s->predictor_state[ch], s->num_taps); in sonic_decode_frame()
1031 … s->int_samples[x] = predictor_calc_error(s->predictor_k, s->predictor_state[ch], s->num_taps, 0); in sonic_decode_frame()
1035 …s->int_samples[x] = predictor_calc_error(s->predictor_k, s->predictor_state[ch], s->num_taps, s->c… in sonic_decode_frame()