mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
videomixer: Only init orc if it is available
Put some ifdef around orc_init to prevent build errors
This commit is contained in:
parent
21fc0956d6
commit
8435529073
1 changed files with 2 additions and 0 deletions
|
@ -722,7 +722,9 @@ FillColorFunction gst_video_mixer_fill_color_uyvy;
|
||||||
void
|
void
|
||||||
gst_video_mixer_init_blend (void)
|
gst_video_mixer_init_blend (void)
|
||||||
{
|
{
|
||||||
|
#ifdef HAVE_ORC
|
||||||
orc_init ();
|
orc_init ();
|
||||||
|
#endif
|
||||||
|
|
||||||
GST_DEBUG_CATEGORY_INIT (gst_videomixer_blend_debug, "videomixer_blend", 0,
|
GST_DEBUG_CATEGORY_INIT (gst_videomixer_blend_debug, "videomixer_blend", 0,
|
||||||
"video mixer blending functions");
|
"video mixer blending functions");
|
||||||
|
|
Loading…
Reference in a new issue