Hi all,<br><br>I am writing an application to play a video file at different playback rates.<br>I am able to seek and play with positive playback rates &gt; 1.0 (normal playback speed). <br>But am not able to play video at negative playback rates(say -<b>2.0</b>).<b> <br>
</b>The arguments I set in gst_element_seek are as below.<br><br>-- cur_pos is the position from where i want to seek.<br><b>
<br></b>        gst_element_seek (pipeline, -1.0 , GST_FORMAT_TIME, <br>                          GST_SEEK_FLAG_FLUSH | GST_SEEK_FLAG_KEY_UNIT,<br>                          GST_SEEK_TYPE_SET, 0,<br>                          GST_SEEK_TYPE_SET, cur_pos);<br>
<br>Thanks.<br>