Home | History | Annotate | Download | only in iso

Lines Matching refs:header

50         ByteBuffer header = ChannelHelper.readFully(byteChannel, 8);
52 long size = IsoTypeReader.readUInt32(header);
60 String type = IsoTypeReader.read4cc(header);
95 // do nothing header's already correct
96 header.rewind();
98 header = ByteBuffer.allocate(16);
99 IsoTypeWriter.writeUInt32(header, 1);
100 header.put(IsoFile.fourCCtoBytes(type));
101 IsoTypeWriter.writeUInt64(header, size);
103 header = ByteBuffer.allocate(24);
104 IsoTypeWriter.writeUInt32(header, size);
105 header.put(IsoFile.fourCCtoBytes(type));
106 header.put(usertype);
108 header = ByteBuffer.allocate(32);
109 IsoTypeWriter.writeUInt32(header, size);
110 header.put(IsoFile.fourCCtoBytes(type));
111 IsoTypeWriter.writeUInt64(header, size);
112 header.put(usertype);
118 box.parse(byteChannel, header, contentSize, this);