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/sipr.c | |
parent | 6c145ecf785dc3d26ba3fed3ea9892cc80244625 (diff) | |
download | ffmpeg-4a2ef39442bf7f0150db07a1fbfcf8286e4d44a3.tar.gz |
cosmetics: Add '0' to float constants ending in '.'.
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 2d35841336..83a4217c6f 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]; |