s/INBAND_FEC_FLAG/INBAND_FEC/

This commit is contained in:
Jean-Marc Valin 2011-08-28 20:27:18 -04:00
parent 99774976a7
commit e766d9f63d
3 changed files with 7 additions and 7 deletions

View file

@ -889,13 +889,13 @@ int opus_encoder_ctl(OpusEncoder *st, int request, ...)
*value = st->silk_mode.complexity;
}
break;
case OPUS_SET_INBAND_FEC_FLAG_REQUEST:
case OPUS_SET_INBAND_FEC_REQUEST:
{
opus_int32 value = va_arg(ap, opus_int32);
st->silk_mode.useInBandFEC = value;
}
break;
case OPUS_GET_INBAND_FEC_FLAG_REQUEST:
case OPUS_GET_INBAND_FEC_REQUEST:
{
opus_int32 *value = va_arg(ap, opus_int32*);
*value = st->silk_mode.useInBandFEC;