summaryrefslogtreecommitdiff
path: root/ext/hls/m3u8.c
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2015-10-02 22:24:19 +0300
committerSebastian Dröge <sebastian@centricular.com>2015-10-02 22:24:19 +0300
commitf5dd41d71009fe70d4f1c69de3604db996fd71ee (patch)
tree2248e725b2e85625ece97aa9cf4b58b7471eba0d /ext/hls/m3u8.c
parentf8e11fe656a360004f9874befd1d217cda407659 (diff)
downloadgstreamer-plugins-bad-f5dd41d71009fe70d4f1c69de3604db996fd71ee.tar.gz
Update GLib dependency to 2.40.0
Diffstat (limited to 'ext/hls/m3u8.c')
-rw-r--r--ext/hls/m3u8.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/ext/hls/m3u8.c b/ext/hls/m3u8.c
index b931749fa..929e1d797 100644
--- a/ext/hls/m3u8.c
+++ b/ext/hls/m3u8.c
@@ -30,25 +30,6 @@
#define GST_CAT_DEFAULT fragmented_debug
-#if !GLIB_CHECK_VERSION (2, 33, 4)
-#define g_list_copy_deep gst_g_list_copy_deep
-static GList *
-gst_g_list_copy_deep (GList * list, GCopyFunc func, gpointer user_data)
-{
- list = g_list_copy (list);
-
- if (func != NULL) {
- GList *l;
-
- for (l = list; l != NULL; l = l->next) {
- l->data = func (l->data, user_data);
- }
- }
-
- return list;
-}
-#endif
-
static GstM3U8 *gst_m3u8_new (void);
static void gst_m3u8_free (GstM3U8 * m3u8);
static gboolean gst_m3u8_update (GstM3U8Client * client, GstM3U8 * m3u8,