diff spandsp-0.0.3/spandsp-0.0.3/src/spandsp/complex_vector_float.h @ 5:f762bf195c4b

import spandsp-0.0.3
author Peter Meerwald <pmeerw@cosy.sbg.ac.at>
date Fri, 25 Jun 2010 16:00:21 +0200
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/spandsp-0.0.3/spandsp-0.0.3/src/spandsp/complex_vector_float.h	Fri Jun 25 16:00:21 2010 +0200
@@ -0,0 +1,127 @@
+/*
+ * SpanDSP - a series of DSP components for telephony
+ *
+ * complex_vector_float.h
+ *
+ * Written by Steve Underwood <steveu@coppice.org>
+ *
+ * Copyright (C) 2003 Steve Underwood
+ *
+ * All rights reserved.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2, as
+ * published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ * $Id: complex_vector_float.h,v 1.3 2006/10/24 13:45:28 steveu Exp $
+ */
+
+#if !defined(_COMPLEX_VECTOR_FLOAT_H_)
+#define _COMPLEX_VECTOR_FLOAT_H_
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+static __inline__ void cvec_copyf(complexf_t z[], const complexf_t x[], int n)
+{
+    int i;
+    
+    for (i = 0;  i < n;  i++)
+        z[i] = x[i];
+}
+/*- End of function --------------------------------------------------------*/
+
+static __inline__ void cvec_copy(complex_t z[], const complex_t x[], int n)
+{
+    int i;
+    
+    for (i = 0;  i < n;  i++)
+        z[i] = x[i];
+}
+/*- End of function --------------------------------------------------------*/
+
+#if defined(HAVE_LONG_DOUBLE)
+static __inline__ void cvec_copyl(complexl_t z[], const complexl_t x[], int n)
+{
+    int i;
+    
+    for (i = 0;  i < n;  i++)
+        z[i] = x[i];
+}
+/*- End of function --------------------------------------------------------*/
+#endif
+
+static __inline__ void cvec_zerof(complexf_t z[], int n)
+{
+    int i;
+    
+    for (i = 0;  i < n;  i++)
+        z[i] = complex_setf(0.0f, 0.0f);
+}
+/*- End of function --------------------------------------------------------*/
+
+static __inline__ void cvec_zero(complex_t z[], int n)
+{
+    int i;
+    
+    for (i = 0;  i < n;  i++)
+        z[i] = complex_set(0.0, 0.0);
+}
+/*- End of function --------------------------------------------------------*/
+
+#if defined(HAVE_LONG_DOUBLE)
+static __inline__ void cvec_zerol(complexl_t z[], int n)
+{
+    int i;
+    
+    for (i = 0;  i < n;  i++)
+        z[i] = complex_setl(0.0, 0.0);
+}
+/*- End of function --------------------------------------------------------*/
+#endif
+
+static __inline__ void cvec_setf(complexf_t z[], complexf_t *x, int n)
+{
+    int i;
+    
+    for (i = 0;  i < n;  i++)
+        z[i] = *x;
+}
+/*- End of function --------------------------------------------------------*/
+
+static __inline__ void cvec_set(complex_t z[], complex_t *x, int n)
+{
+    int i;
+    
+    for (i = 0;  i < n;  i++)
+        z[i] = *x;
+}
+/*- End of function --------------------------------------------------------*/
+
+#if defined(HAVE_LONG_DOUBLE)
+static __inline__ void cvec_setl(complexl_t z[], complexl_t *x, int n)
+{
+    int i;
+    
+    for (i = 0;  i < n;  i++)
+        z[i] = *x;
+}
+/*- End of function --------------------------------------------------------*/
+#endif
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif
+/*- End of file ------------------------------------------------------------*/

Repositories maintained by Peter Meerwald, pmeerw@pmeerw.net.