sdpdemux: remove redundant assignment

Value of p is already set below just before being used. Removing this
first assignment that will be ignored.
This commit is contained in:
Luis de Bethencourt 2015-07-29 17:17:16 +01:00
parent 7ddaf8741b
commit d6b637532f

View file

@ -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)