mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
added GST_CAT_PARAMS
Original commit message from CVS: added GST_CAT_PARAMS
This commit is contained in:
parent
f356cbc4f0
commit
e1798daa79
2 changed files with 4 additions and 1 deletions
|
@ -57,6 +57,7 @@ static gchar *_gst_info_category_strings[] = {
|
|||
"NEGOTIATION",
|
||||
"REFCOUNTING",
|
||||
"EVENT",
|
||||
"PARAMS",
|
||||
};
|
||||
|
||||
/**
|
||||
|
@ -110,6 +111,7 @@ const gchar *_gst_category_colors[32] = {
|
|||
[GST_CAT_NEGOTIATION] = "07;34",
|
||||
[GST_CAT_REFCOUNTING] = "00;34:42",
|
||||
[GST_CAT_EVENT] = "01;37;41", // !!
|
||||
[GST_CAT_PARAMS] = "00;30;43", // !!
|
||||
|
||||
[31] = "",
|
||||
};
|
||||
|
|
|
@ -89,7 +89,8 @@ enum {
|
|||
GST_CAT_NEGOTIATION, // Caps Negotiation stuff
|
||||
GST_CAT_REFCOUNTING, // Ref Counting stuff
|
||||
GST_CAT_EVENT, // Event system
|
||||
|
||||
GST_CAT_PARAMS, // Dynamic parameters
|
||||
|
||||
GST_CAT_MAX_CATEGORY = 31
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue