Home | History | Annotate | Download | only in src

Lines Matching refs:streams

398       int streams,
410 if ((channels>255) || (channels<1) || (coupled_streams>streams) ||
411 (coupled_streams+streams>255) || (streams<1) || (coupled_streams<0))
415 st->layout.nb_streams = streams;
460 int streams,
466 return opus_multistream_encoder_init_impl(st, Fs, channels, streams, coupled_streams, mapping, application, 0);
474 int *streams,
487 *streams=1;
492 *streams=1;
501 *streams=vorbis_mappings[channels-1].nb_streams;
506 st->lfe_stream = *streams-1;
510 *streams=channels;
516 return opus_multistream_encoder_init_impl(st, Fs, channels, *streams, *coupled_streams,
523 int streams,
532 if ((channels>255) || (channels<1) || (coupled_streams>streams) ||
533 (coupled_streams+streams>255) || (streams<1) || (coupled_streams<0))
539 st = (OpusMSEncoder *)opus_alloc(opus_multistream_encoder_get_size(streams, coupled_streams));
546 ret = opus_multistream_encoder_init(st, Fs, channels, streams, coupled_streams, mapping, application);
561 int *streams,
583 ret = opus_multistream_surround_encoder_init(st, Fs, channels, mapping_family, streams, coupled_streams, mapping, application);
621 /* Coupled streams get twice the mono rate after the first 20 kb/s. */
626 /* Compute bitrate allocation between streams */
756 /* Compute bitrate allocation between streams (this could be a lot better) */
788 /* To preserve the spatial image, force stereo CELT on coupled streams */