Hi All,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; I am writing a application which dose a trickmode operation on the stored file. When i do PAUSE and then PLAY it resumes play from where i had PAUSED. But when i do seek forward by setting the rate to 2.0 / 4.0 FORWARD happens but when i press PLAY the play back dose not resume from where i pressed PLAY but instead starts playing from offset where i had selected to forward.<br>
To play while forwarding i send this seek event.<br><br>gst_element_seek( pipeline, 1.0,GST_FORMAT_TIME ,GST_SEEK_FLAG_FLUSH ,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; GST_SEEK_TYPE_CUR, 0, GST_SEEK_TYPE_NONE, -1 );<br>
<br>Is this this the correct seek event format??<br>