I'm trying to understand how to seek in videos encoded with p-frames (e.g. H.264)-- right now I only know how to seek in videos encoded with codecs in which every frame is a keyframe (e.g. MJPEG).
Given a timestamp, ultimately it should play the frame for that timestamp. But for now, I'm just trying to play the keyframe near the timestamp. So, first--
ret = av_seek_frame(pFormatCtx, videoStream, avTime, 0);
avcodec_flush_buffers(pCodecCtx);
Then some intervening code, including av_read_frame. Then--
ret = avcodec_decode_video2(pCodecCtx, captureFrame, &gotPicture, &packet);
Observations: