]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/cbrt_tablegen.h
avcodec: remove missing bits from deprecated VIMA decoder
[ffmpeg] / libavcodec / cbrt_tablegen.h
index 07ef392f65ab299da9d9df84ee8e7891e99101a4..27a3e3ae29df51b745bee8b74b7b5a44f0ab7368 100644 (file)
 #include <stdint.h>
 #include <math.h>
 #include "libavutil/attributes.h"
+#include "libavcodec/aac_defines.h"
 
 #if USE_FIXED
-#define CBRT_RENAME(a) a ## _fixed
 #define CBRT(x) (int)floor((x).f * 8192 + 0.5)
 #else
-#define CBRT_RENAME(a) a
 #define CBRT(x) x.i
 #endif
 
@@ -46,7 +45,7 @@
 #else
 static uint32_t cbrt_tab[1 << 13];
 
-static av_cold void CBRT_RENAME(cbrt_tableinit)(void)
+static av_cold void AAC_RENAME(cbrt_tableinit)(void)
 {
     if (!cbrt_tab[(1<<13) - 1]) {
         int i;