mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
Merge remote-tracking branch 'origin/0.10'
Conflicts: libs/gst/base/gstcollectpads2.c
This commit is contained in:
commit
225721f578
1 changed files with 11 additions and 7 deletions
|
@ -1496,8 +1496,12 @@ gst_collect_pads2_recalculate_waiting (GstCollectPads2 * pads)
|
|||
int cmp_res;
|
||||
|
||||
/* check if pad has a segment */
|
||||
if (data->segment.format == GST_FORMAT_UNDEFINED)
|
||||
continue;
|
||||
if (data->segment.format == GST_FORMAT_UNDEFINED) {
|
||||
GST_WARNING_OBJECT (pads,
|
||||
"GstCollectPads2 has no time segment, assuming 0 based.");
|
||||
gst_segment_init (&data->segment, GST_FORMAT_TIME);
|
||||
GST_COLLECT_PADS2_STATE_SET (data, GST_COLLECT_PADS2_STATE_NEW_SEGMENT);
|
||||
}
|
||||
|
||||
/* check segment format */
|
||||
if (data->segment.format != GST_FORMAT_TIME) {
|
||||
|
@ -1796,20 +1800,20 @@ gst_collect_pads2_event_default (GstCollectPads2 * pads, GstCollectData2 * data,
|
|||
|
||||
GST_DEBUG_OBJECT (data->pad, "got segment %" GST_SEGMENT_FORMAT, &seg);
|
||||
|
||||
data->segment = seg;
|
||||
GST_COLLECT_PADS2_STATE_SET (data, GST_COLLECT_PADS2_STATE_NEW_SEGMENT);
|
||||
|
||||
/* default muxing functionality */
|
||||
if (!buffer_func)
|
||||
goto newsegment_done;
|
||||
|
||||
/* default collection can not handle other segment formats than time */
|
||||
if (seg.format != GST_FORMAT_TIME) {
|
||||
GST_ERROR_OBJECT (pads, "GstCollectPads2 default collecting "
|
||||
"can only handle time segments.");
|
||||
GST_WARNING_OBJECT (pads, "GstCollectPads2 default collecting "
|
||||
"can only handle time segments. Non time segment ignored.");
|
||||
goto newsegment_done;
|
||||
}
|
||||
|
||||
data->segment = seg;
|
||||
GST_COLLECT_PADS2_STATE_SET (data, GST_COLLECT_PADS2_STATE_NEW_SEGMENT);
|
||||
|
||||
/* If oldest time is not known, or current pad got newsegment;
|
||||
* recalculate the state */
|
||||
if (!pads->priv->earliest_data || pads->priv->earliest_data == data) {
|
||||
|
|
Loading…
Reference in a new issue