summaryrefslogtreecommitdiff
path: root/src/libac3/cmplx.h
diff options
context:
space:
mode:
authorDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2001-04-18 22:33:39 +0000
committerDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2001-04-18 22:33:39 +0000
commitdb6b7c2e1c52c536a7f9690a410bf69817e0b2c5 (patch)
treefdaf7537abca3d4875ad21322c54888914ed15a2 /src/libac3/cmplx.h
downloadxine-lib-db6b7c2e1c52c536a7f9690a410bf69817e0b2c5.tar.gz
xine-lib-db6b7c2e1c52c536a7f9690a410bf69817e0b2c5.tar.bz2
Initial revision
CVS patchset: 1 CVS date: 2001/04/18 22:33:39
Diffstat (limited to 'src/libac3/cmplx.h')
-rw-r--r--src/libac3/cmplx.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/libac3/cmplx.h b/src/libac3/cmplx.h
new file mode 100644
index 000000000..a357fab38
--- /dev/null
+++ b/src/libac3/cmplx.h
@@ -0,0 +1,9 @@
+#ifndef __COMPLEX_H__
+#define __COMPLEX_H__
+
+typedef struct complex {
+ float re;
+ float im;
+} complex_t;
+
+#endif