mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 16:21:17 +00:00
basesink: Remove dead assignments
This commit is contained in:
parent
51bc185f7f
commit
8eb9d55627
1 changed files with 0 additions and 5 deletions
|
@ -1631,11 +1631,8 @@ handle_stepping (GstBaseSink * sink, GstSegment * segment,
|
||||||
GstStepInfo * current, gint64 * cstart, gint64 * cstop, gint64 * rstart,
|
GstStepInfo * current, gint64 * cstart, gint64 * cstop, gint64 * rstart,
|
||||||
gint64 * rstop)
|
gint64 * rstop)
|
||||||
{
|
{
|
||||||
GstBaseSinkPrivate *priv;
|
|
||||||
gboolean step_end = FALSE;
|
gboolean step_end = FALSE;
|
||||||
|
|
||||||
priv = sink->priv;
|
|
||||||
|
|
||||||
/* see if we need to skip this buffer because of stepping */
|
/* see if we need to skip this buffer because of stepping */
|
||||||
switch (current->format) {
|
switch (current->format) {
|
||||||
case GST_FORMAT_TIME:
|
case GST_FORMAT_TIME:
|
||||||
|
@ -2670,7 +2667,6 @@ gst_base_sink_render_object (GstBaseSink * basesink, GstPad * pad,
|
||||||
again:
|
again:
|
||||||
late = FALSE;
|
late = FALSE;
|
||||||
step_end = FALSE;
|
step_end = FALSE;
|
||||||
ret = GST_FLOW_OK;
|
|
||||||
|
|
||||||
/* synchronize this object, non syncable objects return OK
|
/* synchronize this object, non syncable objects return OK
|
||||||
* immediatly. */
|
* immediatly. */
|
||||||
|
@ -3409,7 +3405,6 @@ gst_base_sink_chain_list (GstPad * pad, GstBufferList * list)
|
||||||
|
|
||||||
it = gst_buffer_list_iterate (list);
|
it = gst_buffer_list_iterate (list);
|
||||||
|
|
||||||
result = GST_FLOW_OK;
|
|
||||||
if (gst_buffer_list_iterator_next_group (it)) {
|
if (gst_buffer_list_iterator_next_group (it)) {
|
||||||
do {
|
do {
|
||||||
group = gst_buffer_list_iterator_merge_group (it);
|
group = gst_buffer_list_iterator_merge_group (it);
|
||||||
|
|
Loading…
Reference in a new issue