FLA export - movies

This commit is contained in:
Jindra Petk
2013-05-18 22:58:06 +02:00
parent db6f121ca8
commit bba2af110d
11 changed files with 507 additions and 59 deletions

View File

@@ -252,6 +252,10 @@ public class SWFInputStream extends InputStream {
return readEx() + (readEx() << 8);
}
public int readUI24() throws IOException {
return readEx() + (readEx() << 8) + (readEx() << 16);
}
/**
* Reads one SI32 (Signed 32bit integer) value from the stream
*