summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/codecs/libwmapro/wmapro_math.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs/libwmapro/wmapro_math.h b/apps/codecs/libwmapro/wmapro_math.h
index 261a7bd89d..a34a5a8d5a 100644
--- a/apps/codecs/libwmapro/wmapro_math.h
+++ b/apps/codecs/libwmapro/wmapro_math.h
@@ -182,8 +182,8 @@
182 : "cc", "memory"); 182 : "cc", "memory");
183#else 183#else
184 #define VECT_MUL_WIN_KERNEL(i, j, s0, s1, wi, wj) \ 184 #define VECT_MUL_WIN_KERNEL(i, j, s0, s1, wi, wj) \
185 dst[i] = fixmul31(s0, wj) - fixmul31(s1, wi); \ 185 dst[i] = fixmul31(wj, s0) - fixmul31(wi, s1); \
186 dst[j] = fixmul31(s0, wi) + fixmul31(s1, wj); 186 dst[j] = fixmul31(wi, s0) + fixmul31(wj, s1);
187#endif /* CPU_COLDFIRE */ 187#endif /* CPU_COLDFIRE */
188 188
189static inline void vector_fixmul_window(int32_t *dst, const int32_t *src0, 189static inline void vector_fixmul_window(int32_t *dst, const int32_t *src0,