summaryrefslogtreecommitdiff
path: root/src/post
diff options
context:
space:
mode:
Diffstat (limited to 'src/post')
-rw-r--r--src/post/audio/filter.c3
-rw-r--r--src/post/audio/window.c3
-rw-r--r--src/post/goom/convolve_fx.c4
-rw-r--r--src/post/goom/diff_against_release.patch26
-rw-r--r--src/post/goom/goom_config.h4
5 files changed, 25 insertions, 15 deletions
diff --git a/src/post/audio/filter.c b/src/post/audio/filter.c
index cb0363633..c5602736c 100644
--- a/src/post/audio/filter.c
+++ b/src/post/audio/filter.c
@@ -10,6 +10,9 @@
/* Design and implementation of different types of digital filters */
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
#include <string.h>
#include <math.h>
#include "dsp.h"
diff --git a/src/post/audio/window.c b/src/post/audio/window.c
index 23c024668..fdea90590 100644
--- a/src/post/audio/window.c
+++ b/src/post/audio/window.c
@@ -15,6 +15,9 @@
* coefficients will be stored.
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
#include <math.h>
#include "dsp.h"
diff --git a/src/post/goom/convolve_fx.c b/src/post/goom/convolve_fx.c
index ccd24dbd6..e86bb3723 100644
--- a/src/post/goom/convolve_fx.c
+++ b/src/post/goom/convolve_fx.c
@@ -7,10 +7,6 @@
#include <stdlib.h>
#include <string.h>
-#if HAVE_CONFIG_H
-# include "config.h"
-#endif
-
//#define CONV_MOTIF_W 32
//#define CONV_MOTIF_WMASK 0x1f
diff --git a/src/post/goom/diff_against_release.patch b/src/post/goom/diff_against_release.patch
index 026cc9862..5bded9393 100644
--- a/src/post/goom/diff_against_release.patch
+++ b/src/post/goom/diff_against_release.patch
@@ -361,17 +361,6 @@ diff -u -p -r1.13 goom_core.c
diff -r -u xine-lib-1.1.0-orig/src/post/goom/convolve_fx.c xine-lib-1.1.0/src/post/goom/convolve_fx.c
--- convolve_fx.c 2005-07-22 12:42:00.000000000 -0400
+++ convolve_fx.c 2005-11-11 14:59:39.925112333 -0500
-@@ -7,6 +7,10 @@
- #include <stdlib.h>
- #include <string.h>
-
-+#if HAVE_CONFIG_H
-+# include "config.h"
-+#endif
-+
- //#define CONV_MOTIF_W 32
- //#define CONV_MOTIF_WMASK 0x1f
-
@@ -151,7 +155,8 @@
ytex = yprime + yi + CONV_MOTIF_W * 0x10000 / 2;
yprime += c;
@@ -494,3 +483,18 @@ diff -r -u xine-lib-1.1.0-orig/src/post/goom/xmmx.c xine-lib-1.1.0/src/post/goom
}
#define DRAWMETHOD_PLUS_XMMX(_out,_backbuf,_col) \
+Index: goom_config.h
+===================================================================
+RCS file: /cvsroot/xine/xine-lib/src/post/goom/goom_config.h,v
+retrieving revision 1.9
+diff -u -p -r1.9 goom_config.h
+--- goom_config.h 21 Nov 2004 15:10:40 -0000 1.9
++++ goom_config.h 8 Apr 2006 15:35:01 -0000
+@@ -1,3 +1,7 @@
++#ifdef HAVE_CONFIG_H
++#include "config.h"
++#endif
++
+ #if WORDS_BIGENDIAN
+ #define COLOR_ARGB
+ #else
diff --git a/src/post/goom/goom_config.h b/src/post/goom/goom_config.h
index 5f6f15893..44c4d7d81 100644
--- a/src/post/goom/goom_config.h
+++ b/src/post/goom/goom_config.h
@@ -1,3 +1,7 @@
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#if WORDS_BIGENDIAN
#define COLOR_ARGB
#else