mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 02:01:12 +00:00
libs/gst/base/gstbasesink.c: Add two breaks thats where missing.
Original commit message from CVS: * libs/gst/base/gstbasesink.c: (gst_base_sink_reset_qos), (gst_base_sink_render_object), (gst_base_sink_get_position): Add two breaks thats where missing.
This commit is contained in:
parent
9dc9602829
commit
86e3999647
2 changed files with 9 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
2007-06-14 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* libs/gst/base/gstbasesink.c: (gst_base_sink_reset_qos),
|
||||
(gst_base_sink_render_object), (gst_base_sink_get_position):
|
||||
Add two breaks thats where missing.
|
||||
|
||||
2007-06-14 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* docs/libs/gstreamer-libs-sections.txt:
|
||||
|
|
|
@ -1530,6 +1530,7 @@ gst_base_sink_reset_qos (GstBaseSink * sink)
|
|||
priv->avg_render = -1;
|
||||
priv->rendered = 0;
|
||||
priv->dropped = 0;
|
||||
|
||||
}
|
||||
|
||||
/* Checks if the object was scheduled too late.
|
||||
|
@ -1733,6 +1734,7 @@ gst_base_sink_render_object (GstBaseSink * basesink, GstPad * pad,
|
|||
/* configure the segment */
|
||||
gst_base_sink_configure_segment (basesink, pad, event,
|
||||
&basesink->segment);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
@ -2680,6 +2682,7 @@ gst_base_sink_get_position (GstBaseSink * basesink, GstFormat format,
|
|||
GST_TIME_FORMAT " + time %" GST_TIME_FORMAT,
|
||||
GST_TIME_ARGS (now), GST_TIME_ARGS (base),
|
||||
GST_TIME_ARGS (accum), GST_TIME_ARGS (time));
|
||||
break;
|
||||
}
|
||||
default:
|
||||
/* cannot answer other than TIME, we return FALSE, which will
|
||||
|
|
Loading…
Reference in a new issue