From e6bbe6fd7aa14e61e6e0630946fc3fb7bd71e4b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Cerveau?= Date: Fri, 3 Jan 2020 21:34:10 +0000 Subject: [PATCH] ios: use dash to register plugin The dash plugin contains now: - dashdemux - dashsink https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/merge_requests/704 --- playback/player/ios/GstPlay/gst_ios_init.m | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/playback/player/ios/GstPlay/gst_ios_init.m b/playback/player/ios/GstPlay/gst_ios_init.m index 233a6b510e..592dbf8aea 100644 --- a/playback/player/ios/GstPlay/gst_ios_init.m +++ b/playback/player/ios/GstPlay/gst_ios_init.m @@ -170,8 +170,8 @@ GST_PLUGIN_STATIC_DECLARE(adpcmdec); #if defined(GST_IOS_PLUGIN_ADPCMENC) || defined(GST_IOS_PLUGINS_CODECS) GST_PLUGIN_STATIC_DECLARE(adpcmenc); #endif -#if defined(GST_IOS_PLUGIN_DASHDEMUX) || defined(GST_IOS_PLUGINS_CODECS) -GST_PLUGIN_STATIC_DECLARE(dashdemux); +#if defined(GST_IOS_PLUGIN_DASH) || defined(GST_IOS_PLUGINS_CODECS) +GST_PLUGIN_STATIC_DECLARE(dash); #endif #if defined(GST_IOS_PLUGIN_DVBSUBOVERLAY) || defined(GST_IOS_PLUGINS_CODECS) GST_PLUGIN_STATIC_DECLARE(dvbsuboverlay); @@ -748,8 +748,8 @@ gst_ios_init (void) #if defined(GST_IOS_PLUGIN_ADPCMENC) || defined(GST_IOS_PLUGINS_CODECS) GST_PLUGIN_STATIC_REGISTER(adpcmenc); #endif -#if defined(GST_IOS_PLUGIN_DASHDEMUX) || defined(GST_IOS_PLUGINS_CODECS) - GST_PLUGIN_STATIC_REGISTER(dashdemux); +#if defined(GST_IOS_PLUGIN_DASH) || defined(GST_IOS_PLUGINS_CODECS) + GST_PLUGIN_STATIC_REGISTER(dash); #endif #if defined(GST_IOS_PLUGIN_DVBSUBOVERLAY) || defined(GST_IOS_PLUGINS_CODECS) GST_PLUGIN_STATIC_REGISTER(dvbsuboverlay);