]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/imcdata.h
Remove hack added to make "make checkheaders" pass, it is unneeded now
[ffmpeg] / libavcodec / imcdata.h
index 92ed275f176b877283950a8fe1f1263aa0353da1..64e7c7185e151da12132aa6a4a8785d9a4bf4578 100644 (file)
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- *
  */
 
+#ifndef AVCODEC_IMCDATA_H
+#define AVCODEC_IMCDATA_H
+
+#include <stdint.h>
+
 static const uint16_t band_tab[33] = {
       0,   3,   6,   9,  12,  16,  20,  24,  29,  34,  40,
      46,  53,  60,  68,  76,  84,  93, 102, 111, 121, 131,
@@ -90,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] = {
@@ -162,3 +166,4 @@ static const uint16_t imc_huffman_bits[4][4][18] = {
     }
 };
 
+#endif /* AVCODEC_IMCDATA_H */