Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGanesh Ajjanagadde <gajjanagadde@gmail.com>2015-11-15 18:12:55 +0300
committerGanesh Ajjanagadde <gajjanagadde@gmail.com>2015-11-15 18:26:43 +0300
commit0bd0af6e6836c84a375ab324c7440812a3e8622a (patch)
tree6695f7676de6aff85c2b6988c0f1ec80511155ad /libswresample/resample.c
parent064ced5dc147c9b5a33807a90f07037feec57cbe (diff)
swresample/resample: remove redundant L for floating literal
It is inherently double precision, and 1.0 is perfectly represented anyway. Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com>
Diffstat (limited to 'libswresample/resample.c')
-rw-r--r--libswresample/resample.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libswresample/resample.c b/libswresample/resample.c
index 77f3a0d4cd..34eb4c016d 100644
--- a/libswresample/resample.c
+++ b/libswresample/resample.c
@@ -96,7 +96,7 @@ static double bessel(double x) {
-1.2207067397808979846e+10,
1.0377081058062166144e+07,
-4.8527560179962773045e+03,
- 1.0L,
+ 1.0,
};
static const double p2[] = {
-2.2210262233306573296e-04,
@@ -115,7 +115,7 @@ static double bessel(double x) {
-6.0228002066743340583e+01,
8.5539563258012929600e+01,
-3.1446690275135491500e+01,
- 1.0L,
+ 1.0,
};
double y, r, factor;
if (x == 0)