Searched refs:PcmOutPtr (Results 1 - 3 of 3) sorted by relevance

/frameworks/av/media/libeffects/lvm/wrapper/Bundle/
H A DEffectBundle.h104 FILE *PcmOutPtr; member in struct:BundledEffectContext
H A DEffectBundle.cpp274 pContext->pBundledContext->PcmOutPtr = fopen(fileName, "w");
275 if (pContext->pBundledContext->PcmOutPtr == NULL) {
440 if (pContext->pBundledContext->PcmOutPtr != NULL) {
441 fclose(pContext->pBundledContext->PcmOutPtr);
442 pContext->pBundledContext->PcmOutPtr = NULL;
790 fwrite(pOutTmp, frameCount*sizeof(LVM_INT16)*2, 1, pContext->pBundledContext->PcmOutPtr);
791 fflush(pContext->pBundledContext->PcmOutPtr);
/frameworks/av/media/libeffects/lvm/wrapper/Reverb/
H A DEffectReverb.cpp149 FILE *PcmOutPtr; member in struct:android::__anon245::ReverbContext
259 pContext->PcmOutPtr = NULL;
262 pContext->PcmOutPtr = fopen("/data/tmp/reverb_pcm_out.pcm", "w");
265 (pContext->PcmOutPtr == NULL)){
291 fclose(pContext->PcmOutPtr);
530 fwrite(OutFrames16, frameCount*sizeof(LVM_INT16)*2, 1, pContext->PcmOutPtr);
531 fflush(pContext->PcmOutPtr);

Completed in 233 milliseconds