mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-20 04:25:41 +00:00
Do not import multiple video frames into single SWF frame
This commit is contained in:
@@ -313,8 +313,8 @@ public class MovieImporter {
|
||||
}
|
||||
|
||||
int idealFrame = startFrame + (int) Math.floor(swf.frameRate * ftag.timeStamp / 1000.0);
|
||||
if (idealFrame == importLastFrame) {
|
||||
idealFrame++;
|
||||
if (idealFrame <= importLastFrame) {
|
||||
idealFrame = importLastFrame + 1;
|
||||
}
|
||||
int swfFrameNum = -1;
|
||||
ReadOnlyTagList tagList = timelined.getTags();
|
||||
|
||||
Reference in New Issue
Block a user