summaryrefslogtreecommitdiff
path: root/gst/gstquery.h
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian.droege@collabora.co.uk>2012-07-05 12:31:58 +0200
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2012-07-05 12:34:41 +0200
commit1b75a55b193404158f4879e9bb43d5f1213e0198 (patch)
tree3556f5f5b46aee08ab73d9874d41cf759f57b010 /gst/gstquery.h
parent67324c4998cac5aa1e39e053f2c9341c4a163636 (diff)
query: Remove the TOC query, it's not very useful now that we have sticky events
Diffstat (limited to 'gst/gstquery.h')
-rw-r--r--gst/gstquery.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/gst/gstquery.h b/gst/gstquery.h
index ba25cf0879..15913e7879 100644
--- a/gst/gstquery.h
+++ b/gst/gstquery.h
@@ -102,8 +102,6 @@ typedef enum {
* @GST_QUERY_ACCEPT_CAPS: the accept caps query
* @GST_QUERY_CAPS: the caps query
* @GST_QUERY_DRAIN: wait till all serialized data is consumed downstream
- * @GST_QUERY_TOC: query the full table of contents (TOC) with the marker
- * for an entry which can be used to extend received TOC. Since 0.10.37.
*
* Standard predefined Query types
*/
@@ -127,8 +125,7 @@ typedef enum {
GST_QUERY_SCHEDULING = GST_QUERY_MAKE_TYPE (150, FLAG(UPSTREAM)),
GST_QUERY_ACCEPT_CAPS = GST_QUERY_MAKE_TYPE (160, FLAG(BOTH)),
GST_QUERY_CAPS = GST_QUERY_MAKE_TYPE (170, FLAG(BOTH)),
- GST_QUERY_DRAIN = GST_QUERY_MAKE_TYPE (180, FLAG(DOWNSTREAM) | FLAG(SERIALIZED)),
- GST_QUERY_TOC = GST_QUERY_MAKE_TYPE (190, FLAG(BOTH))
+ GST_QUERY_DRAIN = GST_QUERY_MAKE_TYPE (180, FLAG(DOWNSTREAM) | FLAG(SERIALIZED))
} GstQueryType;
#undef FLAG
@@ -478,11 +475,6 @@ void gst_query_parse_caps_result (GstQuery *query, GstCaps **c
/* drain query */
GstQuery * gst_query_new_drain (void) G_GNUC_MALLOC;
-/* TOC query */
-GstQuery * gst_query_new_toc (void);
-void gst_query_set_toc (GstQuery *query, GstToc *toc, const gchar *extend_uid);
-void gst_query_parse_toc (GstQuery *query, GstToc **toc, gchar **extend_uid);
-
G_END_DECLS
#endif /* __GST_QUERY_H__ */