aggregator: code cleanups
authorStefan Sauer <ensonic@users.sf.net>
Thu, 13 Jul 2017 19:55:55 +0000 (21:55 +0200)
committerStefan Sauer <ensonic@users.sf.net>
Thu, 13 Jul 2017 20:02:17 +0000 (22:02 +0200)
Fix comment typos, some copy'n'paste in logging. Add more doc comments.

gst-libs/gst/audio/gstaudioaggregator.c
gst-libs/gst/base/gstaggregator.c

index 398e2cf738158fb2aa3bce7c5f550bd421f35e31..62174c6e8e3cd01778c7ad6a5c41f0e41752fe58 100644 (file)
@@ -394,7 +394,7 @@ gst_audio_aggregator_src_event (GstAggregator * agg, GstEvent * event)
       gst_event_parse_seek (event, &rate, &seek_format, &flags, &start_type,
           &start, &stop_type, &stop);
 
-      /* Check the seeking parametters before linking up */
+      /* Check the seeking parameters before linking up */
       if ((start_type != GST_SEEK_TYPE_NONE)
           && (start_type != GST_SEEK_TYPE_SET)) {
         result = FALSE;
index 315b8b820ec287404670c298496a4f92bbfb176f..11c7f0db5ad4d52604c790d26ecc578338186ce4 100644 (file)
@@ -356,6 +356,8 @@ static GstFlowReturn gst_aggregator_pad_chain_internal (GstAggregator * self,
  *
  * This method guarantees that @func will be called only once for each
  * sink pad.
+ *
+ * Returns: %FALSE if there are no sinkpads or if @func returned %FALSE
  */
 gboolean
 gst_aggregator_iterate_sinkpads (GstAggregator * self,
@@ -779,9 +781,8 @@ check_events (GstAggregator * self, GstAggregatorPad * pad, gpointer user_data)
       if (klass == NULL)
         klass = GST_AGGREGATOR_GET_CLASS (self);
 
-      GST_LOG_OBJECT (pad, "Processing %" GST_PTR_FORMAT, event);
-
       if (event) {
+        GST_LOG_OBJECT (pad, "Processing %" GST_PTR_FORMAT, event);
         gst_event_ref (event);
         ret = klass->sink_event (self, pad, event);
 
@@ -794,7 +795,7 @@ check_events (GstAggregator * self, GstAggregatorPad * pad, gpointer user_data)
       }
 
       if (query) {
-        GST_LOG_OBJECT (pad, "Processing %" GST_PTR_FORMAT, event);
+        GST_LOG_OBJECT (pad, "Processing %" GST_PTR_FORMAT, query);
         ret = klass->sink_query (self, pad, query);
 
         PAD_LOCK (pad);