summaryrefslogtreecommitdiffstats
path: root/libaf/filter.h
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-02-22 09:09:46 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-02-22 09:09:46 +0000
commit8efb2fa21c81f99b37795621f9ec2bc125c6ced0 (patch)
tree9a6f354228affe704b16844775070159e82b5fcd /libaf/filter.h
parent50899e9083661200d9bb105dca0339c14e56d271 (diff)
downloadmpv-8efb2fa21c81f99b37795621f9ec2bc125c6ced0.tar.bz2
mpv-8efb2fa21c81f99b37795621f9ec2bc125c6ced0.tar.xz
Add MPLAYER_ prefix to multiple inclusion guards.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26061 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libaf/filter.h')
-rw-r--r--libaf/filter.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libaf/filter.h b/libaf/filter.h
index 92ff229910..31293f051b 100644
--- a/libaf/filter.h
+++ b/libaf/filter.h
@@ -8,12 +8,12 @@
//=============================================================================
*/
-#if !defined DSP_H
+#if !defined MPLAYER_DSP_H
# error "Never use <filter.h> directly; include <dsp.h> instead"
#endif
-#ifndef FILTER_H
-#define FILTER_H
+#ifndef MPLAYER_FILTER_H
+#define MPLAYER_FILTER_H
// Design and implementation of different types of digital filters
@@ -66,4 +66,4 @@ extern int af_filter_szxform(_ftype_t* a, _ftype_t* b, _ftype_t Q, _ftype_t fc,
xq[xi]=(xq)[(xi)+(n)]=*(in);\
xi=(++(xi))&((n)-1);
-#endif /* FILTER_H */
+#endif /* MPLAYER_FILTER_H */