diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2005-07-07 08:43:17 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2005-07-07 08:43:17 +0000 |
commit | b9880f8a26b87841bed1dad7184b1e4c408f1048 (patch) | |
tree | 75bb352857c3ee474e5439d5b89345acfa201b9e /gst/gstquery.h | |
parent | c985c341aba87526c5a0180b0ee9b22c29bf454a (diff) |
gst/gstquery.*: Remove old types
Original commit message from CVS:
* gst/gstquery.c:
* gst/gstquery.h:
Remove old types
Diffstat (limited to 'gst/gstquery.h')
-rw-r--r-- | gst/gstquery.h | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/gst/gstquery.h b/gst/gstquery.h index 8e5ef410d..7d5fdb0a4 100644 --- a/gst/gstquery.h +++ b/gst/gstquery.h @@ -36,16 +36,13 @@ G_BEGIN_DECLS typedef enum { GST_QUERY_NONE = 0, - GST_QUERY_TOTAL, /* deprecated, use POSITION */ - GST_QUERY_POSITION, - GST_QUERY_LATENCY, - GST_QUERY_JITTER, /* not in draft-query, necessary? */ - GST_QUERY_START, /* deprecated, use SEEKING */ - GST_QUERY_SEGMENT_END, /* deprecated, use SEEKING */ - GST_QUERY_RATE, /* not in draft-query, necessary? */ - GST_QUERY_SEEKING, - GST_QUERY_CONVERT, - GST_QUERY_FORMATS + GST_QUERY_POSITION, /* get current/end position */ + GST_QUERY_LATENCY, /* get current latency */ + GST_QUERY_JITTER, /* not in draft-query, necessary? */ + GST_QUERY_RATE, /* get current playback rate */ + GST_QUERY_SEEKING, /* get seeking start/stop positions */ + GST_QUERY_CONVERT, /* convert values */ + GST_QUERY_FORMATS /* query supported formats for convert */ } GstQueryType; /* rate is relative to 1000000 */ |