IsoFile isoFile = new IsoFile(new ByteBufferByteChannel(ByteBuffer.wrap(box)));
TimeCodeBox tmcd = (TimeCodeBox) isoFile.getBoxes().get(0);
ByteBuffer byteBuffer = ByteBuffer.allocate(l2i(tmcd.getSize()));
tmcd.getDataReferenceIndex();
Assert.assertTrue(tmcd.isParsed());
tmcd.getBox(new ByteBufferByteChannel(byteBuffer));
Assert.assertArrayEquals(box, byteBuffer.array());