Mercurial > mplayer.hg
annotate libaf/dsp.h @ 26523:43d28f989428
Merge mp3lib/Makefile into top-level Makefile.
author | diego |
---|---|
date | Sun, 27 Apr 2008 22:53:18 +0000 |
parents | 07abe94a9cc4 |
children | 72d0b1444141 |
rev | line source |
---|---|
7568 | 1 /*============================================================================= |
2 // | |
13602
14090f7300a8
The full name of the GPL is GNU General Public License.
diego
parents:
7568
diff
changeset
|
3 // This software has been released under the terms of the GNU General Public |
7568 | 4 // license. See http://www.gnu.org/copyleft/gpl.html for details. |
5 // | |
6 // Copyright 2002 Anders Johansson ajh@atri.curtin.edu.au | |
7 // | |
8 //============================================================================= | |
9 */ | |
10 | |
26029 | 11 #ifndef MPLAYER_DSP_H |
12 #define MPLAYER_DSP_H | |
7568 | 13 |
14 /* Implementation of routines used for DSP */ | |
15 | |
16 /* Size of floating point type used in routines */ | |
26350
07abe94a9cc4
Fix illegal identifier: Rename _ftype_t macro to FLOAT_TYPE.
diego
parents:
26342
diff
changeset
|
17 #define FLOAT_TYPE float |
7568 | 18 |
26342
327b7955381f
Use quotes instead of angular brackets for local includes.
diego
parents:
26029
diff
changeset
|
19 #include "window.h" |
327b7955381f
Use quotes instead of angular brackets for local includes.
diego
parents:
26029
diff
changeset
|
20 #include "filter.h" |
7568 | 21 |
26029 | 22 #endif /* MPLAYER_DSP_H */ |