395396397398399400401402403
catch (Exception e) { // Unexpected end of file. // Log a problem and return an end tag so the // outer loop will terminate normally. problems.add(new SWFUnexpectedEndOfFileProblem(swfPath)); return new TagHeader(TagType.End, 0); } }
10491050105110521053105410551056105710581059
header.setFrameRate(bitStream.readFIXED8()); header.setFrameCount(bitStream.readUI16()); } catch (RuntimeException e) { problems.add(new SWFUnexpectedEndOfFileProblem(swfPath)); return false; } return true; }