summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThiago Santos <thiago.sousa.santos@collabora.co.uk>2010-09-05 20:56:52 -0300
committerThiago Santos <thiago.sousa.santos@collabora.co.uk>2010-09-05 20:56:52 -0300
commit843552907374480812cb9ceb5c8baa93b3fb0c76 (patch)
tree8f7b1f0e92f7a76b199cf5adf6b04cd5e026a24d
parent21fc0956d61721799de132b82eaee9fb99dc6b68 (diff)
videomixer: Only init orc if it is available
Put some ifdef around orc_init to prevent build errors
-rw-r--r--gst/videomixer/blend.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gst/videomixer/blend.c b/gst/videomixer/blend.c
index bb55a85bd..b0ffbf600 100644
--- a/gst/videomixer/blend.c
+++ b/gst/videomixer/blend.c
@@ -722,7 +722,9 @@ FillColorFunction gst_video_mixer_fill_color_uyvy;
void
gst_video_mixer_init_blend (void)
{
+#ifdef HAVE_ORC
orc_init ();
+#endif
GST_DEBUG_CATEGORY_INIT (gst_videomixer_blend_debug, "videomixer_blend", 0,
"video mixer blending functions");