mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-26 18:20:44 +00:00
plugin: fix macro processor check
Instead of #ifdef it should be used #if becasuse USE_GST_GL_HELPERS is always defined in config.h, but it would be 0 or 1 depending on the configure output. https://bugzilla.gnome.org/show_bug.cgi?id=765702
This commit is contained in:
parent
3fcfd40fb5
commit
4f30d28ff0
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@
|
|||
#include <gst/video/gstvideosink.h>
|
||||
#include <gst/vaapi/gstvaapidisplay.h>
|
||||
|
||||
#ifdef USE_GST_GL_HELPERS
|
||||
#if USE_GST_GL_HELPERS
|
||||
# include <gst/gl/gstglcontext.h>
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue