@@ -48,7 +48,9 @@ extern "C" {
48
48
/* FRAC is the fractional only part of the fixed point number [0.0..1.0) */
49
49
#define FRAC_SIZE 32 /* frac is a 32 bit integer */
50
50
#define FRAC_BITS 31
51
- #define FRAC_PRECISION ((uint32_t)(1 << FRAC_BITS))
51
+ /* Multiplication by power of 2 will be compiled to left-shift */
52
+ #define FRAC_MUL (1u << (FRAC_SIZE - FRAC_BITS))
53
+ #define FRAC_PRECISION ((uint32_t)(1u << FRAC_BITS))
52
54
#define FRAC_MAX 0x7FFFFFFF
53
55
54
56
typedef int32_t real_t ;
@@ -262,7 +264,7 @@ static INLINE void ComplexMult(real_t *y1, real_t *y2,
262
264
: "=d" (__xxo) : "d" (X), "d" (Y) : "A0","A1"); __xxo; })
263
265
#else
264
266
#define _MulHigh (A ,B ) (real_t)(((int64_t)(A)*(int64_t)(B)+(1u << (FRAC_SIZE-1))) >> FRAC_SIZE)
265
- #define MUL_F (A ,B ) (real_t)(((int64_t)(A)*(int64_t)(B)+(1 << (FRAC_BITS-1))) >> FRAC_BITS)
267
+ #define MUL_F (A ,B ) (real_t)(((int64_t)(A)*(int64_t)(B)+(1u << (FRAC_BITS-1))) >> FRAC_BITS)
266
268
#endif
267
269
#endif
268
270
#define MUL_Q2 (A ,B ) (real_t)(((int64_t)(A)*(int64_t)(B)+(1 << (Q2_BITS-1))) >> Q2_BITS)
@@ -273,8 +275,8 @@ static INLINE void ComplexMult(real_t *y1, real_t *y2,
273
275
static INLINE void ComplexMult (real_t * y1 , real_t * y2 ,
274
276
real_t x1 , real_t x2 , real_t c1 , real_t c2 )
275
277
{
276
- * y1 = (_MulHigh (x1 , c1 ) + _MulHigh (x2 , c2 ))<<( FRAC_SIZE - FRAC_BITS ) ;
277
- * y2 = (_MulHigh (x2 , c1 ) - _MulHigh (x1 , c2 ))<<( FRAC_SIZE - FRAC_BITS ) ;
278
+ * y1 = (_MulHigh (x1 , c1 ) + _MulHigh (x2 , c2 )) * FRAC_MUL ;
279
+ * y2 = (_MulHigh (x2 , c1 ) - _MulHigh (x1 , c2 )) * FRAC_MUL ;
278
280
}
279
281
280
282
#endif
0 commit comments