From 90426f57518dfa391b4a591592b719a493651973 Mon Sep 17 00:00:00 2001 From: Jan Schmidt Date: Wed, 2 Mar 2022 03:45:48 +1100 Subject: [PATCH] playbin3: Remove stale code Remove now-unused get_stream_type_for_event() function. Part-of: --- .../gst-plugins-base/gst/playback/gstplaybin3.c | 25 ---------------------- 1 file changed, 25 deletions(-) diff --git a/subprojects/gst-plugins-base/gst/playback/gstplaybin3.c b/subprojects/gst-plugins-base/gst/playback/gstplaybin3.c index 55f7165..5c097c9 100644 --- a/subprojects/gst-plugins-base/gst/playback/gstplaybin3.c +++ b/subprojects/gst-plugins-base/gst/playback/gstplaybin3.c @@ -2247,31 +2247,6 @@ get_source_group_for_streams (GstPlayBin3 * playbin, GstEvent * event) return res; } -static GstStreamType -get_stream_type_for_event (GstStreamCollection * collection, GstEvent * event) -{ - GList *stream_list = NULL; - GList *tmp; - GstStreamType res = 0; - guint i, len; - - gst_event_parse_select_streams (event, &stream_list); - len = gst_stream_collection_get_size (collection); - for (tmp = stream_list; tmp; tmp = tmp->next) { - gchar *stid = (gchar *) tmp->data; - - for (i = 0; i < len; i++) { - GstStream *stream = gst_stream_collection_get_stream (collection, i); - if (!g_strcmp0 (stid, gst_stream_get_stream_id (stream))) { - res |= gst_stream_get_stream_type (stream); - } - } - } - g_list_free_full (stream_list, g_free); - - return res; -} - static gboolean gst_play_bin3_send_event (GstElement * element, GstEvent * event) { -- 2.7.4