Lines Matching full:sampleid
188 sp<Sample> SoundPool::findSample(int sampleID)
191 return findSample_l(sampleID);
194 sp<Sample> SoundPool::findSample_l(int sampleID)
196 return mSamples.valueFor(sampleID);
223 int sampleID;
226 sampleID = ++mNextSampleID;
227 sp<Sample> sample = new Sample(sampleID, fd, offset, length);
228 mSamples.add(sampleID, sample);
236 mDecodeThread->loadSample(sampleID);
237 return sampleID;
240 bool SoundPool::unload(int sampleID)
242 ALOGV("unload: sampleID=%d", sampleID);
244 return mSamples.removeItem(sampleID) >= 0; // removeItem() returns index or BAD_VALUE
247 int SoundPool::play(int sampleID, float leftVolume, float rightVolume,
250 ALOGV("play sampleID=%d, leftVolume=%f, rightVolume=%f, priority=%d, loop=%d, rate=%f",
251 sampleID, leftVolume, rightVolume, priority, loop, rate);
261 sp<Sample> sample(findSample_l(sampleID));
263 ALOGW(" sample %d not READY", sampleID);
270 channel = allocateChannel_l(priority, sampleID);
285 SoundChannel* SoundPool::allocateChannel_l(int priority, int sampleID)
290 // check if channel for given sampleID still available
293 if (sampleID == (*iter)->getPrevSampleID() && (*iter)->state() == SoundChannel::IDLE) {
296 ALOGV("Allocated recycled channel for same sampleID");
483 Sample::Sample(int sampleID, int fd, int64_t offset, int64_t length)
486 mSampleID = sampleID;
490 ALOGV("create sampleID=%d, fd=%d, offset=%" PRId64 " length=%" PRId64,
507 ALOGV("Sample::destructor sampleID=%d, fd=%d", mSampleID, mFd);
726 ALOGV("SoundChannel::play %p: sampleID=%d, channelID=%d, leftVolume=%f, rightVolume=%f,"
728 this, sample->sampleID(), nextChannelID, leftVolume, rightVolume,
769 if (mAudioTrack != 0 && mPrevSampleID == sample->sampleID()) {
773 ALOGV("reusing track %p for sample %d", mAudioTrack.get(), sample->sampleID());
810 ALOGV("using new track %p for sample %d", newTrack.get(), sample->sampleID());
960 mPrevSampleID = mSample->sampleID();