summaryrefslogtreecommitdiff
path: root/gst/gsttypefind.h
diff options
context:
space:
mode:
Diffstat (limited to 'gst/gsttypefind.h')
-rw-r--r--gst/gsttypefind.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/gst/gsttypefind.h b/gst/gsttypefind.h
index 0008c3beb6..2c27178083 100644
--- a/gst/gsttypefind.h
+++ b/gst/gsttypefind.h
@@ -59,7 +59,7 @@ struct _GstTypeFind {
guint size);
void (* suggest) (gpointer data,
guint probability,
- const GstCaps2 * caps);
+ const GstCaps * caps);
gpointer data;
@@ -76,7 +76,7 @@ struct _GstTypeFindFactory {
GstTypeFindFunction function;
gchar ** extensions;
- GstCaps2 * caps; /* FIXME: not yet saved in registry */
+ GstCaps * caps; /* FIXME: not yet saved in registry */
gpointer user_data;
@@ -96,7 +96,7 @@ guint8 * gst_type_find_peek (GstTypeFind * find,
guint size);
void gst_type_find_suggest (GstTypeFind * find,
guint probability,
- const GstCaps2 * caps);
+ const GstCaps * caps);
guint64 gst_type_find_get_length (GstTypeFind * find);
/* registration interface */
@@ -105,7 +105,7 @@ gboolean gst_type_find_register (GstPlugin * plugin,
guint rank,
GstTypeFindFunction func,
gchar ** extensions,
- const GstCaps2 * possible_caps,
+ const GstCaps * possible_caps,
gpointer data);
/* typefinding interface */
@@ -115,7 +115,7 @@ GType gst_type_find_factory_get_type (void);
GList * gst_type_find_factory_get_list (void);
gchar ** gst_type_find_factory_get_extensions (const GstTypeFindFactory *factory);
-const GstCaps2 * gst_type_find_factory_get_caps (const GstTypeFindFactory *factory);
+const GstCaps * gst_type_find_factory_get_caps (const GstTypeFindFactory *factory);
void gst_type_find_factory_call_function (const GstTypeFindFactory *factory,
GstTypeFind *find);