# HG changeset patch # User Chris Cannam # Date 1632736863 -3600 # Mon Sep 27 11:01:03 2021 +0100 # Node ID b5791de36fb2bb96b7899ecf39d9fbdaa6b80876 # Parent de8a5822c58034498bef11c052ac7c4816efee1d Fix ipp divide_to diff --git a/bqvec/VectorOpsComplex.h b/bqvec/VectorOpsComplex.h --- a/bqvec/VectorOpsComplex.h +++ b/bqvec/VectorOpsComplex.h @@ -312,10 +312,10 @@ { #if defined HAVE_IPP if (sizeof(bq_complex_element_t) == sizeof(float)) { - ippsDiv_32fc((const Ipp32fc *)src1, (const Ipp32fc *)src2, + ippsDiv_32fc((const Ipp32fc *)src2, (const Ipp32fc *)src1, (Ipp32fc *)dst, count); } else { - ippsDiv_64fc((const Ipp64fc *)src1, (const Ipp64fc *)src2, + ippsDiv_64fc((const Ipp64fc *)src2, (const Ipp64fc *)src1, (Ipp64fc *)dst, count); } #elif defined HAVE_VDSP