videoaggregator: use macro to access aggregator src pad
authorThiago Santos <thiagoss@osg.samsung.com>
Wed, 6 May 2015 16:08:11 +0000 (13:08 -0300)
committerThiago Santos <thiagoss@osg.samsung.com>
Mon, 8 Jun 2015 15:09:51 +0000 (12:09 -0300)
Makes code a bit more readable

gst-libs/gst/video/gstvideoaggregator.c

index 6c154bdfc62b9facb59dd3ffe6212a31ac555076..110d022dca12e42b347f8c43d843ea9f640703a6 100644 (file)
@@ -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;