mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 05:16:13 +00:00
realmedia: Remove dead assignments. The results are never read.
This commit is contained in:
parent
0d32a3703d
commit
2190ad3962
2 changed files with 2 additions and 2 deletions
|
@ -188,7 +188,7 @@ gst_asm_scan_string (GstASMScan * scan, gchar delim)
|
||||||
scan->val[i] = '\0';
|
scan->val[i] = '\0';
|
||||||
|
|
||||||
if (ch == delim)
|
if (ch == delim)
|
||||||
ch = NEXT_CHAR (scan);
|
NEXT_CHAR (scan);
|
||||||
|
|
||||||
scan->token = GST_ASM_TOKEN_STRING;
|
scan->token = GST_ASM_TOKEN_STRING;
|
||||||
}
|
}
|
||||||
|
|
|
@ -420,7 +420,7 @@ gst_rdt_depay_chain (GstPad * pad, GstBuffer * buf)
|
||||||
rdtdepay->header = NULL;
|
rdtdepay->header = NULL;
|
||||||
|
|
||||||
/* push header data first */
|
/* push header data first */
|
||||||
ret = gst_rdt_depay_push (rdtdepay, out);
|
gst_rdt_depay_push (rdtdepay, out);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* save timestamp */
|
/* save timestamp */
|
||||||
|
|
Loading…
Reference in a new issue