From: Wim Taymans Date: Fri, 15 Sep 2006 08:50:21 +0000 (+0000) Subject: tools/gst-inspect.c: List flags as hex so it's easier to deal with. X-Git-Tag: RELEASE-0_10_11~140 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0e6d20b423d64b4136be5256e98906972d00eab8;p=platform%2Fupstream%2Fgstreamer.git 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. --- diff --git a/ChangeLog b/ChangeLog index 3b9d389..42f3862 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,11 @@ 2006-09-15 Wim Taymans + * 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 + * docs/libs/gstreamer-libs-sections.txt: * libs/gst/base/gstbasesink.c: (gst_base_sink_wait_preroll), (gst_base_sink_do_sync): diff --git a/tools/gst-inspect.c b/tools/gst-inspect.c index 1fedc8f..5f1ebcb 100644 --- a/tools/gst-inspect.c +++ b/tools/gst-inspect.c @@ -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++; }