Cleanup
This commit is contained in:
parent
f9bc460e36
commit
9a115b9d76
2 changed files with 2 additions and 25 deletions
|
@ -589,6 +589,8 @@ void opus_encoder_ctl(OpusEncoder *st, int request, ...)
|
|||
case OPUS_SET_VOICE_RATIO_REQUEST:
|
||||
{
|
||||
int value = va_arg(ap, int);
|
||||
if (value>100 || value<0)
|
||||
return OPUS_BAD_ARG;
|
||||
st->voice_ratio = value;
|
||||
}
|
||||
break;
|
||||
|
|
|
@ -233,31 +233,6 @@ int main(int argc, char *argv[])
|
|||
return 1;
|
||||
}
|
||||
|
||||
/*if (mode==MODE_SILK_ONLY)
|
||||
{
|
||||
if (bandwidth == BANDWIDTH_SUPERWIDEBAND || bandwidth == BANDWIDTH_FULLBAND)
|
||||
{
|
||||
fprintf (stderr, "Predictive mode only supports up to wideband\n");
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
if (mode==MODE_HYBRID)
|
||||
{
|
||||
if (bandwidth != BANDWIDTH_SUPERWIDEBAND && bandwidth != BANDWIDTH_FULLBAND)
|
||||
{
|
||||
fprintf (stderr, "Hybrid mode only supports superwideband and fullband\n");
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
if (mode==MODE_CELT_ONLY)
|
||||
{
|
||||
if (bandwidth == BANDWIDTH_MEDIUMBAND)
|
||||
{
|
||||
fprintf (stderr, "Transform mode does not support mediumband\n");
|
||||
return 1;
|
||||
}
|
||||
}*/
|
||||
|
||||
enc = opus_encoder_create(sampling_rate, channels);
|
||||
dec = opus_decoder_create(sampling_rate, channels);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue