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=OPUS_AUTO;
352 } else if( strcmp( argv[ args ], "-bandwidth" ) == 0 ) {
353 check_encoder_option(decode_only, "-bandwidth");
355 bandwidth = OPUS_BANDWIDTH_NARROWBAND;
357 bandwidth = OPUS_BANDWIDTH_MEDIUMBAND;
359 bandwidth = OPUS_BANDWIDTH_WIDEBAND;
361 bandwidth = OPUS_BANDWIDTH_SUPERWIDEBAND;
363 bandwidth = OPUS_BANDWIDTH_FULLBAND;
365 fprintf(stderr, "Unknown bandwidth %s. "
532 opus_encoder_ctl(enc, OPUS_SET_BANDWIDTH(bandwidth));
558 switch(bandwidth)
576 bandwidth_string = "auto bandwidth";