summaryrefslogtreecommitdiff
path: root/gst/sdp
diff options
context:
space:
mode:
authorLuis de Bethencourt <luis@debethencourt.com>2015-07-29 17:17:16 +0100
committerLuis de Bethencourt <luis@debethencourt.com>2015-07-29 17:19:33 +0100
commitd6b637532f8b65d77a86b4ce951caa8d99b699f0 (patch)
tree9a0ec3bb10073d85e81345afabb52289db8f25cd /gst/sdp
parent7ddaf8741bd628abb249eb65da75576b630996b2 (diff)
sdpdemux: remove redundant assignment
Value of p is already set below just before being used. Removing this first assignment that will be ignored.
Diffstat (limited to 'gst/sdp')
-rw-r--r--gst/sdp/gstsdpdemux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/sdp/gstsdpdemux.c b/gst/sdp/gstsdpdemux.c
index 908390e59..010b0c546 100644
--- a/gst/sdp/gstsdpdemux.c
+++ b/gst/sdp/gstsdpdemux.c
@@ -524,7 +524,7 @@ gst_sdp_demux_parse_rtpmap (const gchar * rtpmap, gint * payload, gchar ** name,
{
gchar *p, *t;
- t = p = (gchar *) rtpmap;
+ p = (gchar *) rtpmap;
PARSE_INT (p, " ", *payload);
if (*payload == -1)