Lines Matching refs:pcm_buf
941 VARDECL(opus_val16, pcm_buf); in opus_encode_native()
1426 ALLOC(pcm_buf, (total_buffer+frame_size)*st->channels, opus_val16); in opus_encode_native()
1428 pcm_buf[i] = st->delay_buffer[(st->encoder_buffer-total_buffer)*st->channels+i]; in opus_encode_native()
1443 …hp_cutoff(pcm, cutoff_Hz, &pcm_buf[total_buffer*st->channels], st->hp_mem, frame_size, st->channel… in opus_encode_native()
1445 …dc_reject(pcm, 3, &pcm_buf[total_buffer*st->channels], st->hp_mem, frame_size, st->channels, st->F… in opus_encode_native()
1614 pcm_silk = pcm_buf+total_buffer*st->channels; in opus_encode_native()
1617 pcm_silk[i] = FLOAT2INT16(pcm_buf[total_buffer*st->channels + i]); in opus_encode_native()
1737 st->delay_buffer[i] = pcm_buf[(frame_size+total_buffer-st->encoder_buffer)*st->channels+i]; in opus_encode_native()
1742 gain_fade(pcm_buf, pcm_buf, in opus_encode_native()
1761 stereo_fade(pcm_buf, pcm_buf, g1, g2, celt_mode->overlap, in opus_encode_native()
1819 …err = celt_encode_with_ec(celt_enc, pcm_buf, st->Fs/200, data+nb_compr_bytes, redundancy_bytes, NU… in opus_encode_native()
1845 ret = celt_encode_with_ec(celt_enc, pcm_buf, frame_size, NULL, nb_compr_bytes, &enc); in opus_encode_native()
1868 celt_encode_with_ec(celt_enc, pcm_buf+st->channels*(frame_size-N2-N4), N4, dummy, 2, NULL); in opus_encode_native()
1870 …err = celt_encode_with_ec(celt_enc, pcm_buf+st->channels*(frame_size-N2), N2, data+nb_compr_bytes,… in opus_encode_native()