Lines Matching refs:out_channels
84 int out_channels, in scale_kernel() argument
93 for (i_out_channels = 0; i_out_channels < out_channels; i_out_channels++) in scale_kernel()
143 int out_channels, in adaconv_process_frame() argument
192 … print_float_vector("adaconv_kernel_raw", kernel_buffer, in_channels * out_channels * kernel_size); in adaconv_process_frame()
193 print_float_vector("adaconv_gain_raw", gain_buffer, out_channels); in adaconv_process_frame()
195 transform_gains(gain_buffer, out_channels, filter_gain_a, filter_gain_b); in adaconv_process_frame()
196 scale_kernel(kernel_buffer, in_channels, out_channels, kernel_size, gain_buffer); in adaconv_process_frame()
199 print_float_vector("adaconv_kernel", kernel_buffer, in_channels * out_channels * kernel_size); in adaconv_process_frame()
200 print_float_vector("adaconv_gain", gain_buffer, out_channels); in adaconv_process_frame()
205 for (i_out_channels = 0; i_out_channels < out_channels; i_out_channels++) in adaconv_process_frame()
228 OPUS_COPY(x_out, output_buffer, out_channels * frame_size); in adaconv_process_frame()
231 print_float_vector("x_out", x_out, out_channels * frame_size); in adaconv_process_frame()
239 OPUS_COPY(hAdaConv->last_kernel, kernel_buffer, kernel_size * in_channels * out_channels); in adaconv_process_frame()