From 08a090c89c2b4ef6007ab505287911058303934c Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Sat, 18 Apr 2009 18:40:48 +0200 Subject: rtspsrc: Remove dead variable. 'stream' is never read after. --- gst/rtsp/gstrtspsrc.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'gst/rtsp') diff --git a/gst/rtsp/gstrtspsrc.c b/gst/rtsp/gstrtspsrc.c index 185f363b..85150c93 100644 --- a/gst/rtsp/gstrtspsrc.c +++ b/gst/rtsp/gstrtspsrc.c @@ -4397,7 +4397,6 @@ gst_rtspsrc_open (GstRTSPSrc * src) guint size; gint i, n_streams; GstSDPMessage sdp = { 0 }; - GstRTSPStream *stream = NULL; gchar *respcont = NULL; GstRTSPUrl *url; @@ -4538,7 +4537,7 @@ restart: /* create streams */ n_streams = gst_sdp_message_medias_len (&sdp); for (i = 0; i < n_streams; i++) { - stream = gst_rtspsrc_create_stream (src, &sdp, i); + gst_rtspsrc_create_stream (src, &sdp, i); } src->state = GST_RTSP_STATE_INIT; -- cgit