summaryrefslogtreecommitdiffstats
path: root/gst
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2007-05-31 15:57:07 +0000
committerWim Taymans <wim.taymans@gmail.com>2007-05-31 15:57:07 +0000
commit0b2e6f1c901d105c53141cd9973e3c206c8086ec (patch)
treeb0c4109f9bd80dd0ba83d19c61442ad513ee2416 /gst
parent70615818aa0ad26ac6decc050e4583e9e4be0494 (diff)
gst/rtsp/rtspextwms.c: Fix compile warning when debug is disabled as spotted bu Saur on IRC.
Original commit message from CVS: * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_configure_stream): Fix compile warning when debug is disabled as spotted bu Saur on IRC.
Diffstat (limited to 'gst')
-rw-r--r--gst/rtsp/rtspextwms.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/gst/rtsp/rtspextwms.c b/gst/rtsp/rtspextwms.c
index e336176a..c4ef468e 100644
--- a/gst/rtsp/rtspextwms.c
+++ b/gst/rtsp/rtspextwms.c
@@ -145,10 +145,12 @@ no_config:
static gboolean
rtsp_ext_wms_configure_stream (RTSPExtensionCtx * ctx, GstRTSPStream * stream)
{
- GstRTSPSrc *src = (GstRTSPSrc *) ctx->src;
+ GstRTSPSrc *src;
GstStructure *s;
const gchar *encoding;
+ src = (GstRTSPSrc *) ctx->src;
+
s = gst_caps_get_structure (stream->caps, 0);
encoding = gst_structure_get_string (s, "encoding-name");