diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2011-11-05 15:26:21 +0100 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2011-11-05 15:37:02 +0100 |
commit | db076a2c48d680dfe828bbe7235082cc3eee0b67 (patch) | |
tree | a3cafe7f837c298e199b0d007baa4ebf39d4d5ff /libavcodec/x86/fdct_mmx.c | |
parent | b883c879aa65d11d9254ca7d76294c8c5c11ae57 (diff) | |
download | ffmpeg-db076a2c48d680dfe828bbe7235082cc3eee0b67.tar.gz |
Make fdct_r_row_sse2 const.
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
Diffstat (limited to 'libavcodec/x86/fdct_mmx.c')
-rw-r--r-- | libavcodec/x86/fdct_mmx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/fdct_mmx.c b/libavcodec/x86/fdct_mmx.c index 77652b213d..94f61574aa 100644 --- a/libavcodec/x86/fdct_mmx.c +++ b/libavcodec/x86/fdct_mmx.c @@ -68,7 +68,7 @@ DECLARE_ALIGNED(16, static const int16_t, fdct_one_corr)[8] = { X8(1) }; DECLARE_ALIGNED(8, static const int32_t, fdct_r_row)[2] = {RND_FRW_ROW, RND_FRW_ROW }; -static struct +static const struct { DECLARE_ALIGNED(16, const int32_t, fdct_r_row_sse2)[4]; } fdct_r_row_sse2 = |