mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-29 21:21:12 +00:00
tools/gst-inspect.c: List flags as hex so it's easier to deal with.
Original commit message from CVS: * tools/gst-inspect.c: (print_element_properties_info), (print_signal_info): List flags as hex so it's easier to deal with.
This commit is contained in:
parent
6efdf610a3
commit
0e6d20b423
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2006-09-15 Wim Taymans <wim@fluendo.com>
|
||||||
|
|
||||||
|
* tools/gst-inspect.c: (print_element_properties_info),
|
||||||
|
(print_signal_info):
|
||||||
|
List flags as hex so it's easier to deal with.
|
||||||
|
|
||||||
2006-09-15 Wim Taymans <wim@fluendo.com>
|
2006-09-15 Wim Taymans <wim@fluendo.com>
|
||||||
|
|
||||||
* docs/libs/gstreamer-libs-sections.txt:
|
* docs/libs/gstreamer-libs-sections.txt:
|
||||||
|
|
|
@ -488,7 +488,7 @@ print_element_properties_info (GstElement * element)
|
||||||
|
|
||||||
j = 0;
|
j = 0;
|
||||||
while (values[j].value_name) {
|
while (values[j].value_name) {
|
||||||
g_print ("\n%s%-23.23s (%d): \t%s", "",
|
g_print ("\n%s%-23.23s (0x%08x): \t%s", "",
|
||||||
_name, values[j].value, values[j].value_nick);
|
_name, values[j].value, values[j].value_nick);
|
||||||
j++;
|
j++;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue