Commit 9468462d authored by michael's avatar michael

Fix mpegaudio tablegen patch by Michael Kostyle


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@23106 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 34409714
......@@ -43,9 +43,17 @@ int main(void)
write_uint32_array(exp_table, 512);
printf("};\n");
printf("static const float exp_table_float[512] = {\n");
write_float_array(exp_table_float, 512);
printf("};\n");
printf("static const uint32_t expval_table[512][16] = {\n");
write_uint32_2d_array(expval_table, 512, 16);
printf("};\n");
printf("static const float expval_table_float[512][16] = {\n");
write_float_2d_array(expval_table_float, 512, 16);
printf("};\n");
return 0;
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment