Searched defs:byteBuffer (Results 76 - 100 of 163) sorted by relevance

1234567

/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
H A DOmaDrmAccessUnitFormatBox.java80 protected void getContent(ByteBuffer byteBuffer) { argument
81 writeVersionAndFlags(byteBuffer);
82 IsoTypeWriter.writeUInt8(byteBuffer, allBits);
83 IsoTypeWriter.writeUInt8(byteBuffer, keyIndicatorLength);
84 IsoTypeWriter.writeUInt8(byteBuffer, initVectorLength);
H A DProgressiveDownloadInformationBox.java27 protected void getContent(ByteBuffer byteBuffer) { argument
28 writeVersionAndFlags(byteBuffer);
30 IsoTypeWriter.writeUInt32(byteBuffer, entry.getRate());
31 IsoTypeWriter.writeUInt32(byteBuffer, entry.getInitialDelay());
H A DRatingBox.java105 protected void getContent(ByteBuffer byteBuffer) { argument
106 writeVersionAndFlags(byteBuffer);
107 byteBuffer.put(IsoFile.fourCCtoBytes(ratingEntity));
108 byteBuffer.put(IsoFile.fourCCtoBytes(ratingCriteria));
109 IsoTypeWriter.writeIso639(byteBuffer, language);
110 byteBuffer.put(Utf8.convert(ratingInfo));
111 byteBuffer.put((byte) 0);
H A DSampleAuxiliaryInformationSizesBox.java56 protected void getContent(ByteBuffer byteBuffer) { argument
57 writeVersionAndFlags(byteBuffer);
59 byteBuffer.put(IsoFile.fourCCtoBytes(auxInfoType));
60 byteBuffer.put(IsoFile.fourCCtoBytes(auxInfoTypeParameter));
63 IsoTypeWriter.writeUInt8(byteBuffer, defaultSampleInfoSize);
66 IsoTypeWriter.writeUInt32(byteBuffer, sampleInfoSizes.size());
68 IsoTypeWriter.writeUInt8(byteBuffer, sampleInfoSize);
71 IsoTypeWriter.writeUInt32(byteBuffer, sampleCount);
H A DSampleSizeBox.java103 protected void getContent(ByteBuffer byteBuffer) { argument
104 writeVersionAndFlags(byteBuffer);
105 IsoTypeWriter.writeUInt32(byteBuffer, sampleSize);
108 IsoTypeWriter.writeUInt32(byteBuffer, sampleSizes.length);
110 IsoTypeWriter.writeUInt32(byteBuffer, sampleSize1);
113 IsoTypeWriter.writeUInt32(byteBuffer, sampleCount);
H A DSampleToChunkBox.java73 protected void getContent(ByteBuffer byteBuffer) { argument
74 writeVersionAndFlags(byteBuffer);
75 IsoTypeWriter.writeUInt32(byteBuffer, entries.size());
77 IsoTypeWriter.writeUInt32(byteBuffer, entry.getFirstChunk());
78 IsoTypeWriter.writeUInt32(byteBuffer, entry.getSamplesPerChunk());
79 IsoTypeWriter.writeUInt32(byteBuffer, entry.getSampleDescriptionIndex());
H A DSchemeTypeBox.java83 protected void getContent(ByteBuffer byteBuffer) { argument
84 writeVersionAndFlags(byteBuffer);
85 byteBuffer.put(IsoFile.fourCCtoBytes(schemeType));
86 IsoTypeWriter.writeUInt32(byteBuffer, schemeVersion);
88 byteBuffer.put(Utf8.convert(schemeUri));
H A DTimeToSampleBox.java71 protected void getContent(ByteBuffer byteBuffer) { argument
72 writeVersionAndFlags(byteBuffer);
73 IsoTypeWriter.writeUInt32(byteBuffer, entries.size());
75 IsoTypeWriter.writeUInt32(byteBuffer, entry.getCount());
76 IsoTypeWriter.writeUInt32(byteBuffer, entry.getDelta());
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/apple/
H A DAbstractAppleMetaDataBox.java72 protected void getContent(ByteBuffer byteBuffer) { argument
74 appleDataBox.getBox(new ByteBufferByteChannel(byteBuffer));
H A DAppleDataBox.java79 protected void getContent(ByteBuffer byteBuffer) { argument
80 writeVersionAndFlags(byteBuffer);
81 byteBuffer.put(fourBytes, 0, 4);
82 byteBuffer.put(data);
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/dece/
H A DTrickPlayBox.java93 protected void getContent(ByteBuffer byteBuffer) { argument
94 writeVersionAndFlags(byteBuffer);
96 IsoTypeWriter.writeUInt8(byteBuffer, entry.value);
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/fragment/
H A DSegmentTypeBox.java70 protected void getContent(ByteBuffer byteBuffer) { argument
71 byteBuffer.put(IsoFile.fourCCtoBytes(majorBrand));
72 IsoTypeWriter.writeUInt32(byteBuffer, minorVersion);
74 byteBuffer.put(IsoFile.fourCCtoBytes(compatibleBrand));
H A DTrackExtendsBox.java52 protected void getContent(ByteBuffer byteBuffer) { argument
53 writeVersionAndFlags(byteBuffer);
54 IsoTypeWriter.writeUInt32(byteBuffer, trackId);
55 IsoTypeWriter.writeUInt32(byteBuffer, defaultSampleDescriptionIndex);
56 IsoTypeWriter.writeUInt32(byteBuffer, defaultSampleDuration);
57 IsoTypeWriter.writeUInt32(byteBuffer, defaultSampleSize);
58 defaultSampleFlags.getContent(byteBuffer);
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/sampleentry/
H A DAmrSpecificBox.java83 public void getContent(ByteBuffer byteBuffer) { argument
84 byteBuffer.put(IsoFile.fourCCtoBytes(vendor));
85 IsoTypeWriter.writeUInt8(byteBuffer, decoderVersion);
86 IsoTypeWriter.writeUInt16(byteBuffer, modeSet);
87 IsoTypeWriter.writeUInt8(byteBuffer, modeChangePeriod);
88 IsoTypeWriter.writeUInt8(byteBuffer, framesPerSample);
H A DSubtitleSampleEntry.java45 protected void getContent(ByteBuffer byteBuffer) { argument
46 _writeReservedAndDataReferenceIndex(byteBuffer);
47 IsoTypeWriter.writeUtf8String(byteBuffer, namespace);
48 IsoTypeWriter.writeUtf8String(byteBuffer, schemaLocation);
49 IsoTypeWriter.writeUtf8String(byteBuffer, imageMimeType);
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/
H A DAbstractTrackEncryptionBox.java60 protected void getContent(ByteBuffer byteBuffer) { argument
61 writeVersionAndFlags(byteBuffer);
62 IsoTypeWriter.writeUInt24(byteBuffer, defaultAlgorithmId);
63 IsoTypeWriter.writeUInt8(byteBuffer, defaultIvSize);
64 byteBuffer.put(default_KID);
H A DMLPSpecificBox.java36 protected void getContent(ByteBuffer byteBuffer) { argument
37 BitWriterBuffer bwb = new BitWriterBuffer(byteBuffer);
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/basemediaformat/
H A DAvcNalUnitStorageBox.java85 protected void getContent(ByteBuffer byteBuffer) { argument
86 this.avcDecoderConfigurationRecord.getContent(byteBuffer);
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/samplegrouping/
H A DCencSampleEncryptionInformationGroupEntry.java42 public void parse(ByteBuffer byteBuffer) { argument
43 isEncrypted = IsoTypeReader.readUInt24(byteBuffer);
44 ivSize = (byte) IsoTypeReader.readUInt8(byteBuffer);
46 byteBuffer.get(kid);
52 ByteBuffer byteBuffer = ByteBuffer.allocate(20);
53 IsoTypeWriter.writeUInt24(byteBuffer, isEncrypted);
54 IsoTypeWriter.writeUInt8(byteBuffer, ivSize);
55 byteBuffer.put(kid);
56 byteBuffer.rewind();
57 return byteBuffer;
[all...]
H A DSampleGroupDescriptionBox.java71 protected void getContent(ByteBuffer byteBuffer) { argument
72 writeVersionAndFlags(byteBuffer);
73 byteBuffer.put(groupingType.getBytes());
75 IsoTypeWriter.writeUInt32(byteBuffer, defaultLength);
77 IsoTypeWriter.writeUInt32(byteBuffer, this.groupEntries.size());
80 IsoTypeWriter.writeUInt32(byteBuffer, entry.get().limit());
82 byteBuffer.put(entry.get());
H A DVisualRandomAccessEntry.java51 public void parse(ByteBuffer byteBuffer) { argument
52 final byte b = byteBuffer.get();
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/piff/
H A DPlayReadyHeader.java48 public void parse(ByteBuffer byteBuffer) { argument
58 length = IsoTypeReader.readUInt32BE(byteBuffer);
59 int recordCount = IsoTypeReader.readUInt16BE(byteBuffer);
61 records = PlayReadyRecord.createFor(byteBuffer, recordCount);
72 ByteBuffer byteBuffer = ByteBuffer.allocate(size);
74 IsoTypeWriter.writeUInt32BE(byteBuffer, size);
75 IsoTypeWriter.writeUInt16BE(byteBuffer, records.size());
77 IsoTypeWriter.writeUInt16BE(byteBuffer, record.type);
78 IsoTypeWriter.writeUInt16BE(byteBuffer, record.getValue().limit());
80 byteBuffer
113 createFor(ByteBuffer byteBuffer, int recordCount) argument
[all...]
H A DTfrfBox.java56 protected void getContent(ByteBuffer byteBuffer) { argument
57 writeVersionAndFlags(byteBuffer);
58 IsoTypeWriter.writeUInt8(byteBuffer, entries.size());
62 IsoTypeWriter.writeUInt64(byteBuffer, entry.fragmentAbsoluteTime);
63 IsoTypeWriter.writeUInt64(byteBuffer, entry.fragmentAbsoluteDuration);
65 IsoTypeWriter.writeUInt32(byteBuffer, entry.fragmentAbsoluteTime);
66 IsoTypeWriter.writeUInt32(byteBuffer, entry.fragmentAbsoluteDuration);
H A DUuidBasedProtectionSystemSpecificHeaderBox.java50 protected void getContent(ByteBuffer byteBuffer) { argument
51 writeVersionAndFlags(byteBuffer);
52 IsoTypeWriter.writeUInt64(byteBuffer, systemId.getMostSignificantBits());
53 IsoTypeWriter.writeUInt64(byteBuffer, systemId.getLeastSignificantBits());
56 IsoTypeWriter.writeUInt32(byteBuffer, data.limit());
57 byteBuffer.put(data);
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/threegpp26245/
H A DFontTableBox.java44 protected void getContent(ByteBuffer byteBuffer) { argument
45 IsoTypeWriter.writeUInt16(byteBuffer, entries.size());
47 record.getContent(byteBuffer);

Completed in 294 milliseconds

1234567