diff options
author | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2013-03-28 15:35:13 +0100 |
---|---|---|
committer | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2013-03-29 16:40:21 +0100 |
commit | b90906103104216aad85ea262a97340280e70369 (patch) | |
tree | b82eea74a73bb71a827136d92cb8caadc85bcbe4 /gst/gst_private.h | |
parent | bd85fe34adbcb369f86f74ab384838a969f68d64 (diff) |
gst: Add new GstContext miniobject for sharing contexts in a pipeline
Diffstat (limited to 'gst/gst_private.h')
-rw-r--r-- | gst/gst_private.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gst/gst_private.h b/gst/gst_private.h index 99877c496..d42b48fdb 100644 --- a/gst/gst_private.h +++ b/gst/gst_private.h @@ -116,6 +116,7 @@ G_GNUC_INTERNAL void _priv_gst_sample_initialize (void); G_GNUC_INTERNAL void _priv_gst_tag_initialize (void); G_GNUC_INTERNAL void _priv_gst_value_initialize (void); G_GNUC_INTERNAL void _priv_gst_debug_init (void); +G_GNUC_INTERNAL void _priv_gst_context_initialize (void); /* Private registry functions */ G_GNUC_INTERNAL @@ -220,6 +221,7 @@ GST_EXPORT GstDebugCategory *GST_CAT_REGISTRY; GST_EXPORT GstDebugCategory *GST_CAT_QOS; GST_EXPORT GstDebugCategory *GST_CAT_META; GST_EXPORT GstDebugCategory *GST_CAT_LOCKING; +GST_EXPORT GstDebugCategory *GST_CAT_CONTEXT; /* Categories that should be completely private to * libgstreamer should be done like this: */ @@ -262,6 +264,7 @@ extern GstDebugCategory *_priv_GST_CAT_POLL; #define GST_CAT_POLL NULL #define GST_CAT_META NULL #define GST_CAT_LOCKING NULL +#define GST_CAT_CONTEXT NULL #endif |