<div dir="ltr">case GST_MESSAGE_ELEMENT:<br>
{<br>
        const gchar *filename;<br>
        gint index;<br>
        GstClockTime timestamp, stream_time, running_time, duration;<br>
        guint64 offset, offset_end;<br>
<br>
        GstStructure *s = gst_message_get_structure (msg); <br>
        filename = gst_structure_get_string (s, "filename");<br>
        gst_structure_get_string (s, "index", &index);<br>
        gst_structure_get_clock_time (s,"timestamp",&timestamp);<br>
        gst_structure_get_clock_time (s,"stream-time",&stream_time)<wbr>;<br>
        gst_structure_get_clock_time (s,"running-time",&running_<wbr>time);<br>
        gst_structure_get_uint64(s, "offset", &offset)<br>
        gst_structure_get_uint64(s, "offset-end", &offset_end);<br><div>
}</div><div><br></div><div>How to print there value as some of them return boolean value<br></div><div><br></div><div><br></div><div>       gst_structure_get_clock_time (s,"timestamp",&timestamp);<br>
        gst_structure_get_clock_time (s,"stream-time",&stream_time)<wbr>;<br>
        gst_structure_get_clock_time (s,"running-time",&running_<wbr>time);<br>
        gst_structure_get_uint64(s, "offset", &offset)<br>
        gst_structure_get_uint64(s, "offset-end", &offset_end);<br></div></div>