Originally committed to SVN as r162.

This commit is contained in:
Rodrigo Braz Monteiro 2006-02-25 01:28:20 +00:00
parent 01d0916b2a
commit 6313d8eafd
1 changed files with 3 additions and 3 deletions

View File

@ -294,12 +294,12 @@ wxBitmap LAVCVideoProvider::GetFrame(int n) {
// Seek to keyframe // Seek to keyframe
int result = av_seek_frame(formatContext,vidStream,finalPos,0); int result = av_seek_frame(formatContext,vidStream,finalPos,0);
avcodec_flush_buffers(codecContext);
// Seek until final frame // Seek until final frame
GetNextFrame(); do {
while (lastDecodeTime < n) {
GetNextFrame(); GetNextFrame();
} } while (lastDecodeTime < n);
} }
// Bitmap // Bitmap