Home | History | Annotate | Download | only in include

Lines Matching full:channels

61  * @li Support for multichannel (up to 255 channels)
86 * enc = opus_encoder_create(Fs, channels, application, &error);
100 * size = opus_encoder_get_size(channels);
102 * error = opus_encoder_init(enc, Fs, channels, application);
167 * @param[in] channels <tt>int</tt>: Number of channels.
171 OPUS_EXPORT OPUS_WARN_UNUSED_RESULT int opus_encoder_get_size(int channels);
200 * @param [in] channels <tt>int</tt>: Number of channels (1 or 2) in input signal
203 * @note Regardless of the sampling rate and number channels selected, the Opus encoder
204 * can switch to a lower audio bandwidth or number of channels if the bitrate
210 int channels,
224 * @param [in] channels <tt>int</tt>: Number of channels (1 or 2) in input signal
231 int channels,
237 * @param [in] pcm <tt>opus_int16*</tt>: Input signal (interleaved if 2 channels). length is frame_size*channels*sizeof(opus_int16)
273 * @param [in] pcm <tt>float*</tt>: Input in float format (interleaved if 2 channels), with a normal range of +/-1.0.
278 * length is frame_size*channels*sizeof(float)
341 * dec = opus_decoder_create(Fs, channels, &error);
345 * @li channels is the number of channels (1 or 2)
355 * size = opus_decoder_get_size(channels);
357 * error = opus_decoder_init(dec, Fs, channels);
402 * @param [in] channels <tt>int</tt>: Number of channels.
406 OPUS_EXPORT OPUS_WARN_UNUSED_RESULT int opus_decoder_get_size(int channels);
412 * @param [in] channels <tt>int</tt>: Number of channels (1 or 2) to decode
425 int channels,
437 * @param [in] channels <tt>int</tt>: Number of channels (1 or 2) to decode
443 int channels
450 * @param [out] pcm <tt>opus_int16*</tt>: Output signal (interleaved if 2 channels). length
451 * is frame_size*channels*sizeof(opus_int16)
475 * @param [out] pcm <tt>float*</tt>: Output signal (interleaved if 2 channels). length
476 * is frame_size*channels*sizeof(float)
558 /** Gets the number of channels from an Opus packet.
560 * @returns Number of channels
603 * @param [in] channels <tt>int</tt>: Number of channels
606 OPUS_EXPORT void opus_pcm_soft_clip(float *pcm, int frame_size, int channels, float *softclip_mem);
948 * @param nb_streams <tt>opus_int32</tt>: The number of streams (not channels) in the packet.
963 * @param nb_streams <tt>opus_int32</tt>: The number of streams (not channels) in the packet.