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:
parent
7ddaf8741b
commit
d6b637532f
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user