mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 08:41:07 +00:00
urisourcebin: Remove unused signal handler variable
Remove never used handler id https://bugzilla.gnome.org/show_bug.cgi?id=776458
This commit is contained in:
parent
9e86b2931d
commit
46c6e92abd
1 changed files with 1 additions and 3 deletions
|
@ -123,7 +123,6 @@ struct _GstURISourceBin
|
||||||
|
|
||||||
GstElement *source;
|
GstElement *source;
|
||||||
GstElement *typefind;
|
GstElement *typefind;
|
||||||
guint have_type_id; /* have-type signal id from typefind */
|
|
||||||
|
|
||||||
GstElement *demuxer; /* Adaptive demuxer if any */
|
GstElement *demuxer; /* Adaptive demuxer if any */
|
||||||
GSList *out_slots;
|
GSList *out_slots;
|
||||||
|
@ -1991,8 +1990,7 @@ setup_streaming (GstURISourceBin * urisrc)
|
||||||
|
|
||||||
/* connect a signal to find out when the typefind element found
|
/* connect a signal to find out when the typefind element found
|
||||||
* a type */
|
* a type */
|
||||||
urisrc->have_type_id =
|
g_signal_connect (urisrc->typefind, "have-type",
|
||||||
g_signal_connect (urisrc->typefind, "have-type",
|
|
||||||
G_CALLBACK (type_found), urisrc);
|
G_CALLBACK (type_found), urisrc);
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
|
Loading…
Reference in a new issue