diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-07-26 10:43:12 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-07-26 10:43:12 +0200 |
commit | af7949fdea2f3115c82143178a22a39afe7bbde1 (patch) | |
tree | a13279b4b881c3dbd172b21f9ea69321f3d9596b /libavcodec/sipr.c | |
parent | e28fabb4cbe5e7c6cde8a63733d7530f283a0acb (diff) | |
parent | 4a2ef39442bf7f0150db07a1fbfcf8286e4d44a3 (diff) | |
download | ffmpeg-af7949fdea2f3115c82143178a22a39afe7bbde1.tar.gz |
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/sipr.c')
-rw-r--r-- | libavcodec/sipr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/sipr.c b/libavcodec/sipr.c index 35e8bf5ea5..d524177021 100644 --- a/libavcodec/sipr.c +++ b/libavcodec/sipr.c @@ -240,7 +240,7 @@ static void eval_ir(const float *Az, int pitch_lag, float *freq, float tmp1[SUBFR_SIZE+1], tmp2[LP_FILTER_ORDER+1]; int i; - tmp1[0] = 1.; + tmp1[0] = 1.0; for (i = 0; i < LP_FILTER_ORDER; i++) { tmp1[i+1] = Az[i] * ff_pow_0_55[i]; tmp2[i ] = Az[i] * ff_pow_0_7 [i]; |