tools/gst-inspect.c: List flags as hex so it's easier to deal with.
authorWim Taymans <wim.taymans@gmail.com>
Fri, 15 Sep 2006 08:50:21 +0000 (08:50 +0000)
committerWim Taymans <wim.taymans@gmail.com>
Fri, 15 Sep 2006 08:50:21 +0000 (08:50 +0000)
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.

ChangeLog
tools/gst-inspect.c

index 3b9d389..42f3862 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 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:
        * libs/gst/base/gstbasesink.c: (gst_base_sink_wait_preroll),
        (gst_base_sink_do_sync):
index 1fedc8f..5f1ebcb 100644 (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++;
           }