summaryrefslogtreecommitdiff
path: root/gst/effectv/gstradioac.c
diff options
context:
space:
mode:
authorPeter Kjellerstedt <pkj@axis.com>2009-08-31 18:10:11 +0200
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2009-08-31 18:11:28 +0200
commitfbefd9c66623b3f6e967aa52c6de270dbd368011 (patch)
tree8245bfabf7aa1a002b894e7e482bf412913ae81e /gst/effectv/gstradioac.c
parented3e870b92bd5be9587280ef0c38a89d4b5d3bc7 (diff)
effectv: Fix compilation with gcc 3
Recent changes in gst-plugins-good/gst/effectv prevents it from being compiled with gcc 3. The problem is that the new code uses preprocessor conditionals within a macro call which does not work with older versions of gcc. Fixes bug #593688.
Diffstat (limited to 'gst/effectv/gstradioac.c')
-rw-r--r--gst/effectv/gstradioac.c18
1 files changed, 8 insertions, 10 deletions
diff --git a/gst/effectv/gstradioac.c b/gst/effectv/gstradioac.c
index 76bdb98c2..7d954a857 100644
--- a/gst/effectv/gstradioac.c
+++ b/gst/effectv/gstradioac.c
@@ -138,26 +138,24 @@ static guint32 palettes[COLORS * PATTERN];
GST_BOILERPLATE (GstRadioacTV, gst_radioactv, GstVideoFilter,
GST_TYPE_VIDEO_FILTER);
+#if G_BYTE_ORDER == G_LITTLE_ENDIAN
+#define CAPS_STR GST_VIDEO_CAPS_RGBx
+#else
+#define CAPS_STR GST_VIDEO_CAPS_xBGR
+#endif
+
static GstStaticPadTemplate gst_radioactv_src_template =
GST_STATIC_PAD_TEMPLATE ("src",
GST_PAD_SRC,
GST_PAD_ALWAYS,
-#if G_BYTE_ORDER == G_LITTLE_ENDIAN
- GST_STATIC_CAPS (GST_VIDEO_CAPS_RGBx)
-#else
- GST_STATIC_CAPS (GST_VIDEO_CAPS_xBGR)
-#endif
+ GST_STATIC_CAPS (CAPS_STR)
);
static GstStaticPadTemplate gst_radioactv_sink_template =
GST_STATIC_PAD_TEMPLATE ("sink",
GST_PAD_SINK,
GST_PAD_ALWAYS,
-#if G_BYTE_ORDER == G_LITTLE_ENDIAN
- GST_STATIC_CAPS (GST_VIDEO_CAPS_RGBx)
-#else
- GST_STATIC_CAPS (GST_VIDEO_CAPS_xBGR)
-#endif
+ GST_STATIC_CAPS (CAPS_STR)
);
static void