gst: Documentation typo fix in caps & pad APIs
authorVikram Fugro <vikram.fugro@gmail.com>
Sat, 19 Sep 2015 11:27:26 +0000 (16:57 +0530)
committerSebastian Dröge <sebastian@centricular.com>
Sat, 19 Sep 2015 15:57:55 +0000 (17:57 +0200)
gst_caps_can_intersect() & GST_PAD_IS_ACCEPT_INTERSECT()
documentation typo fix.

https://bugzilla.gnome.org/show_bug.cgi?id=755257

gst/gstcaps.c
gst/gstpad.h

index 6acc564..a8722da 100644 (file)
@@ -1446,7 +1446,7 @@ gst_caps_can_intersect (const GstCaps * caps1, const GstCaps * caps2)
   len1 = GST_CAPS_LEN (caps1);
   len2 = GST_CAPS_LEN (caps2);
   for (i = 0; i < len1 + len2 - 1; i++) {
-    /* superset index goes from 0 to sgst_caps_structure_intersectuperset->structs->len-1 */
+    /* superset index goes from 0 to superset->structs->len-1 */
     j = MIN (i, len1 - 1);
     /* subset index stays 0 until i reaches superset->structs->len, then it
      * counts up from 1 to subset->structs->len - 1 */
index 157d147..5f93112 100644 (file)
@@ -1117,7 +1117,7 @@ struct _GstPadClass {
  * @pad: a #GstPad
  *
  * Check if the pad's accept intersect flag is set. The default accept-caps
- * handler will check it the caps intersect the query-caps result instead of
+ * handler will check if the caps intersect the query-caps result instead of
  * checking for a subset. This is interesting for parser elements that can
  * accept incompletely specified caps.
  */