diff options
author | Stefan Gehrer <stefan.gehrer@gmx.de> | 2008-06-24 20:01:31 +0000 |
---|---|---|
committer | Stefan Gehrer <stefan.gehrer@gmx.de> | 2008-06-24 20:01:31 +0000 |
commit | cf2baeb3382283d41eac7886ea831f52262971ba (patch) | |
tree | 986724da3ac8630b2903b8edc7a89498e2baf854 /libavcodec/imcdata.h | |
parent | 73cc419b271ac5af8c1aed36b5c0167c7016127a (diff) | |
download | ffmpeg-cf2baeb3382283d41eac7886ea831f52262971ba.tar.gz |
mark read-only data as const
Originally committed as revision 13947 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/imcdata.h')
-rw-r--r-- | libavcodec/imcdata.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/imcdata.h b/libavcodec/imcdata.h index 75f4fd7449..966bc2789f 100644 --- a/libavcodec/imcdata.h +++ b/libavcodec/imcdata.h @@ -94,7 +94,7 @@ static const float imc_exp_tab[32] = { 1.778280e02, 3.162278e02, 5.623413e02, 1.000000e03, 1.778280e03, 3.162278e03, 5.623413e03, 1.000000e04 }; -static const float *imc_exp_tab2 = imc_exp_tab + 8; +static const float * const imc_exp_tab2 = imc_exp_tab + 8; static const uint8_t imc_cb_select[4][32] = { |