summaryrefslogtreecommitdiff
path: root/libavcodec/aac_tablegen.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-07-26 10:43:12 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-07-26 10:43:12 +0200
commitaf7949fdea2f3115c82143178a22a39afe7bbde1 (patch)
treea13279b4b881c3dbd172b21f9ea69321f3d9596b /libavcodec/aac_tablegen.h
parente28fabb4cbe5e7c6cde8a63733d7530f283a0acb (diff)
parent4a2ef39442bf7f0150db07a1fbfcf8286e4d44a3 (diff)
Merge commit '4a2ef39442bf7f0150db07a1fbfcf8286e4d44a3'
* commit '4a2ef39442bf7f0150db07a1fbfcf8286e4d44a3': cosmetics: Add '0' to float constants ending in '.'. Conflicts: libavcodec/ra288.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/aac_tablegen.h')
-rw-r--r--libavcodec/aac_tablegen.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aac_tablegen.h b/libavcodec/aac_tablegen.h
index 2b080ba836..1c19a1529a 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 */