mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
videoaggregator: use macro to access aggregator src pad
Makes code a bit more readable
This commit is contained in:
parent
0a495cbea2
commit
a5e1f26385
1 changed files with 2 additions and 2 deletions
|
@ -816,7 +816,7 @@ gst_videoaggregator_pad_sink_setcaps (GstPad * pad, GstObject * parent,
|
|||
}
|
||||
|
||||
vaggpad->info = info;
|
||||
gst_pad_mark_reconfigure (vagg->aggregator.srcpad);
|
||||
gst_pad_mark_reconfigure (GST_AGGREGATOR_SRC_PAD (vagg));
|
||||
ret = TRUE;
|
||||
|
||||
GST_VIDEO_AGGREGATOR_UNLOCK (vagg);
|
||||
|
@ -1795,7 +1795,7 @@ gst_videoaggregator_release_pad (GstElement * element, GstPad * pad)
|
|||
GST_ELEMENT_CLASS (gst_videoaggregator_parent_class)->release_pad (GST_ELEMENT
|
||||
(vagg), pad);
|
||||
|
||||
gst_pad_mark_reconfigure (vagg->aggregator.srcpad);
|
||||
gst_pad_mark_reconfigure (GST_AGGREGATOR_SRC_PAD (vagg));
|
||||
|
||||
GST_VIDEO_AGGREGATOR_UNLOCK (vagg);
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue