Lines Matching refs:pCntxt
323 CallbackCntxt *pCntxt = (CallbackCntxt*)pContext; in DecPlayCallback() local
326 if (outputFp != NULL && fwrite(pCntxt->pData, 1, BUFFER_SIZE_IN_BYTES, outputFp) in DecPlayCallback()
333 res = (*queueItf)->Enqueue(queueItf, pCntxt->pData, BUFFER_SIZE_IN_BYTES); in DecPlayCallback()
337 pCntxt->pData += BUFFER_SIZE_IN_BYTES; in DecPlayCallback()
338 if (pCntxt->pData >= pCntxt->pDataBase + (NB_BUFFERS_IN_PCM_QUEUE * BUFFER_SIZE_IN_BYTES)) { in DecPlayCallback()
339 pCntxt->pData = pCntxt->pDataBase; in DecPlayCallback()
354 res = (*pCntxt->metaItf)->GetValue(pCntxt->metaItf, sampleRateKeyIndex, in DecPlayCallback()
361 res = (*pCntxt->metaItf)->GetValue(pCntxt->metaItf, channelCountKeyIndex, in DecPlayCallback()
364 res = (*pCntxt->metaItf)->GetValue(pCntxt->metaItf, bitsPerSampleKeyIndex, in DecPlayCallback()
367 res = (*pCntxt->metaItf)->GetValue(pCntxt->metaItf, containerSizeKeyIndex, in DecPlayCallback()
370 res = (*pCntxt->metaItf)->GetValue(pCntxt->metaItf, channelMaskKeyIndex, in DecPlayCallback()
374 res = (*pCntxt->metaItf)->GetValue(pCntxt->metaItf, endiannessKeyIndex, in DecPlayCallback()
387 res = (*pCntxt->playItf)->GetPosition(pCntxt->playItf, &position); in DecPlayCallback()
390 res = (*pCntxt->playItf)->GetDuration(pCntxt->playItf, &duration); in DecPlayCallback()