HomeSort by relevance Sort by last modified time
    Searched refs:byteChannel (Results 1 - 2 of 2) sorted by null

  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
AbstractBoxParser.java 42 * @param byteChannel the FileChannel pointing to the ISO file
47 public Box parseBox(ReadableByteChannel byteChannel, ContainerBox parent) throws IOException {
50 ByteBuffer header = ChannelHelper.readFully(byteChannel, 8);
66 byteChannel.read(bb);
71 if (byteChannel instanceof FileChannel) {
72 size = ((FileChannel) byteChannel).size() - ((FileChannel) byteChannel).position() - 8;
82 byteChannel.read(bb);
118 box.parse(byteChannel, header, contentSize, this);
IsoFile.java 37 ReadableByteChannel byteChannel;
45 this.byteChannel = new FileInputStream(f).getChannel();
50 public IsoFile(ReadableByteChannel byteChannel) throws IOException {
52 this.byteChannel = byteChannel;
57 public IsoFile(ReadableByteChannel byteChannel, BoxParser boxParser) throws IOException {
59 this.byteChannel = byteChannel;
85 Box box = boxParser.parseBox(byteChannel, this);
193 this.byteChannel.close()
    [all...]

Completed in 38 milliseconds