Searched refs:mIndex (Results 1 - 25 of 89) sorted by path

1234

/frameworks/av/cmds/stagefright/
H A DSimplePlayer.cpp441 &info.mIndex,
530 state->mCodec->releaseOutputBuffer(info->mIndex);
534 state->mBuffers[1].itemAt(info->mIndex);
545 info->mIndex);
H A DSimplePlayer.h65 size_t mIndex; member in struct:android::SimplePlayer::BufferInfo
/frameworks/av/drm/common/
H A DDrmConstraints.cpp62 return mIndex < mDrmConstraints->mConstraintMap.size();
66 const String8& key = mDrmConstraints->mConstraintMap.keyAt(mIndex);
67 mIndex++;
77 mIndex(keyIterator.mIndex) {
83 mIndex = keyIterator.mIndex;
94 mIndex(iterator.mIndex) {
100 mIndex
[all...]
H A DDrmInfo.cpp70 mDrmInfo(keyIterator.mDrmInfo), mIndex(keyIterator.mIndex) {
75 return (mIndex < mDrmInfo->mAttributes.size());
79 const String8& key = mDrmInfo->mAttributes.keyAt(mIndex);
80 mIndex++;
86 mIndex = keyIterator.mIndex;
92 : mDrmInfo(iterator.mDrmInfo), mIndex(iterator.mIndex) {
98 mIndex
[all...]
H A DDrmInfoRequest.cpp64 mIndex(keyIterator.mIndex) {
69 return (mIndex < mDrmInfoRequest->mRequestInformationMap.size());
73 const String8& key = mDrmInfoRequest->mRequestInformationMap.keyAt(mIndex);
74 mIndex++;
81 mIndex = keyIterator.mIndex;
87 mDrmInfoRequest(iterator.mDrmInfoRequest), mIndex(iterator.mIndex) {
93 mIndex
[all...]
H A DDrmMetadata.cpp65 return mIndex < mDrmMetadata->mMetadataMap.size();
69 const String8& key = mDrmMetadata->mMetadataMap.keyAt(mIndex);
70 mIndex++;
80 mIndex(keyIterator.mIndex) {
87 mIndex = keyIterator.mIndex;
98 mIndex(iterator.mIndex) {
105 mIndex
[all...]
H A DDrmSupportInfo.cpp116 mIndex(iterator.mIndex) {
123 mIndex = iterator.mIndex;
128 return mIndex < mDrmSupportInfo->mFileSuffixVector.size();
132 String8& value = mDrmSupportInfo->mFileSuffixVector.editItemAt(mIndex);
133 mIndex++;
140 mIndex(iterator.mIndex) {
147 mIndex
[all...]
/frameworks/av/include/drm/
H A DDrmConstraints.h74 : mDrmConstraints(drmConstraints), mIndex(0) {}
87 unsigned int mIndex; member in class:android::DrmConstraints::KeyIterator
97 : mDrmConstraints(drmConstraints), mIndex(0) {}
110 unsigned int mIndex; member in class:android::DrmConstraints::Iterator
H A DDrmInfo.h59 : mDrmInfo(const_cast <DrmInfo*> (drmInfo)), mIndex(0) {}
72 unsigned int mIndex; member in class:android::DrmInfo::KeyIterator
83 : mDrmInfo(const_cast <DrmInfo*> (drmInfo)), mIndex(0) {}
96 unsigned int mIndex; member in class:android::DrmInfo::Iterator
H A DDrmInfoRequest.h73 : mDrmInfoRequest(const_cast <DrmInfoRequest*> (drmInfoRequest)), mIndex(0) {}
86 unsigned int mIndex; member in class:android::DrmInfoRequest::KeyIterator
97 : mDrmInfoRequest(const_cast <DrmInfoRequest*> (drmInfoRequest)), mIndex(0) {}
110 unsigned int mIndex; member in class:android::DrmInfoRequest::Iterator
H A DDrmMetadata.h38 KeyIterator(DrmMetadata* drmMetadata) : mDrmMetadata(drmMetadata), mIndex(0) {}
51 unsigned int mIndex; member in class:android::DrmMetadata::KeyIterator
60 Iterator(DrmMetadata* drmMetadata) : mDrmMetadata(drmMetadata), mIndex(0) {}
73 unsigned int mIndex; member in class:android::DrmMetadata::Iterator
H A DDrmSupportInfo.h41 : mDrmSupportInfo(drmSupportInfo), mIndex(0) {}
53 unsigned int mIndex; member in class:android::DrmSupportInfo::MimeTypeIterator
64 : mDrmSupportInfo(drmSupportInfo), mIndex(0) {}
76 unsigned int mIndex; member in class:android::DrmSupportInfo::FileSuffixIterator
/frameworks/av/include/media/
H A DIMediaSource.h205 IndexCache() : mIndex(0) { }
227 if (mIndex == UINT64_MAX) {
229 mIndex = 1; // skip overflow condition and hope for the best
231 ++mIndex;
233 (void)mMemoryToIndex.emplace(// C++11 mem.get(), std::make_pair(mem, mIndex))
235 std::forward_as_tuple(mem.get()), std::forward_as_tuple(mem, mIndex));
236 return mIndex;
244 mIndex = 0;
258 uint64_t mIndex; member in struct:BnMediaSource::IndexCache
/frameworks/av/include/media/stagefright/
H A DFrameRenderTracker.h40 // queue fence (read fence). mIndex is negative, and mRenderTimeNs is invalid.
41 // Key characteristics: mFence is not NULL and mIndex is negative.
43 // 2. dequeued frame: mFence is updated with the dequeue fence (write fence). mIndex is set.
44 // Key characteristics: mFence is not NULL and mIndex is non-negative. mRenderTime is still
58 ssize_t getIndex() const { return mIndex; }
64 mIndex(-1),
73 mIndex(-1),
81 ssize_t mIndex; // to be used by client member in struct:android::FrameRenderTracker::Info
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DGenericSource.cpp238 mAudioTrack.mIndex = i;
251 mVideoTrack.mIndex = i;
659 track->mIndex = trackIndex;
1060 return track->mIndex;
1105 if (mSubtitleTrack.mSource != NULL && trackIndex == mSubtitleTrack.mIndex) {
1108 } else if (mTimedTextTrack.mSource != NULL && trackIndex == mTimedTextTrack.mIndex) {
1128 if (track->mSource != NULL && track->mIndex == trackIndex) {
1131 track->mIndex = trackIndex;
1176 if (track->mSource != NULL && track->mIndex == trackIndex) {
1321 meta->setInt32("trackIndex", mSubtitleTrack.mIndex);
[all...]
H A DGenericSource.h111 size_t mIndex; member in struct:android::NuPlayer::GenericSource::Track
H A DNuPlayerStreamListener.cpp58 entry.mIndex = index;
147 if (entry->mIndex >= mBuffers.size()) {
151 sp<IMemory> mem = mBuffers.editItemAt(entry->mIndex);
165 mSource->onBufferAvailable(entry->mIndex);
H A DNuPlayerStreamListener.h51 size_t mIndex; member in struct:android::NuPlayer::NuPlayerStreamListener::QueueEntry
/frameworks/av/media/libstagefright/
H A DFrameRenderTracker.cpp70 if (renderInfo->mIndex >= 0) {
85 renderInfo->mIndex = index;
117 if (it->mIndex < 0) {
163 if (it->mIndex > index) {
164 --(it->mIndex);
179 (long long)it->mMediaTimeUs, it->mIndex, (long long)it->mRenderTimeNs);
180 } else if (it->mIndex < 0) {
186 it->mGraphicBuffer->handle, (long long)it->mMediaTimeUs, it->mIndex);
/frameworks/av/media/libstagefright/matroska/
H A DMatroskaExtractor.cpp111 unsigned long mIndex; member in struct:android::BlockIterator
281 mIndex(index),
453 MatroskaExtractor::TrackInfo& track = mExtractor->mTracks.editItemAt(mIndex);
/frameworks/av/media/libstagefright/rtsp/
H A DARTPConnection.cpp59 size_t mIndex; member in struct:android::ARTPConnection::StreamInfo
201 CHECK(msg->findSize("index", &info->mIndex));
631 srcId, info->mSessionDesc, info->mIndex, info->mNotifyMsg);
/frameworks/av/services/audiopolicy/common/include/
H A DVolume.h29 int mIndex; member in class:VolumeCurvePoint
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/
H A DAudioGain.h64 int mIndex; member in class:android::AudioGain
H A DVolumeCurve.h37 mIndex(index), mAttenuationInMb(attenuationInMb) {}
38 uint32_t mIndex; member in struct:android::CurvePoint
44 return lhs.mIndex < rhs.mIndex;
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DAudioGain.cpp37 mIndex = index;
44 config->index = mIndex;

Completed in 414 milliseconds

1234