HomeSort by relevance Sort by last modified time
    Searched defs:IsoTypeWriter (Results 26 - 50 of 93) sorted by null

12 3 4

  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
SyncSampleBox.java 20 import com.coremedia.iso.IsoTypeWriter;
68 IsoTypeWriter.writeUInt32(byteBuffer, sampleNumber.length);
71 IsoTypeWriter.writeUInt32(byteBuffer, aSampleNumber);
ClassificationBox.java 21 import com.coremedia.iso.IsoTypeWriter;
93 IsoTypeWriter.writeUInt16(byteBuffer, classificationTableIndex);
94 IsoTypeWriter.writeIso639(byteBuffer, language);
SampleAuxiliaryInformationOffsetsBox.java 20 import com.coremedia.iso.IsoTypeWriter;
68 IsoTypeWriter.writeUInt32(byteBuffer, auxInfoType);
69 IsoTypeWriter.writeUInt32(byteBuffer, auxInfoTypeParameter);
72 IsoTypeWriter.writeUInt32(byteBuffer, offsets.size());
75 IsoTypeWriter.writeUInt32(byteBuffer, offset);
77 IsoTypeWriter.writeUInt64(byteBuffer, offset);
SampleAuxiliaryInformationSizesBox.java 21 import com.coremedia.iso.IsoTypeWriter;
63 IsoTypeWriter.writeUInt8(byteBuffer, defaultSampleInfoSize);
66 IsoTypeWriter.writeUInt32(byteBuffer, sampleInfoSizes.size());
68 IsoTypeWriter.writeUInt8(byteBuffer, sampleInfoSize);
71 IsoTypeWriter.writeUInt32(byteBuffer, sampleCount);
BitRateBox.java 20 import com.coremedia.iso.IsoTypeWriter;
63 IsoTypeWriter.writeUInt32(byteBuffer, bufferSizeDb);
64 IsoTypeWriter.writeUInt32(byteBuffer, maxBitrate);
65 IsoTypeWriter.writeUInt32(byteBuffer, avgBitrate);
TrackReferenceTypeBox.java 20 import com.coremedia.iso.IsoTypeWriter;
55 IsoTypeWriter.writeUInt32(byteBuffer, trackId);
VideoMediaHeaderBox.java 20 import com.coremedia.iso.IsoTypeWriter;
64 IsoTypeWriter.writeUInt16(byteBuffer, graphicsmode);
66 IsoTypeWriter.writeUInt16(byteBuffer, anOpcolor);
SubSampleInformationBox.java 4 import com.coremedia.iso.IsoTypeWriter;
94 IsoTypeWriter.writeUInt32(byteBuffer, entries.size());
96 IsoTypeWriter.writeUInt32(byteBuffer, sampleEntry.getSampleDelta());
97 IsoTypeWriter.writeUInt16(byteBuffer, sampleEntry.getSubsampleCount());
101 IsoTypeWriter.writeUInt32(byteBuffer, subsampleEntry.getSubsampleSize());
103 IsoTypeWriter.writeUInt16(byteBuffer, l2i(subsampleEntry.getSubsampleSize()));
105 IsoTypeWriter.writeUInt8(byteBuffer, subsampleEntry.getSubsamplePriority());
106 IsoTypeWriter.writeUInt8(byteBuffer, subsampleEntry.getDiscardable());
107 IsoTypeWriter.writeUInt32(byteBuffer, subsampleEntry.getReserved());
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/apple/
AbstractAppleMetaDataBox.java 4 import com.coremedia.iso.IsoTypeWriter;
111 IsoTypeWriter.writeUInt8(bb, (Byte.parseByte(value) & 0xFF));
113 IsoTypeWriter.writeUInt16(bb, Integer.parseInt(value));
115 IsoTypeWriter.writeUInt32(bb, Long.parseLong(value));
117 IsoTypeWriter.writeUInt64(bb, Long.parseLong(value));
AppleDataRateBox.java 20 import com.coremedia.iso.IsoTypeWriter;
46 IsoTypeWriter.writeUInt32(byteBuffer, dataRate);
AppleLosslessSpecificBox.java 4 import com.coremedia.iso.IsoTypeWriter;
142 IsoTypeWriter.writeUInt32(byteBuffer, maxSamplePerFrame);
143 IsoTypeWriter.writeUInt8(byteBuffer, unknown1);
144 IsoTypeWriter.writeUInt8(byteBuffer, sampleSize);
145 IsoTypeWriter.writeUInt8(byteBuffer, historyMult);
146 IsoTypeWriter.writeUInt8(byteBuffer, initialHistory);
147 IsoTypeWriter.writeUInt8(byteBuffer, kModifier);
148 IsoTypeWriter.writeUInt8(byteBuffer, channels);
149 IsoTypeWriter.writeUInt16(byteBuffer, unknown2);
150 IsoTypeWriter.writeUInt32(byteBuffer, maxCodedFrameSize);
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/fragment/
MovieFragmentHeaderBox.java 20 import com.coremedia.iso.IsoTypeWriter;
47 IsoTypeWriter.writeUInt32(byteBuffer, sequenceNumber);
MovieFragmentRandomAccessOffsetBox.java 20 import com.coremedia.iso.IsoTypeWriter;
52 IsoTypeWriter.writeUInt32(byteBuffer, mfraSize);
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/sampleentry/
Ovc1VisualSampleEntryImpl.java 3 import com.coremedia.iso.IsoTypeWriter;
36 IsoTypeWriter.writeUInt16(byteBuffer, getDataReferenceIndex());
VisualSampleEntry.java 20 import com.coremedia.iso.IsoTypeWriter;
184 IsoTypeWriter.writeUInt16(byteBuffer, 0);
185 IsoTypeWriter.writeUInt16(byteBuffer, 0);
186 IsoTypeWriter.writeUInt32(byteBuffer, predefined[0]);
187 IsoTypeWriter.writeUInt32(byteBuffer, predefined[1]);
188 IsoTypeWriter.writeUInt32(byteBuffer, predefined[2]);
190 IsoTypeWriter.writeUInt16(byteBuffer, getWidth());
191 IsoTypeWriter.writeUInt16(byteBuffer, getHeight());
193 IsoTypeWriter.writeFixedPont1616(byteBuffer, getHorizresolution());
194 IsoTypeWriter.writeFixedPont1616(byteBuffer, getVertresolution())
    [all...]
TextSampleEntry.java 20 import com.coremedia.iso.IsoTypeWriter;
94 IsoTypeWriter.writeUInt32(byteBuffer, displayFlags);
95 IsoTypeWriter.writeUInt8(byteBuffer, horizontalJustification);
96 IsoTypeWriter.writeUInt8(byteBuffer, verticalJustification);
97 IsoTypeWriter.writeUInt8(byteBuffer, backgroundColorRgba[0]);
98 IsoTypeWriter.writeUInt8(byteBuffer, backgroundColorRgba[1]);
99 IsoTypeWriter.writeUInt8(byteBuffer, backgroundColorRgba[2]);
100 IsoTypeWriter.writeUInt8(byteBuffer, backgroundColorRgba[3]);
235 IsoTypeWriter.writeUInt16(bb, top);
236 IsoTypeWriter.writeUInt16(bb, left)
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/samplegrouping/
CencSampleEncryptionInformationGroupEntry.java 21 import com.coremedia.iso.IsoTypeWriter;
53 IsoTypeWriter.writeUInt24(byteBuffer, isEncrypted);
54 IsoTypeWriter.writeUInt8(byteBuffer, ivSize);
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/piff/
PlayReadyHeader.java 5 import com.coremedia.iso.IsoTypeWriter;
74 IsoTypeWriter.writeUInt32BE(byteBuffer, size);
75 IsoTypeWriter.writeUInt16BE(byteBuffer, records.size());
77 IsoTypeWriter.writeUInt16BE(byteBuffer, record.type);
78 IsoTypeWriter.writeUInt16BE(byteBuffer, record.getValue().limit());
UuidBasedProtectionSystemSpecificHeaderBox.java 5 import com.coremedia.iso.IsoTypeWriter;
52 IsoTypeWriter.writeUInt64(byteBuffer, systemId.getMostSignificantBits());
53 IsoTypeWriter.writeUInt64(byteBuffer, systemId.getLeastSignificantBits());
56 IsoTypeWriter.writeUInt32(byteBuffer, data.limit());
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/
AbstractSampleEncryptionBox.java 5 import com.coremedia.iso.IsoTypeWriter;
147 IsoTypeWriter.writeUInt24(byteBuffer, algorithmId);
148 IsoTypeWriter.writeUInt8(byteBuffer, ivSize);
151 IsoTypeWriter.writeUInt32(byteBuffer, entries.size());
162 IsoTypeWriter.writeUInt16(byteBuffer, entry.pairs.size());
164 IsoTypeWriter.writeUInt16(byteBuffer, pair.clear);
165 IsoTypeWriter.writeUInt32(byteBuffer, pair.encrypted);
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/threegpp26244/
LocationInformationBox.java 4 import com.coremedia.iso.IsoTypeWriter;
114 IsoTypeWriter.writeIso639(byteBuffer, language);
117 IsoTypeWriter.writeUInt8(byteBuffer, role);
118 IsoTypeWriter.writeFixedPont1616(byteBuffer, longitude);
119 IsoTypeWriter.writeFixedPont1616(byteBuffer, latitude);
120 IsoTypeWriter.writeFixedPont1616(byteBuffer, altitude);
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/apple/
QuicktimeTextSampleEntry.java 19 import com.coremedia.iso.IsoTypeWriter;
216 IsoTypeWriter.writeUInt16(byteBuffer, backgroundR);
217 IsoTypeWriter.writeUInt16(byteBuffer, backgroundG);
218 IsoTypeWriter.writeUInt16(byteBuffer, backgroundB);
219 IsoTypeWriter.writeUInt64(byteBuffer, defaultTextBox);
220 IsoTypeWriter.writeUInt64(byteBuffer, reserved1);
226 IsoTypeWriter.writeUInt16(byteBuffer, foregroundR);
227 IsoTypeWriter.writeUInt16(byteBuffer, foregroundG);
228 IsoTypeWriter.writeUInt16(byteBuffer, foregroundB);
230 IsoTypeWriter.writeUInt8(byteBuffer, fontName.length())
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
DecoderConfigDescriptor.java 21 import com.coremedia.iso.IsoTypeWriter;
114 IsoTypeWriter.writeUInt8(out, 4);
115 IsoTypeWriter.writeUInt8(out, serializedSize() - 2);
116 IsoTypeWriter.writeUInt8(out, objectTypeIndication);
118 IsoTypeWriter.writeUInt8(out, flags);
119 IsoTypeWriter.writeUInt24(out, bufferSizeDB);
120 IsoTypeWriter.writeUInt32(out, maxBitRate);
121 IsoTypeWriter.writeUInt32(out, avgBitRate);
ESDescriptor.java 20 import com.coremedia.iso.IsoTypeWriter;
179 IsoTypeWriter.writeUInt8(out, 3);
180 IsoTypeWriter.writeUInt8(out, serializedSize() - 2); // Not OK for longer sizes!
181 IsoTypeWriter.writeUInt16(out, esId);
183 IsoTypeWriter.writeUInt8(out, flags);
185 IsoTypeWriter.writeUInt16(out, dependsOnEsId);
188 IsoTypeWriter.writeUInt8(out, URLLength);
189 IsoTypeWriter.writeUtf8String(out, URLString);
192 IsoTypeWriter.writeUInt16(out, oCREsId);
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/threegpp26244/
SegmentIndexBox.java 4 import com.coremedia.iso.IsoTypeWriter;
74 IsoTypeWriter.writeUInt32(byteBuffer, referenceId);
75 IsoTypeWriter.writeUInt32(byteBuffer, timeScale);
77 IsoTypeWriter.writeUInt32(byteBuffer, earliestPresentationTime);
78 IsoTypeWriter.writeUInt32(byteBuffer, firstOffset);
80 IsoTypeWriter.writeUInt64(byteBuffer, earliestPresentationTime);
81 IsoTypeWriter.writeUInt64(byteBuffer, firstOffset);
83 IsoTypeWriter.writeUInt16(byteBuffer, reserved);
84 IsoTypeWriter.writeUInt16(byteBuffer, entries.size());
89 IsoTypeWriter.writeUInt32(byteBuffer, entry.getSubsegmentDuration())
    [all...]

Completed in 109 milliseconds

12 3 4