Commit 18464d72 authored by Reimar Döffinger's avatar Reimar Döffinger

sipr16kdata.h: add forgotten const.

Signed-off-by: 's avatarReimar Döffinger <Reimar.Doeffinger@gmx.de>
parent 2bb66cc8
......@@ -50,7 +50,7 @@ static void lsf2lsp(const float *lsf, double *lsp)
lsp[i] = cosf(lsf[i]);
}
static void dequant(float *out, const int *idx, const float *cbs[])
static void dequant(float *out, const int *idx, const float * const cbs[])
{
int i;
......
......@@ -525,7 +525,7 @@ static const float lsf_cb5_16k[128][4] = {
{ 0.124405, 0.009943, -0.148477, -0.205184}
};
static const float *lsf_codebooks_16k[] = {
static const float * const lsf_codebooks_16k[] = {
lsf_cb1_16k[0], lsf_cb2_16k[0], lsf_cb3_16k[0], lsf_cb4_16k[0],
lsf_cb5_16k[0]
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment