You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
aacps_tablegen: replace TABLE_CONST by const.
Doesn't change generated code, just is more consistent and a bit less error-prone. Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
This commit is contained in:
@@ -82,7 +82,7 @@ int main(void)
|
|||||||
write_float_3d_array(f34_2_4, 4, 8, 2);
|
write_float_3d_array(f34_2_4, 4, 8, 2);
|
||||||
printf("};\n");
|
printf("};\n");
|
||||||
|
|
||||||
printf("static TABLE_CONST DECLARE_ALIGNED(16, float, Q_fract_allpass)[2][50][3][2] = {\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);
|
write_float_4d_array(Q_fract_allpass, 2, 50, 3, 2);
|
||||||
printf("};\n");
|
printf("};\n");
|
||||||
printf("static const DECLARE_ALIGNED(16, float, phi_fract)[2][50][2] = {\n");
|
printf("static const DECLARE_ALIGNED(16, float, phi_fract)[2][50][2] = {\n");
|
||||||
|
Reference in New Issue
Block a user