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:
Wim Taymans 2006-09-15 08:50:21 +00:00
parent 6efdf610a3
commit 0e6d20b423
2 changed files with 7 additions and 1 deletions

View file

@ -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>
* docs/libs/gstreamer-libs-sections.txt:

View file

@ -488,7 +488,7 @@ print_element_properties_info (GstElement * element)
j = 0;
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);
j++;
}