diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2009-09-06 08:53:14 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2009-09-06 08:53:14 +0000 |
commit | faca56191c0a2e9512703a3e01182451d920a6f8 (patch) | |
tree | c2af9d1ead69294c2f5ae603abb0c04fb527b53a /libavcodec/dsputil.h | |
parent | f470fff3234591696d0a12ff498c2bfe9cfc9ff1 (diff) | |
download | ffmpeg-faca56191c0a2e9512703a3e01182451d920a6f8.tar.gz |
The ff_cos_tabs table itself is constant, too, so mark it as such.
Originally committed as revision 19784 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index 104953f81e..5046b0e557 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -684,7 +684,7 @@ typedef struct FFTContext { void (*imdct_half)(struct MDCTContext *s, FFTSample *output, const FFTSample *input); } FFTContext; -extern FFTSample* ff_cos_tabs[13]; +extern FFTSample* const ff_cos_tabs[13]; /** * Sets up a complex FFT. |