From 9e1a33334be0d052a0b8b100c2a8243d96561d00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Mon, 27 Feb 2023 17:24:16 +0000 Subject: [PATCH] examples: iOS: GstPlay: update for pending ivorbisdec plugin removal See https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/1103 Part-of: --- .../gst-examples/playback/player/ios/GstPlay/gst_ios_init.m | 6 ------ 1 file changed, 6 deletions(-) diff --git a/subprojects/gst-examples/playback/player/ios/GstPlay/gst_ios_init.m b/subprojects/gst-examples/playback/player/ios/GstPlay/gst_ios_init.m index 7395296802..e239945203 100644 --- a/subprojects/gst-examples/playback/player/ios/GstPlay/gst_ios_init.m +++ b/subprojects/gst-examples/playback/player/ios/GstPlay/gst_ios_init.m @@ -80,9 +80,6 @@ GST_PLUGIN_STATIC_DECLARE(vorbis); #if defined(GST_IOS_PLUGIN_OPUS) || defined(GST_IOS_PLUGINS_CODECS) GST_PLUGIN_STATIC_DECLARE(opus); #endif -#if defined(GST_IOS_PLUGIN_IVORBISDEC) || defined(GST_IOS_PLUGINS_CODECS) -GST_PLUGIN_STATIC_DECLARE(ivorbisdec); -#endif #if defined(GST_IOS_PLUGIN_ALAW) || defined(GST_IOS_PLUGINS_CODECS) GST_PLUGIN_STATIC_DECLARE(alaw); #endif @@ -649,9 +646,6 @@ gst_ios_init (void) #if defined(GST_IOS_PLUGIN_OPUS) || defined(GST_IOS_PLUGINS_CODECS) GST_PLUGIN_STATIC_REGISTER(opus); #endif -#if defined(GST_IOS_PLUGIN_IVORBISDEC) || defined(GST_IOS_PLUGINS_CODECS) - GST_PLUGIN_STATIC_REGISTER(ivorbisdec); -#endif #if defined(GST_IOS_PLUGIN_ALAW) || defined(GST_IOS_PLUGINS_CODECS) GST_PLUGIN_STATIC_REGISTER(alaw); #endif