mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-30 12:10:37 +00:00
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
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue