gst/gstquark.*: Add some more quarks for new message. See #510354.

Original commit message from CVS:
* gst/gstquark.c:
* gst/gstquark.h:
Add some more quarks for new message. See #510354.
This commit is contained in:
Wim Taymans 2008-10-06 15:21:14 +00:00
parent 54a3c560da
commit 11588b2db5
3 changed files with 10 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2008-10-06 Wim Taymans <wim.taymans@collabora.co.uk>
* gst/gstquark.c:
* gst/gstquark.h:
Add some more quarks for new message. See #510354.
2008-10-06 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* docs/libs/gstreamer-libs-docs.sgml:

View file

@ -34,7 +34,7 @@ static const gchar *_quark_strings[] = {
"avg-in-rate", "avg-out-rate", "buffering-left",
"estimated-total", "old-state", "new-state", "pending-state",
"clock", "ready", "position", "new-base-time", "live", "min-latency",
"max-latency", "busy"
"max-latency", "busy", "type", "owner"
};
GQuark _priv_gst_quark_table[GST_QUARK_MAX];

View file

@ -60,8 +60,10 @@ typedef enum _GstQuarkId
GST_QUARK_MIN_LATENCY = 31,
GST_QUARK_MAX_LATENCY = 32,
GST_QUARK_BUSY = 33,
GST_QUARK_TYPE = 34,
GST_QUARK_OWNER = 35,
GST_QUARK_MAX = 34
GST_QUARK_MAX = 36
} GstQuarkId;
extern GQuark _priv_gst_quark_table[GST_QUARK_MAX];