Mercurial > mplayer.hg
annotate libaf/dsp.h @ 22001:2934974c366a
Remove illegal definition of underscored-prefixed symbol "__MODULE__":
All underscored-prefixed symbols have the right re-defined by the compiler, so it's definitely not safe to use any.
ICC doesn't seem to like it, GCC doesn't seem to care.
Original thread:
date: Jan 25, 2007 2:41 PM
subject: [MPlayer-dev-eng] [PATCH] remove illegal underscored-prefixed symbols
AND
date: 01/25/2007 11:43 AM
subject: Re: [MPlayer-dev-eng] [PATCH] compiling with Intel C
author | gpoirier |
---|---|
date | Fri, 26 Jan 2007 09:21:22 +0000 |
parents | 14090f7300a8 |
children | 3f0d00abc073 |
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 | |
11 #ifndef _DSP_H | |
12 #define _DSP_H 1 | |
13 | |
14 /* Implementation of routines used for DSP */ | |
15 | |
16 /* Size of floating point type used in routines */ | |
17 #define _ftype_t float | |
18 | |
19 #include <window.h> | |
20 #include <filter.h> | |
21 | |
22 #endif |