diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-07-23 23:48:45 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-07-25 11:33:23 +0200 |
commit | 4a2ef39442bf7f0150db07a1fbfcf8286e4d44a3 (patch) | |
tree | 9dd31751557b65c912d2501a764fab5a9f663957 /libavcodec/aac_tablegen.h | |
parent | 6c145ecf785dc3d26ba3fed3ea9892cc80244625 (diff) | |
download | ffmpeg-4a2ef39442bf7f0150db07a1fbfcf8286e4d44a3.tar.gz |
cosmetics: Add '0' to float constants ending in '.'.
Diffstat (limited to 'libavcodec/aac_tablegen.h')
-rw-r--r-- | libavcodec/aac_tablegen.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aac_tablegen.h b/libavcodec/aac_tablegen.h index a45de9a67e..8a05ec5973 100644 --- a/libavcodec/aac_tablegen.h +++ b/libavcodec/aac_tablegen.h @@ -35,7 +35,7 @@ void ff_aac_tableinit(void) { int i; for (i = 0; i < 428; i++) - ff_aac_pow2sf_tab[i] = pow(2, (i - POW_SF2_ZERO) / 4.); + ff_aac_pow2sf_tab[i] = pow(2, (i - POW_SF2_ZERO) / 4.0); } #endif /* CONFIG_HARDCODED_TABLES */ |