diff options
author | Edward Hervey <bilboed@bilboed.com> | 2010-09-10 18:33:34 +0200 |
---|---|---|
committer | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2011-05-17 09:28:06 +0200 |
commit | 64725facb5d9b51570096dd3a980b19247372a57 (patch) | |
tree | d619746da5fd4470efda7f3335eab81c40ee3076 /gst/gststructure.h | |
parent | ae46eb3a3848fa5991e987f08d59bc6a5b2bc9b5 (diff) |
gststructure: Add gst_structure_can_intersect API
Allows checking if two structures can intersect without having to
go through GstCaps
API: gst_structure_can_intersect
https://bugzilla.gnome.org/show_bug.cgi?id=629300
Diffstat (limited to 'gst/gststructure.h')
-rw-r--r-- | gst/gststructure.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gst/gststructure.h b/gst/gststructure.h index 1d0d812f7..97536c330 100644 --- a/gst/gststructure.h +++ b/gst/gststructure.h @@ -250,6 +250,8 @@ gboolean gst_structure_fixate_field_nearest_fraction (GstStructu gboolean gst_structure_is_equal(const GstStructure *structure1, GstStructure *structure2); +gboolean gst_structure_can_intersect(const GstStructure *struct1, + const GstStructure *struct2); G_END_DECLS |