Searched refs:writableByteChannel (Results 1 - 4 of 4) sorted by relevance

/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
H A DBox.java44 * Writes the complete box - size | 4-cc | content - to the given <code>writableByteChannel</code>.
45 * @param writableByteChannel the box's sink
48 void getBox(WritableByteChannel writableByteChannel) throws IOException; argument
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/mdat/
H A DMediaDataBox.java96 public void getBox(WritableByteChannel writableByteChannel) throws IOException { argument
99 transfer(fileChannel, startPosition - header.limit(), contentSize + header.limit(), writableByteChannel);
102 writableByteChannel.write(header);
103 writableByteChannel.write(content);
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/
H A DDefaultMp4Builder.java452 public void getBox(WritableByteChannel writableByteChannel) throws IOException { argument
467 writableByteChannel.write(bb);
468 if (writableByteChannel instanceof GatheringByteChannel) {
478 ((GatheringByteChannel) writableByteChannel).write(sampleArray);
485 writableByteChannel.write(sample);
H A DFragmentedMp4Builder.java197 public void getBox(WritableByteChannel writableByteChannel) throws IOException {
204 writableByteChannel.write(header);
205 if (writableByteChannel instanceof GatheringByteChannel) {
217 ((GatheringByteChannel) writableByteChannel).write(sampleArray);
224 writableByteChannel.write(sample);

Completed in 86 milliseconds