[MPlayer-cvslog] r26374 - in trunk/libaf: af_tools.c dsp.h filter.h window.h
diego
subversion at mplayerhq.hu
Wed Apr 9 20:02:06 CEST 2008
Author: diego
Date: Wed Apr 9 20:02:05 2008
New Revision: 26374
Log:
Use quotes instead of angular brackets for local includes.
Modified:
trunk/libaf/af_tools.c
trunk/libaf/dsp.h
trunk/libaf/filter.h
trunk/libaf/window.h
Modified: trunk/libaf/af_tools.c
==============================================================================
--- trunk/libaf/af_tools.c (original)
+++ trunk/libaf/af_tools.c Wed Apr 9 20:02:05 2008
@@ -1,6 +1,6 @@
#include <math.h>
#include <string.h>
-#include <af.h>
+#include "af.h"
/* Convert to gain value from dB. Returns AF_OK if of and AF_ERROR if
fail */
Modified: trunk/libaf/dsp.h
==============================================================================
--- trunk/libaf/dsp.h (original)
+++ trunk/libaf/dsp.h Wed Apr 9 20:02:05 2008
@@ -16,7 +16,7 @@
/* Size of floating point type used in routines */
#define _ftype_t float
-#include <window.h>
-#include <filter.h>
+#include "window.h"
+#include "filter.h"
#endif /* MPLAYER_DSP_H */
Modified: trunk/libaf/filter.h
==============================================================================
--- trunk/libaf/filter.h (original)
+++ trunk/libaf/filter.h Wed Apr 9 20:02:05 2008
@@ -9,7 +9,7 @@
*/
#if !defined MPLAYER_DSP_H
-# error "Never use <filter.h> directly; include <dsp.h> instead"
+# error "Never use \"filter.h\" directly; include \"dsp.h\" instead"
#endif
#ifndef MPLAYER_FILTER_H
Modified: trunk/libaf/window.h
==============================================================================
--- trunk/libaf/window.h (original)
+++ trunk/libaf/window.h Wed Apr 9 20:02:05 2008
@@ -16,7 +16,7 @@
*/
#if !defined MPLAYER_DSP_H
-# error "Never use <window.h> directly; include <dsp.h> instead"
+# error "Never use \"window.h\" directly; include \"dsp.h\" instead"
#endif
#ifndef MPLAYER_WINDOW_H
More information about the MPlayer-cvslog
mailing list