GFX testdata

This commit is contained in:
Jindra Petřík
2023-10-21 18:14:58 +02:00
parent 21aa0486f7
commit 6336f078d1
17 changed files with 456 additions and 97 deletions

View File

@@ -1215,9 +1215,15 @@ public class SWFInputStream implements AutoCloseable {
boolean doParse = true;
if (parseTags && !parallel1 && doParse && (tag instanceof TagStub)) {
if (((parseTags && !parallel1 && doParse) || (tag.getId() == ExporterInfo.ID)) && (tag instanceof TagStub)) {
tag = resolveTag((TagStub) tag, level, parallel, skipUnusualTags, lazy, true);
}
if (tag instanceof ExporterInfo) {
ExporterInfo ei = (ExporterInfo) tag;
if (swf != null) {
swf.setExporterInfo(ei);
}
}
DumpInfo di = dumpInfo;
if (di != null && tag != null) {
di.name = tag.getName();