Mercurial > mplayer.hg
annotate libaf/dsp.h @ 34448:6dc79618ec0e
Fix directory creation in refupdate script.
author | reimar |
---|---|
date | Sun, 08 Jan 2012 15:38:22 +0000 |
parents | 72d0b1444141 |
children |
rev | line source |
---|---|
28229
72d0b1444141
Replace informal license notices by standard license header
diego
parents:
26350
diff
changeset
|
1 /* |
72d0b1444141
Replace informal license notices by standard license header
diego
parents:
26350
diff
changeset
|
2 * Copyright (C) 2002 Anders Johansson ajh@atri.curtin.edu.au |
72d0b1444141
Replace informal license notices by standard license header
diego
parents:
26350
diff
changeset
|
3 * |
72d0b1444141
Replace informal license notices by standard license header
diego
parents:
26350
diff
changeset
|
4 * This file is part of MPlayer. |
72d0b1444141
Replace informal license notices by standard license header
diego
parents:
26350
diff
changeset
|
5 * |
72d0b1444141
Replace informal license notices by standard license header
diego
parents:
26350
diff
changeset
|
6 * MPlayer is free software; you can redistribute it and/or modify |
72d0b1444141
Replace informal license notices by standard license header
diego
parents:
26350
diff
changeset
|
7 * it under the terms of the GNU General Public License as published by |
72d0b1444141
Replace informal license notices by standard license header
diego
parents:
26350
diff
changeset
|
8 * the Free Software Foundation; either version 2 of the License, or |
72d0b1444141
Replace informal license notices by standard license header
diego
parents:
26350
diff
changeset
|
9 * (at your option) any later version. |
72d0b1444141
Replace informal license notices by standard license header
diego
parents:
26350
diff
changeset
|
10 * |
72d0b1444141
Replace informal license notices by standard license header
diego
parents:
26350
diff
changeset
|
11 * MPlayer is distributed in the hope that it will be useful, |
72d0b1444141
Replace informal license notices by standard license header
diego
parents:
26350
diff
changeset
|
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
72d0b1444141
Replace informal license notices by standard license header
diego
parents:
26350
diff
changeset
|
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
72d0b1444141
Replace informal license notices by standard license header
diego
parents:
26350
diff
changeset
|
14 * GNU General Public License for more details. |
72d0b1444141
Replace informal license notices by standard license header
diego
parents:
26350
diff
changeset
|
15 * |
72d0b1444141
Replace informal license notices by standard license header
diego
parents:
26350
diff
changeset
|
16 * You should have received a copy of the GNU General Public License along |
72d0b1444141
Replace informal license notices by standard license header
diego
parents:
26350
diff
changeset
|
17 * with MPlayer; if not, write to the Free Software Foundation, Inc., |
72d0b1444141
Replace informal license notices by standard license header
diego
parents:
26350
diff
changeset
|
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
72d0b1444141
Replace informal license notices by standard license header
diego
parents:
26350
diff
changeset
|
19 */ |
7568 | 20 |
26029 | 21 #ifndef MPLAYER_DSP_H |
22 #define MPLAYER_DSP_H | |
7568 | 23 |
24 /* Implementation of routines used for DSP */ | |
25 | |
26 /* 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
|
27 #define FLOAT_TYPE float |
7568 | 28 |
26342
327b7955381f
Use quotes instead of angular brackets for local includes.
diego
parents:
26029
diff
changeset
|
29 #include "window.h" |
327b7955381f
Use quotes instead of angular brackets for local includes.
diego
parents:
26029
diff
changeset
|
30 #include "filter.h" |
7568 | 31 |
26029 | 32 #endif /* MPLAYER_DSP_H */ |