Searched refs:predictor_k (Results 1 – 1 of 1) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | sonic.c | 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() [all …]
|