mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 11:11:08 +00:00
Update for renamed aggregator pad API
https://bugzilla.gnome.org/show_bug.cgi?id=791204
This commit is contained in:
parent
2b933a2827
commit
944f74b834
1 changed files with 2 additions and 2 deletions
|
@ -1077,7 +1077,7 @@ gst_video_aggregator_fill_queues (GstVideoAggregator * vagg,
|
|||
|
||||
if (!is_eos)
|
||||
eos = FALSE;
|
||||
buf = gst_aggregator_pad_get_buffer (bpad);
|
||||
buf = gst_aggregator_pad_peek_buffer (bpad);
|
||||
if (buf) {
|
||||
GstClockTime start_time, end_time;
|
||||
|
||||
|
@ -1122,7 +1122,7 @@ gst_video_aggregator_fill_queues (GstVideoAggregator * vagg,
|
|||
continue;
|
||||
}
|
||||
gst_buffer_unref (buf);
|
||||
buf = gst_aggregator_pad_steal_buffer (bpad);
|
||||
buf = gst_aggregator_pad_pop_buffer (bpad);
|
||||
gst_buffer_replace (&pad->buffer, buf);
|
||||
if (pad->priv->pending_vinfo.finfo) {
|
||||
pad->info = pad->priv->pending_vinfo;
|
||||
|
|
Loading…
Reference in a new issue