Home | History | Annotate | Download | only in iso

Lines Matching refs:box

20 import com.coremedia.iso.boxes.Box;
31 * The most upper container for ISO Boxes. It is a container box that is a file.
85 Box box = boxParser.parseBox(byteChannel, this);
86 if (box != null) {
87 // System.err.println(box.getType());
88 boxes.add(box);
149 for (Box box : boxes) {
150 size += box.getSize();
169 for (Box box : boxes) {
170 if (box instanceof MovieBox) {
171 return (MovieBox) box;
178 for (Box box : boxes) {
182 box.getBox(os);
184 assert size == box.getSize();
186 box.getBox(os);