mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
sipr16kdata.h: add forgotten const.
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
This commit is contained in:
parent
2bb66cc8be
commit
18464d7270
@ -50,7 +50,7 @@ static void lsf2lsp(const float *lsf, double *lsp)
|
|||||||
lsp[i] = cosf(lsf[i]);
|
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;
|
int i;
|
||||||
|
|
||||||
|
@ -525,7 +525,7 @@ static const float lsf_cb5_16k[128][4] = {
|
|||||||
{ 0.124405, 0.009943, -0.148477, -0.205184}
|
{ 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_cb1_16k[0], lsf_cb2_16k[0], lsf_cb3_16k[0], lsf_cb4_16k[0],
|
||||||
lsf_cb5_16k[0]
|
lsf_cb5_16k[0]
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user