Home | History | Annotate | Download | only in src

Lines Matching defs:bandwidth

58     fprintf(stderr, "-bandwidth <NB|MB|WB|SWB|FB> : audio bandwidth (from narrowband to fullband); default: sampling rate\n" );
248 int bandwidth=-1;
339 bandwidth = OPUS_AUTO;
355 } else if( strcmp( argv[ args ], "-bandwidth" ) == 0 ) {
356 check_encoder_option(decode_only, "-bandwidth");
358 bandwidth = OPUS_BANDWIDTH_NARROWBAND;
360 bandwidth = OPUS_BANDWIDTH_MEDIUMBAND;
362 bandwidth = OPUS_BANDWIDTH_WIDEBAND;
364 bandwidth = OPUS_BANDWIDTH_SUPERWIDEBAND;
366 bandwidth = OPUS_BANDWIDTH_FULLBAND;
368 fprintf(stderr, "Unknown bandwidth %s. "
535 opus_encoder_ctl(enc, OPUS_SET_BANDWIDTH(bandwidth));
561 switch(bandwidth)