I am creating an Ffmpeg-driven video player in c++ on windows and want the ability to loop the input video but can't seem to be able to get it working.
Is the only way to mess around with av_seek_frame() and seek to 0ms (the start of the video) when my frameCounter == the number of frames as specified by the video header when it is loaded in?
If this is the only way, can someone tell me how to use seeking because it isn't working for me.
If there is another way, can you share it with me? Maybe somehow telling Ffmpeg to internally point back at the start of the video file after av_read_frame() returns false (saying there are no more frames to decode).
Thanks for your time,
EDIT:
Partially solved it with the use of this tutorial: How to seek in Ffmpeg in C so thanks to them for the q.
I basically count the number of frames processed with my own int as they go past and then compare that number to pFormatCtx->streams[videoStream]->nb_frames. If they are equal then it seeks back to 0ms.
The new problem is, my video file has 550 frames (as reported by nb_frames) but for some reason only ever processes 539 frames without fail, I've ran the video through about 10 times and it only ever gets to 539 frames.
I am using mjpeg so all the frames are keyframes so I don't know why this is the case, anyone else know?
Thanks again,
Infinitifizz