This commit is contained in:
Jean-Marc Valin 2011-03-08 18:05:45 -05:00
parent f9bc460e36
commit 9a115b9d76
2 changed files with 2 additions and 25 deletions

View file

@ -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;

View file

@ -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);