From 8b90dd949a89f5ded58a0544b672e550cea97c29 Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Mon, 2 Mar 2020 18:54:59 +0530 Subject: [PATCH] Cerbero has moved from gnutls+openssl to only openssl --- playback/player/ios/GstPlay/gst_ios_init.h | 2 +- playback/player/ios/GstPlay/gst_ios_init.m | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/playback/player/ios/GstPlay/gst_ios_init.h b/playback/player/ios/GstPlay/gst_ios_init.h index 42787128d8..4c12972697 100644 --- a/playback/player/ios/GstPlay/gst_ios_init.h +++ b/playback/player/ios/GstPlay/gst_ios_init.h @@ -30,7 +30,7 @@ G_PASTE(g_io_, G_PASTE(name, _load)) (NULL) //#define GST_IOS_PLUGINS_GES -#define GST_IOS_GIO_MODULE_GNUTLS +#define GST_IOS_GIO_MODULE_OPENSSL void gst_ios_init (void); diff --git a/playback/player/ios/GstPlay/gst_ios_init.m b/playback/player/ios/GstPlay/gst_ios_init.m index 592dbf8aea..f5d9f5f50e 100644 --- a/playback/player/ios/GstPlay/gst_ios_init.m +++ b/playback/player/ios/GstPlay/gst_ios_init.m @@ -528,8 +528,8 @@ GST_PLUGIN_STATIC_DECLARE(rtmp); GST_PLUGIN_STATIC_DECLARE(nle); #endif -#if defined(GST_IOS_GIO_MODULE_GNUTLS) - GST_G_IO_MODULE_DECLARE(gnutls); +#if defined(GST_IOS_GIO_MODULE_OPENSSL) + GST_G_IO_MODULE_DECLARE(openssl); #endif void @@ -564,8 +564,8 @@ gst_ios_init (void) ca_certificates = g_build_filename (resources_dir, "ssl", "certs", "ca-certificates.crt", NULL); g_setenv ("CA_CERTIFICATES", ca_certificates, TRUE); -#if defined(GST_IOS_GIO_MODULE_GNUTLS) - GST_G_IO_MODULE_LOAD(gnutls); +#if defined(GST_IOS_GIO_MODULE_OPENSSL) + GST_G_IO_MODULE_LOAD(openssl); #endif if (ca_certificates) {