mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-19 13:55:41 +00:00
basesink: Remove dead assignments.
sstart/sstop/rstart/rstop are all either: * assigned values later on before being used in 'do_times:' (EOS and buffers) * not used (non-EOS events)
This commit is contained in:
parent
ec3cd5d438
commit
9e4fa43657
1 changed files with 1 additions and 1 deletions
|
@ -1481,7 +1481,7 @@ gst_base_sink_get_sync_times (GstBaseSink * basesink, GstMiniObject * obj,
|
|||
priv = basesink->priv;
|
||||
|
||||
/* start with nothing */
|
||||
start = stop = sstart = sstop = rstart = rstop = -1;
|
||||
start = stop = -1;
|
||||
|
||||
if (G_UNLIKELY (GST_IS_EVENT (obj))) {
|
||||
GstEvent *event = GST_EVENT_CAST (obj);
|
||||
|
|
Loading…
Reference in a new issue