mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-27 12:59:24 +00:00
Fix mpegaudio tablegen.
Patch by Michael Kostylev, michael D kostylev A gmail Originally committed as revision 23106 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
56b37cd1c7
commit
3e48d792b6
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user