mirror of https://github.com/odrling/Aegisub
Originally committed to SVN as r162.
This commit is contained in:
parent
01d0916b2a
commit
6313d8eafd
|
@ -294,12 +294,12 @@ wxBitmap LAVCVideoProvider::GetFrame(int n) {
|
|||
|
||||
// Seek to keyframe
|
||||
int result = av_seek_frame(formatContext,vidStream,finalPos,0);
|
||||
avcodec_flush_buffers(codecContext);
|
||||
|
||||
// Seek until final frame
|
||||
GetNextFrame();
|
||||
while (lastDecodeTime < n) {
|
||||
do {
|
||||
GetNextFrame();
|
||||
}
|
||||
} while (lastDecodeTime < n);
|
||||
}
|
||||
|
||||
// Bitmap
|
||||
|
|
Loading…
Reference in New Issue