Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 646494
Collapse All | Expand All

(-)a/avidemux/common/ADM_audioFilter/src/audiofilter_normalize.cpp (-2 / +1 lines)
Lines 35-41 Link Here
35
#elif defined(ADM_BSD_FAMILY) || defined(__sun__)
35
#elif defined(ADM_BSD_FAMILY) || defined(__sun__)
36
#define POW10(x) powf(10.0,x)
36
#define POW10(x) powf(10.0,x)
37
#else
37
#else
38
#define POW10(x)  pow10f(x)
38
#define POW10(x)  exp10f(x)
39
#endif
39
#endif
40
40
41
#define LINEAR_TO_DB(x) (20.*log10(x))
41
#define LINEAR_TO_DB(x) (20.*log10(x))
42
- 

Return to bug 646494