summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2020-09-19 11:39:36 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2020-09-19 11:45:30 +0530
commit43f8275ca9ea8108df03c1d07a6eb9049219b0e7 (patch)
tree7a65fbefbb54b57a9cbdcfb2e4bcb2cce98d0c5e
parent1f66cda890313d7accc016a2d5ec7d411d17244a (diff)
playback: Remove libvisual plugin from iOS GstPlayer example
We won't be building the plugin in Cerbero anymore, so remove it from the iOS example too. See: https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/605 Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-examples/-/merge_requests/26>
-rw-r--r--playback/player/ios/GstPlay/gst_ios_init.m6
1 files changed, 0 insertions, 6 deletions
diff --git a/playback/player/ios/GstPlay/gst_ios_init.m b/playback/player/ios/GstPlay/gst_ios_init.m
index f5d9f5f..3de3791 100644
--- a/playback/player/ios/GstPlay/gst_ios_init.m
+++ b/playback/player/ios/GstPlay/gst_ios_init.m
@@ -290,9 +290,6 @@ GST_PLUGIN_STATIC_DECLARE(rtspclientsink);
#if defined(GST_IOS_PLUGIN_PLAYBACK) || defined(GST_IOS_PLUGINS_PLAYBACK)
GST_PLUGIN_STATIC_DECLARE(playback);
#endif
-#if defined(GST_IOS_PLUGIN_LIBVISUAL) || defined(GST_IOS_PLUGINS_VIS)
-GST_PLUGIN_STATIC_DECLARE(libvisual);
-#endif
#if defined(GST_IOS_PLUGIN_GOOM) || defined(GST_IOS_PLUGINS_VIS)
GST_PLUGIN_STATIC_DECLARE(goom);
#endif
@@ -868,9 +865,6 @@ gst_ios_init (void)
#if defined(GST_IOS_PLUGIN_PLAYBACK) || defined(GST_IOS_PLUGINS_PLAYBACK)
GST_PLUGIN_STATIC_REGISTER(playback);
#endif
-#if defined(GST_IOS_PLUGIN_LIBVISUAL) || defined(GST_IOS_PLUGINS_VIS)
- GST_PLUGIN_STATIC_REGISTER(libvisual);
-#endif
#if defined(GST_IOS_PLUGIN_GOOM) || defined(GST_IOS_PLUGINS_VIS)
GST_PLUGIN_STATIC_REGISTER(goom);
#endif