OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:readUInt16
(Results
1 - 25
of
36
) sorted by null
1
2
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
IsoTypeReaderVariable.java
27
return IsoTypeReader.
readUInt16
(bb);
IsoTypeReader.java
44
result +=
readUInt16
(bb) << 8;
50
public static int
readUInt16
(ByteBuffer bb) {
132
int bits =
readUInt16
(bb);
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
VideoMediaHeaderBox.java
54
graphicsmode = IsoTypeReader.
readUInt16
(content);
57
opcolor[i] = IsoTypeReader.
readUInt16
(content);
RecordingYearBox.java
54
recordingYear = IsoTypeReader.
readUInt16
(content);
SoundMediaHeaderBox.java
45
IsoTypeReader.
readUInt16
(content);
HintMediaHeaderBox.java
64
maxPduSize = IsoTypeReader.
readUInt16
(content);
65
avgPduSize = IsoTypeReader.
readUInt16
(content);
ItemProtectionBox.java
49
IsoTypeReader.
readUInt16
(content);
ItemLocationBox.java
110
int itemCount = IsoTypeReader.
readUInt16
(content);
174
itemId = IsoTypeReader.
readUInt16
(in);
177
int tmp = IsoTypeReader.
readUInt16
(in);
181
dataReferenceIndex = IsoTypeReader.
readUInt16
(in);
187
int extentCount = IsoTypeReader.
readUInt16
(in);
SubSampleInformationBox.java
77
int subsampleCount = IsoTypeReader.
readUInt16
(content);
80
subsampleEntry.setSubsampleSize(getVersion() == 1 ? IsoTypeReader.readUInt32(content) : IsoTypeReader.
readUInt16
(content));
ClassificationBox.java
85
classificationTableIndex = IsoTypeReader.
readUInt16
(content);
TrackHeaderBox.java
125
layer = IsoTypeReader.
readUInt16
(content); // 204
126
alternateGroup = IsoTypeReader.
readUInt16
(content);
128
IsoTypeReader.
readUInt16
(content); // 212
MediaHeaderBox.java
111
IsoTypeReader.
readUInt16
(content);
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/sampleentry/
VisualSampleEntry.java
137
long tmp = IsoTypeReader.
readUInt16
(content);
139
tmp = IsoTypeReader.
readUInt16
(content);
144
width = IsoTypeReader.
readUInt16
(content);
145
height = IsoTypeReader.
readUInt16
(content);
150
frameCount = IsoTypeReader.
readUInt16
(content);
164
depth = IsoTypeReader.
readUInt16
(content);
165
tmp = IsoTypeReader.
readUInt16
(content);
AudioSampleEntry.java
186
soundVersion = IsoTypeReader.
readUInt16
(content);
189
reserved1 = IsoTypeReader.
readUInt16
(content);
192
channelCount = IsoTypeReader.
readUInt16
(content);
193
sampleSize = IsoTypeReader.
readUInt16
(content);
195
compressionId = IsoTypeReader.
readUInt16
(content);
197
packetSize = IsoTypeReader.
readUInt16
(content);
TextSampleEntry.java
228
top = IsoTypeReader.
readUInt16
(in);
229
left = IsoTypeReader.
readUInt16
(in);
230
bottom = IsoTypeReader.
readUInt16
(in);
231
right = IsoTypeReader.
readUInt16
(in);
274
startChar = IsoTypeReader.
readUInt16
(in);
275
endChar = IsoTypeReader.
readUInt16
(in);
276
fontId = IsoTypeReader.
readUInt16
(in);
AmrSpecificBox.java
76
modeSet = IsoTypeReader.
readUInt16
(content);
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/apple/
QuicktimeTextSampleEntry.java
62
backgroundR = IsoTypeReader.
readUInt16
(content);
63
backgroundG = IsoTypeReader.
readUInt16
(content);
64
backgroundB = IsoTypeReader.
readUInt16
(content);
71
foregroundR = IsoTypeReader.
readUInt16
(content);
72
foregroundG = IsoTypeReader.
readUInt16
(content);
73
foregroundB = IsoTypeReader.
readUInt16
(content);
BaseMediaInfoAtom.java
43
opColorR = IsoTypeReader.
readUInt16
(content);
44
opColorG = IsoTypeReader.
readUInt16
(content);
45
opColorB = IsoTypeReader.
readUInt16
(content);
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
ObjectDescriptor.java_bak
60
tmp = in.
readUInt16
();
71
int data = IsoTypeReader.
readUInt16
(in);
ESDescriptor.java
85
esId = IsoTypeReader.
readUInt16
(bb);
94
dependsOnEsId = IsoTypeReader.
readUInt16
(bb);
101
oCREsId = IsoTypeReader.
readUInt16
(bb);
InitialObjectDescriptor.java
75
int data = IsoTypeReader.
readUInt16
(bb);
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/threegpp26245/
FontTableBox.java
35
int numberOfRecords = IsoTypeReader.
readUInt16
(content);
72
fontId = IsoTypeReader.
readUInt16
(bb);
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/h264/
AvcConfigurationBox.java
225
int sequenceParameterSetLength = IsoTypeReader.
readUInt16
(content);
233
int pictureParameterSetLength = IsoTypeReader.
readUInt16
(content);
253
int sequenceParameterSetExtLength = IsoTypeReader.
readUInt16
(content);
/external/icu/icu4c/source/common/
udataswp.c
217
return (int16_t)ds->
readUInt16
((uint16_t)x);
311
headerSize=ds->
readUInt16
(pHeader->dataHeader.headerSize);
312
infoSize=ds->
readUInt16
(pHeader->info.size);
388
swapper->
readUInt16
= inIsBigEndian==U_IS_BIG_ENDIAN ? uprv_readDirectUInt16 : uprv_readSwapUInt16;
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/apple/
AppleLosslessSpecificBox.java
133
unknown2 = IsoTypeReader.
readUInt16
(content);
Completed in 1835 milliseconds
1
2