summaryrefslogtreecommitdiff
path: root/apps/codecs/libfaad/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/libfaad/common.h')
-rw-r--r--apps/codecs/libfaad/common.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/apps/codecs/libfaad/common.h b/apps/codecs/libfaad/common.h
index e6cdcd8646..abef33e645 100644
--- a/apps/codecs/libfaad/common.h
+++ b/apps/codecs/libfaad/common.h
@@ -285,9 +285,10 @@ char *strchr(), *strrchr();
285 285
286 #include <math.h> 286 #include <math.h>
287 287
288 #define MUL_R(A,B) ((A)*(B)) 288 #define MUL_R(A,B) ((A)*(B))
289 #define MUL_C(A,B) ((A)*(B)) 289 #define MUL_C(A,B) ((A)*(B))
290 #define MUL_F(A,B) ((A)*(B)) 290 #define MUL_F(A,B) ((A)*(B))
291 #define MUL_Q2(A,B) ((A)*(B))
291 292
292 /* Complex multiplication */ 293 /* Complex multiplication */
293 static INLINE void ComplexMult(real_t *y1, real_t *y2, 294 static INLINE void ComplexMult(real_t *y1, real_t *y2,
@@ -306,9 +307,10 @@ char *strchr(), *strrchr();
306 307
307 typedef float real_t; 308 typedef float real_t;
308 309
309 #define MUL_R(A,B) ((A)*(B)) 310 #define MUL_R(A,B) ((A)*(B))
310 #define MUL_C(A,B) ((A)*(B)) 311 #define MUL_C(A,B) ((A)*(B))
311 #define MUL_F(A,B) ((A)*(B)) 312 #define MUL_F(A,B) ((A)*(B))
313 #define MUL_Q2(A,B) ((A)*(B))
312 314
313 #define REAL_CONST(A) ((real_t)(A)) 315 #define REAL_CONST(A) ((real_t)(A))
314 #define COEF_CONST(A) ((real_t)(A)) 316 #define COEF_CONST(A) ((real_t)(A))