mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-10 01:14:39 +00:00
Fixed #1827 Video replacing VP6 reading
This commit is contained in:
@@ -286,6 +286,7 @@ public class MovieImporter {
|
||||
for (FLVTAG ftag : videoTags) {
|
||||
videoData = ((VIDEODATA) ftag.data);
|
||||
if (videoData.codecId == VIDEODATA.CODEC_VP6 || videoData.codecId == VIDEODATA.CODEC_VP6_ALPHA) {
|
||||
dis = new FLVInputStream(new ByteArrayInputStream(videoData.videoData));
|
||||
int horizontalAdjustment = (int) dis.readUB(4);
|
||||
int verticalAdjustment = (int) dis.readUB(4);
|
||||
if (videoData.codecId == VIDEODATA.CODEC_VP6_ALPHA) {
|
||||
|
||||
Reference in New Issue
Block a user