celt_encoder_ctl() is a bit more type-safe.

This commit is contained in:
Jean-Marc Valin 2008-10-05 22:39:13 -04:00
parent 25ec9ac39a
commit b6f9061343
3 changed files with 25 additions and 10 deletions

View file

@ -69,7 +69,7 @@ int celt_mode_info(const CELTMode *mode, int request, celt_int32_t *value)
*value = CELT_BITSTREAM_VERSION;
break;
default:
return CELT_BAD_REQUEST;
return CELT_UNIMPLEMENTED;
}
return CELT_OK;
}