From 38977ee6bce1f18e5d3ccda814f622d53b6ae82d Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Fri, 6 Mar 2015 17:40:49 +0100 Subject: [PATCH 1/1] Use -fno-math-errno instead of -ffast-math, as the latter might give us less precise sin/cos for filters. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 91e6354..44e2a5c 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -CXXFLAGS=--std=gnu++0x -O2 -ffast-math -g -Wall +CXXFLAGS=--std=gnu++0x -O2 -fno-math-errno -g -Wall LDLIBS=-lavcodec -lavformat -lavutil -lswresample all: synth decode sync level cleaner -- 2.39.2