summaryrefslogtreecommitdiff
path: root/libavcodec/aacps_tablegen.c
diff options
context:
space:
mode:
authorJovan Zelincevic <jovan.zelincevic@imgtec.com>2015-07-20 13:36:18 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2015-07-22 21:51:22 +0200
commit631496e057a203e656d0a952acecf217a83bb26b (patch)
treee614758caa09c83ec430ef7e22f81e334f902d3b /libavcodec/aacps_tablegen.c
parent5362df2ee383e2d507d521f885e7fda2589e3998 (diff)
avcodec: Table creation for AAC_fixed_decoder (PS-module)
Add fixed point implementation of functions for generating tables. Signed-off-by: Nedeljko Babic <nedeljko.babic@imgtec.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/aacps_tablegen.c')
-rw-r--r--libavcodec/aacps_tablegen.c73
1 files changed, 2 insertions, 71 deletions
diff --git a/libavcodec/aacps_tablegen.c b/libavcodec/aacps_tablegen.c
index f56930b958..26a6752faa 100644
--- a/libavcodec/aacps_tablegen.c
+++ b/libavcodec/aacps_tablegen.c
@@ -20,74 +20,5 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#include <stdlib.h>
-#define CONFIG_HARDCODED_TABLES 0
-#include "aacps_tablegen.h"
-#include "tableprint.h"
-
-void write_float_3d_array (const void *p, int b, int c, int d)
-{
- int i;
- const float *f = p;
- for (i = 0; i < b; i++) {
- printf("{\n");
- write_float_2d_array(f, c, d);
- printf("},\n");
- f += c * d;
- }
-}
-
-void write_float_4d_array (const void *p, int a, int b, int c, int d)
-{
- int i;
- const float *f = p;
- for (i = 0; i < a; i++) {
- printf("{\n");
- write_float_3d_array(f, b, c, d);
- printf("},\n");
- f += b * c * d;
- }
-}
-
-int main(void)
-{
- ps_tableinit();
-
- write_fileheader();
-
- printf("static const float pd_re_smooth[8*8*8] = {\n");
- write_float_array(pd_re_smooth, 8*8*8);
- printf("};\n");
- printf("static const float pd_im_smooth[8*8*8] = {\n");
- write_float_array(pd_im_smooth, 8*8*8);
- printf("};\n");
-
- printf("static const float HA[46][8][4] = {\n");
- write_float_3d_array(HA, 46, 8, 4);
- printf("};\n");
- printf("static const float HB[46][8][4] = {\n");
- write_float_3d_array(HB, 46, 8, 4);
- printf("};\n");
-
- printf("static const DECLARE_ALIGNED(16, float, f20_0_8)[8][8][2] = {\n");
- write_float_3d_array(f20_0_8, 8, 8, 2);
- printf("};\n");
- printf("static const DECLARE_ALIGNED(16, float, f34_0_12)[12][8][2] = {\n");
- write_float_3d_array(f34_0_12, 12, 8, 2);
- printf("};\n");
- printf("static const DECLARE_ALIGNED(16, float, f34_1_8)[8][8][2] = {\n");
- write_float_3d_array(f34_1_8, 8, 8, 2);
- printf("};\n");
- printf("static const DECLARE_ALIGNED(16, float, f34_2_4)[4][8][2] = {\n");
- write_float_3d_array(f34_2_4, 4, 8, 2);
- printf("};\n");
-
- printf("static const DECLARE_ALIGNED(16, float, Q_fract_allpass)[2][50][3][2] = {\n");
- write_float_4d_array(Q_fract_allpass, 2, 50, 3, 2);
- printf("};\n");
- printf("static const DECLARE_ALIGNED(16, float, phi_fract)[2][50][2] = {\n");
- write_float_3d_array(phi_fract, 2, 50, 2);
- printf("};\n");
-
- return 0;
-}
+#define USE_FIXED 0
+#include "aacps_tablegen_template.c"