rtspsrc: Remove dead assignment.

t is being overwritten after, before it's used.
This commit is contained in:
Edward Hervey 2009-04-18 18:48:55 +02:00
parent 84b6d07c75
commit 4c60f9ef29

View file

@ -948,7 +948,7 @@ gst_rtspsrc_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)