diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2014-08-29 00:32:32 +0200 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2014-08-29 18:57:25 +0200 |
commit | d9e2aceb7f1c712a52672129ca7971872b030e1e (patch) | |
tree | 7d6518b6bf431d2ee46f926a87e3fb01101c63ec /libavcodec/x86/mlpdsp.c | |
parent | be4aac302b0cbeab6da9e3192318aad7379a6428 (diff) | |
download | ffmpeg-d9e2aceb7f1c712a52672129ca7971872b030e1e.tar.gz |
Add missing "const" all over the place.
Only "./configure --enable-gpl" on x86 was tested.
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
Diffstat (limited to 'libavcodec/x86/mlpdsp.c')
-rw-r--r-- | libavcodec/x86/mlpdsp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/x86/mlpdsp.c b/libavcodec/x86/mlpdsp.c index b473625fb7..f090fd79b4 100644 --- a/libavcodec/x86/mlpdsp.c +++ b/libavcodec/x86/mlpdsp.c @@ -44,12 +44,12 @@ extern char ff_mlp_iirorder_2; extern char ff_mlp_iirorder_1; extern char ff_mlp_iirorder_0; -static const void *firtable[9] = { &ff_mlp_firorder_0, &ff_mlp_firorder_1, +static const void * const firtable[9] = { &ff_mlp_firorder_0, &ff_mlp_firorder_1, &ff_mlp_firorder_2, &ff_mlp_firorder_3, &ff_mlp_firorder_4, &ff_mlp_firorder_5, &ff_mlp_firorder_6, &ff_mlp_firorder_7, &ff_mlp_firorder_8 }; -static const void *iirtable[5] = { &ff_mlp_iirorder_0, &ff_mlp_iirorder_1, +static const void * const iirtable[5] = { &ff_mlp_iirorder_0, &ff_mlp_iirorder_1, &ff_mlp_iirorder_2, &ff_mlp_iirorder_3, &ff_mlp_iirorder_4 }; |