<span style='font-family:Verdana'><span style='font-size:12px'>Hello all,<br /><br />I'm using a pipeline in the form<br /><span style="font-family: courier new;">appsrc ! volume ! audioconvert ! audioresample !alsasink</span><br /><br />I force the caps of appsrc and use some other properties like:<br /><br /><span style="font-family: courier new;">caps = gst_caps_new_simple ("audio/x-raw-int",<br />                               "endianness", G_TYPE_INT, DEFAULT_ENDIANESS,<br />                               "channels", G_TYPE_INT, DEFAULT_CHANNELS,<br />                               "width", G_TYPE_INT, DEFAULT_BITS_PER_SAMPLE,<br />                               "depth", G_TYPE_INT , DEFAULT_BITS_PER_SAMPLE,<br />                               "signed", G_TYPE_BOOLEAN, TRUE,<br />                               "rate", G_TYPE_INT , DEFAULT_SAMPLE_RATE,<br />                               NULL);<br /><br />    g_object_set (source, "caps", caps, NULL);<br />    g_object_set (source, "max-bytes", (guint64) 8192, NULL);<br />    g_object_set (source, "is-live", FALSE, NULL);<br />    g_object_set (source, "block", TRUE, NULL);<br />    g_object_set (sink, "sync", FALSE, NULL);</span><br /><br />From time to time I interogate the pipeline to get the current position using<br /><br /><span style="font-family: courier new;">GstFormat fmt = GST_FORMAT_TIME;<br />gint64 elapsed;<br /><br />gst_element_query_position(pipeline, &fmt, &elapsed);</span><br /><br />However this doesn't work, It used to work fine on Gstreamer 0.10.28, but now I'm using 0.10.36 and it doesn't work.<br /><br />Any help?<br />Thanks<br /><br /><br /> </span></span>