quark: add "object" quark

Add the object quark that will be used for the STREAM_STATUS messages.
This commit is contained in:
Wim Taymans 2009-04-21 13:05:17 +02:00 committed by Wim Taymans
parent d52114d449
commit 81c0840ab0
2 changed files with 3 additions and 2 deletions

View file

@ -37,7 +37,7 @@ static const gchar *_quark_strings[] = {
"max-latency", "busy", "type", "owner", "update", "applied-rate",
"start", "stop", "minsize", "maxsize", "async", "proportion",
"diff", "timestamp", "flags", "cur-type", "cur", "stop-type",
"latency", "uri"
"latency", "uri", "object"
};
GQuark _priv_gst_quark_table[GST_QUARK_MAX];

View file

@ -78,8 +78,9 @@ typedef enum _GstQuarkId
GST_QUARK_STOP_TYPE = 49,
GST_QUARK_LATENCY = 50,
GST_QUARK_URI = 51,
GST_QUARK_OBJECT = 52,
GST_QUARK_MAX = 52
GST_QUARK_MAX = 53
} GstQuarkId;
extern GQuark _priv_gst_quark_table[GST_QUARK_MAX];