mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
gst: Documentation typo fix in caps & pad APIs
gst_caps_can_intersect() & GST_PAD_IS_ACCEPT_INTERSECT() documentation typo fix. https://bugzilla.gnome.org/show_bug.cgi?id=755257
This commit is contained in:
parent
b07b39d013
commit
c12bd5d807
2 changed files with 2 additions and 2 deletions
|
@ -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 */
|
||||
|
|
|
@ -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.
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue