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/aacps_tablegen.h | |
parent | 6c145ecf785dc3d26ba3fed3ea9892cc80244625 (diff) | |
download | ffmpeg-4a2ef39442bf7f0150db07a1fbfcf8286e4d44a3.tar.gz |
cosmetics: Add '0' to float constants ending in '.'.
Diffstat (limited to 'libavcodec/aacps_tablegen.h')
-rw-r--r-- | libavcodec/aacps_tablegen.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aacps_tablegen.h b/libavcodec/aacps_tablegen.h index 0c610edaf2..701812b9cd 100644 --- a/libavcodec/aacps_tablegen.h +++ b/libavcodec/aacps_tablegen.h @@ -192,7 +192,7 @@ static void ps_tableinit(void) for (k = 0; k < NR_ALLPASS_BANDS34; k++) { double f_center, theta; if (k < FF_ARRAY_ELEMS(f_center_34)) - f_center = f_center_34[k] / 24.; + f_center = f_center_34[k] / 24.0; else f_center = k - 26.5f; for (m = 0; m < PS_AP_LINKS; m++) { |