HomeSort by relevance Sort by last modified time
    Searched refs:oldFront (Results 1 - 7 of 7) sorted by null

  /frameworks/wilhelm/src/android/
BufferQueueSource.cpp 77 AdvancedBufferHeader *oldFront = mAndroidBufferQueueSource->mFront;
78 AdvancedBufferHeader *newFront = &oldFront[1];
87 if (oldFront->mDataSizeConsumed == 0) {
88 if (oldFront->mItems.mAdtsCmdData.mAdtsCmdCode & ANDROID_ADTSEVENT_EOS) {
93 oldFront->mItems.mAdtsCmdData.mAdtsCmdCode = ANDROID_ADTSEVENT_NONE;
99 if (offset + size <= mStreamToBqOffset + oldFront->mDataSize) {
100 pSrc = ((char*)oldFront->mDataBuffer) + (offset - mStreamToBqOffset);
102 if (offset - mStreamToBqOffset + size == oldFront->mDataSize) {
104 oldFront->mDataSizeConsumed = oldFront->mDataSize
    [all...]
android_StreamPlayer.cpp 134 AdvancedBufferHeader *oldFront = NULL;
148 oldFront = mAndroidBufferQueue->mFront;
149 AdvancedBufferHeader *newFront = &oldFront[1];
152 if (oldFront->mDataSizeConsumed == 0) {
154 if (oldFront->mItems.mTsCmdData.mTsCmdCode & ANDROID_MP2TSEVENT_EOS) {
158 } else if (oldFront->mItems.mTsCmdData.mTsCmdCode & ANDROID_MP2TSEVENT_DISCONTINUITY) {
160 } else if (oldFront->mItems.mTsCmdData.mTsCmdCode & ANDROID_MP2TSEVENT_DISCON_NEWPTS) {
163 (int64_t)oldFront->mItems.mTsCmdData.mPts);
165 } else if (oldFront->mItems.mTsCmdData.mTsCmdCode
172 } else if (oldFront->mItems.mTsCmdData.mTsCmdCod
    [all...]
AudioRecorder_to_android.cpp 234 BufferHeader *oldFront = ar->mBufferQueue.mFront;
235 BufferHeader *newFront = &oldFront[1];
238 short *pDest = (short*)((char *)oldFront->mBuffer + ar->mBufferQueue.mSizeConsumed);
239 if (ar->mBufferQueue.mSizeConsumed + pBuff->size < oldFront->mSize) {
251 pBuff->size = oldFront->mSize - ar->mBufferQueue.mSizeConsumed;
AudioPlayer_to_android.cpp 119 BufferHeader *oldFront = ap->mBufferQueue.mFront;
120 BufferHeader *newFront = &oldFront[1];
122 uint8_t *pDest = (uint8_t *)oldFront->mBuffer + ap->mBufferQueue.mSizeConsumed;
123 if (ap->mBufferQueue.mSizeConsumed + size < oldFront->mSize) {
131 sizeConsumed = oldFront->mSize - ap->mBufferQueue.mSizeConsumed;
    [all...]
  /frameworks/wilhelm/src/itf/
IOutputMixExt.c 68 const BufferHeader *oldFront;
108 oldFront = audioPlayer->mBufferQueue.mFront;
109 if (oldFront != audioPlayer->mBufferQueue.mRear) {
111 track->mReader = oldFront->mBuffer;
112 track->mAvail = oldFront->mSize;
135 oldFront = audioPlayer->mBufferQueue.mFront;
136 if (oldFront != audioPlayer->mBufferQueue.mRear) {
138 track->mReader = oldFront->mBuffer;
139 track->mAvail = oldFront->mSize;
275 const BufferHeader *oldFront, *newFront, *rear
    [all...]
  /frameworks/av/media/libnbaio/
PipeReader.cpp 53 int32_t oldFront = mFront;
55 mFramesOverrun += (size_t) (mFront - oldFront);
  /frameworks/wilhelm/src/
ThreadPool.c 193 Closure **oldFront = tp->mClosureFront;
194 while (oldFront != tp->mClosureRear) {
195 Closure **newFront = oldFront;
198 Closure *pClosure = *oldFront;
200 *oldFront = NULL;
339 Closure **oldFront = tp->mClosureFront;
341 if (oldFront == tp->mClosureRear) {
349 Closure **newFront = oldFront;
353 pClosure = *oldFront;
355 *oldFront = NULL
    [all...]

Completed in 1282 milliseconds