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

1 2 3 4

  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
IsoTypeWriterVariable.java 26 IsoTypeWriter.writeUInt8(bb, (int) (v & 0xff));
29 IsoTypeWriter.writeUInt16(bb, (int) (v & 0xffff));
32 IsoTypeWriter.writeUInt24(bb, (int) (v & 0xffffff));
35 IsoTypeWriter.writeUInt32(bb, v);
38 IsoTypeWriter.writeUInt64(bb, v);
AbstractBoxParser.java 99 IsoTypeWriter.writeUInt32(header, 1);
101 IsoTypeWriter.writeUInt64(header, size);
104 IsoTypeWriter.writeUInt32(header, size);
109 IsoTypeWriter.writeUInt32(header, size);
111 IsoTypeWriter.writeUInt64(header, size);
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
ChunkOffset64BitBox.java 4 import com.coremedia.iso.IsoTypeWriter;
44 IsoTypeWriter.writeUInt32(byteBuffer, chunkOffsets.length);
46 IsoTypeWriter.writeUInt64(byteBuffer, chunkOffset);
SoundMediaHeaderBox.java 20 import com.coremedia.iso.IsoTypeWriter;
51 IsoTypeWriter.writeFixedPont88(byteBuffer, balance);
52 IsoTypeWriter.writeUInt16(byteBuffer, 0);
MediaHeaderBox.java 20 import com.coremedia.iso.IsoTypeWriter;
134 IsoTypeWriter.writeUInt64(byteBuffer, creationTime);
135 IsoTypeWriter.writeUInt64(byteBuffer, modificationTime);
136 IsoTypeWriter.writeUInt32(byteBuffer, timescale);
137 IsoTypeWriter.writeUInt64(byteBuffer, duration);
139 IsoTypeWriter.writeUInt32(byteBuffer, creationTime);
140 IsoTypeWriter.writeUInt32(byteBuffer, modificationTime);
141 IsoTypeWriter.writeUInt32(byteBuffer, timescale);
142 IsoTypeWriter.writeUInt32(byteBuffer, duration);
144 IsoTypeWriter.writeIso639(byteBuffer, language)
    [all...]
MovieHeaderBox.java 20 import com.coremedia.iso.IsoTypeWriter;
166 IsoTypeWriter.writeUInt64(byteBuffer, creationTime);
167 IsoTypeWriter.writeUInt64(byteBuffer, modificationTime);
168 IsoTypeWriter.writeUInt32(byteBuffer, timescale);
169 IsoTypeWriter.writeUInt64(byteBuffer, duration);
171 IsoTypeWriter.writeUInt32(byteBuffer, creationTime);
172 IsoTypeWriter.writeUInt32(byteBuffer, modificationTime);
173 IsoTypeWriter.writeUInt32(byteBuffer, timescale);
174 IsoTypeWriter.writeUInt32(byteBuffer, duration);
176 IsoTypeWriter.writeFixedPont1616(byteBuffer, rate)
    [all...]
TrackHeaderBox.java 21 import com.coremedia.iso.IsoTypeWriter;
140 IsoTypeWriter.writeUInt64(byteBuffer, creationTime);
141 IsoTypeWriter.writeUInt64(byteBuffer, modificationTime);
142 IsoTypeWriter.writeUInt32(byteBuffer, trackId);
143 IsoTypeWriter.writeUInt32(byteBuffer, 0);
144 IsoTypeWriter.writeUInt64(byteBuffer, duration);
146 IsoTypeWriter.writeUInt32(byteBuffer, creationTime);
147 IsoTypeWriter.writeUInt32(byteBuffer, modificationTime);
148 IsoTypeWriter.writeUInt32(byteBuffer, trackId);
149 IsoTypeWriter.writeUInt32(byteBuffer, 0)
    [all...]
EditListBox.java 21 import com.coremedia.iso.IsoTypeWriter;
98 IsoTypeWriter.writeUInt32(byteBuffer, entries.size());
230 IsoTypeWriter.writeUInt64(bb, segmentDuration);
231 IsoTypeWriter.writeUInt64(bb, mediaTime);
233 IsoTypeWriter.writeUInt32(bb, l2i(segmentDuration));
236 IsoTypeWriter.writeFixedPont1616(bb, mediaRate);
AlbumBox.java 20 import com.coremedia.iso.IsoTypeWriter;
94 IsoTypeWriter.writeIso639(byteBuffer, language);
98 IsoTypeWriter.writeUInt8(byteBuffer, trackNumber);
HintMediaHeaderBox.java 20 import com.coremedia.iso.IsoTypeWriter;
75 IsoTypeWriter.writeUInt16(byteBuffer, maxPduSize);
76 IsoTypeWriter.writeUInt16(byteBuffer, avgPduSize);
77 IsoTypeWriter.writeUInt32(byteBuffer, maxBitrate);
78 IsoTypeWriter.writeUInt32(byteBuffer, avgBitrate);
79 IsoTypeWriter.writeUInt32(byteBuffer, 0);
KeywordsBox.java 20 import com.coremedia.iso.IsoTypeWriter;
78 IsoTypeWriter.writeIso639(byteBuffer, language);
79 IsoTypeWriter.writeUInt8(byteBuffer, keywords.length);
81 IsoTypeWriter.writeUInt8(byteBuffer, Utf8.utf8StringLengthInBytes(keyword) + 1);
MetaBox.java 20 import com.coremedia.iso.IsoTypeWriter;
93 IsoTypeWriter.writeUInt8(byteBuffer, version);
94 IsoTypeWriter.writeUInt24(byteBuffer, flags);
DataReferenceBox.java 20 import com.coremedia.iso.IsoTypeWriter;
61 IsoTypeWriter.writeUInt32(byteBuffer, getBoxes().size());
ItemProtectionBox.java 20 import com.coremedia.iso.IsoTypeWriter;
57 IsoTypeWriter.writeUInt16(byteBuffer, getBoxes().size());
RecordingYearBox.java 20 import com.coremedia.iso.IsoTypeWriter;
60 IsoTypeWriter.writeUInt16(byteBuffer, recordingYear);
SampleDescriptionBox.java 19 import com.coremedia.iso.IsoTypeWriter;
69 IsoTypeWriter.writeUInt32(byteBuffer, boxes.size());
StaticChunkOffsetBox.java 20 import com.coremedia.iso.IsoTypeWriter;
64 IsoTypeWriter.writeUInt32(byteBuffer, chunkOffsets.length);
66 IsoTypeWriter.writeUInt32(byteBuffer, chunkOffset);
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/piff/
TfrfBox.java 4 import com.coremedia.iso.IsoTypeWriter;
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);
TfxdBox.java 4 import com.coremedia.iso.IsoTypeWriter;
70 IsoTypeWriter.writeUInt64(byteBuffer, fragmentAbsoluteTime);
71 IsoTypeWriter.writeUInt64(byteBuffer, fragmentAbsoluteDuration);
73 IsoTypeWriter.writeUInt32(byteBuffer, fragmentAbsoluteTime);
74 IsoTypeWriter.writeUInt32(byteBuffer, fragmentAbsoluteDuration);
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/fragment/
MovieExtendsHeaderBox.java 20 import com.coremedia.iso.IsoTypeWriter;
58 IsoTypeWriter.writeUInt64(byteBuffer, fragmentDuration);
60 IsoTypeWriter.writeUInt32(byteBuffer, fragmentDuration);
TrackFragmentBaseMediaDecodeTimeBox.java 20 import com.coremedia.iso.IsoTypeWriter;
43 IsoTypeWriter.writeUInt64(byteBuffer, baseMediaDecodeTime);
45 IsoTypeWriter.writeUInt32(byteBuffer, baseMediaDecodeTime);
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/
AbstractFullBox.java 21 import com.coremedia.iso.IsoTypeWriter;
71 IsoTypeWriter.writeUInt8(bb, version);
72 IsoTypeWriter.writeUInt24(bb, flags);
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/sampleentry/
AmrSpecificBox.java 22 import com.coremedia.iso.IsoTypeWriter;
85 IsoTypeWriter.writeUInt8(byteBuffer, decoderVersion);
86 IsoTypeWriter.writeUInt16(byteBuffer, modeSet);
87 IsoTypeWriter.writeUInt8(byteBuffer, modeChangePeriod);
88 IsoTypeWriter.writeUInt8(byteBuffer, framesPerSample);
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/
AbstractTrackEncryptionBox.java 4 import com.coremedia.iso.IsoTypeWriter;
62 IsoTypeWriter.writeUInt24(byteBuffer, defaultAlgorithmId);
63 IsoTypeWriter.writeUInt8(byteBuffer, defaultIvSize);
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/threegpp26245/
FontTableBox.java 4 import com.coremedia.iso.IsoTypeWriter;
45 IsoTypeWriter.writeUInt16(byteBuffer, entries.size());
78 IsoTypeWriter.writeUInt16(bb, fontId);
79 IsoTypeWriter.writeUInt8(bb, fontname.length());

Completed in 213 milliseconds

1 2 3 4