mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
quark: add "object" quark
Add the object quark that will be used for the STREAM_STATUS messages.
This commit is contained in:
parent
d52114d449
commit
81c0840ab0
2 changed files with 3 additions and 2 deletions
|
@ -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];
|
||||
|
|
|
@ -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];
|
||||
|
|
Loading…
Reference in a new issue