summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2017-12-19 16:08:58 +0000
committerTim-Philipp Müller <tim@centricular.com>2017-12-19 16:09:23 +0000
commit93540dac16798a3ba9e7d7f6a6cba4e38841b1ea (patch)
tree7a08b205357755ae44301f91d005770c520438db
parent681087819372e57157a13fbf3ac813a3025a2a29 (diff)
downloadgst-omx-93540dac16798a3ba9e7d7f6a6cba4e38841b1ea.tar.gz
meson: fix subproject fallback for gstreamer-gl-1.0
It's now in -base.
-rw-r--r--meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/meson.build b/meson.build
index c38d937..e1f14b1 100644
--- a/meson.build
+++ b/meson.build
@@ -151,7 +151,7 @@ gstvideo_dep = dependency('gstreamer-video-1.0', version : gst_req,
fallback : ['gst-plugins-base', 'video_dep'])
gstgl_dep = dependency('gstreamer-gl-1.0', version : gst_req,
- fallback : ['gst-plugins-bad', 'gstgl_dep'], required : false)
+ fallback : ['gst-plugins-base', 'gstgl_dep'], required : false)
x11_dep = dependency('x11', required : false)
@@ -186,7 +186,7 @@ elif omx_target == 'rpi'
gl_winsys = gstgl_dep.get_pkgconfig_variable('gl_winsys').split(',')
gl_platforms = gstgl_dep.get_pkgconfig_variable('gl_platforms').split(',')
elif gstgl_dep.type_name() == 'internal'
- # XXX assume gst-plugins-bad was built with dispmanx and egl support
+ # XXX assume gst-plugins-base was built with dispmanx and egl support
gl_winsys = ['dispmanx']
gl_platforms = ['egl']
else