OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:sampleIndex
(Results
1 - 4
of
4
) sorted by null
/frameworks/base/libs/ui/tests/
InputPublisherAndConsumer_test.cpp
202
size_t
sampleIndex
= i + 1;
203
status = mPublisher->appendMotionSample(sampleEventTimes[
sampleIndex
],
204
samplePointerCoords.array() +
sampleIndex
* pointerCount);
214
size_t
sampleIndex
= i + 1 + samplesToAppendBeforeDispatch;
215
status = mPublisher->appendMotionSample(sampleEventTimes[
sampleIndex
],
216
samplePointerCoords.array() +
sampleIndex
* pointerCount);
258
for (size_t
sampleIndex
= 0;
sampleIndex
< lastSampleIndex;
sampleIndex
++) {
259
SCOPED_TRACE(
sampleIndex
);
[
all
...]
/frameworks/base/media/libstagefright/
SampleTable.cpp
49
uint32_t getCompositionTimeOffset(uint32_t
sampleIndex
);
81
uint32_t
sampleIndex
) {
88
if (
sampleIndex
< mCurrentEntrySampleIndex) {
95
if (
sampleIndex
< mCurrentEntrySampleIndex + sampleCount) {
490
uint32_t
sampleIndex
= 0;
498
if (
sampleIndex
< mNumSampleSizes) {
503
mSampleTimeEntries[
sampleIndex
].mSampleIndex =
sampleIndex
;
507
sampleIndex
);
509
mSampleTimeEntries[
sampleIndex
].mCompositionTime
[
all
...]
AVIExtractor.cpp
1056
size_t
sampleIndex
= 0;
1060
trackIndex,
sampleIndex
, &offset, &size, &isKey, &timeUs);
1070
++
sampleIndex
;
1104
size_t trackIndex, size_t
sampleIndex
,
1113
if (
sampleIndex
>= track.mSamples.size()) {
1117
const SampleInfo &info = track.mSamples.itemAt(
sampleIndex
);
1147
if (
sampleIndex
== 0) {
1151
track.mFirstChunkSize + track.mAvgChunkSize * (
sampleIndex
- 1);
1154
sampleIndex
= sampleStartInBytes / track.mBytesPerSample;
1157
*sampleTimeUs = (
sampleIndex
* 1000000ll * track.mRate) / track.mScale
[
all
...]
MPEG4Extractor.cpp
348
uint32_t
sampleIndex
;
350
if (track->sampleTable->findThumbnailSample(&
sampleIndex
) == OK
352
sampleIndex
, NULL /* offset */, NULL /* size */,
[
all
...]
Completed in 68 milliseconds