I'm trying to create a video player with the ability to seek whereever I want. I'm having some trouble with <span style="color: #008000;">av_seek_frame()</span>, which seems to keep returning the first keyframe after the timestamp I'm looking for:<br /><br /><br /><span style="color: #000000;"> int timestamp = av_rescale_q(timeMs, AV_TIME_BASE_Q,</span>
<pre style="-qt-block-indent: 0; text-indent: 0px; margin: 0px;"><span style="color: #000000;"> pFormatCtx->streams[videoStream]->time_base);</span></pre>
<span style="color: #000000;"> int err = av_seek_frame(pFormatCtx, videoStream, timestamp, 0);<br /><br /></span>Unfortunately, if it puts me at a position /after/ the frame where I'm seeking, I have already passed the frame I want and can't scan forward to find it. I've also tried seeking with <span style="color: #008000;">AVSEEK_FLAG_ANY</span>, but this it not returning frames with valid data. I'm guessing that you need to jump to the correct keyframe and then scan forward so that the frame buffers are built correctly.<br /><br />I'm also considering scanning the entire video when I first load it to build an index of packet information. <span style="color: #000080;">AVSEEK_FLAG_BYTE</span> looks like it could be useful to jump directly to the packet I want - however, I don't know where to find the byte value I would need to pass to the seek function.<br /><br />How can I scan to the frame that I want?<br /><br />Cheers,<br />Mark<br /><br />
<div>
<pre>---
http://www.kitfox.com</pre>
</div>