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.cpp276 pContext->pBundledContext->PcmOutPtr = fopen(fileName, "w");
277 if (pContext->pBundledContext->PcmOutPtr == NULL) {
447 if (pContext->pBundledContext->PcmOutPtr != NULL) {
448 fclose(pContext->pBundledContext->PcmOutPtr);
449 pContext->pBundledContext->PcmOutPtr = NULL;
876 fwrite(pOutTmp, frameCount*sizeof(LVM_INT16) * FCC_2, 1, pContext->pBundledContext->PcmOutPtr);
877 fflush(pContext->pBundledContext->PcmOutPtr);
934 fwrite(pOutTmp, frameCount*sizeof(LVM_INT16)*2, 1, pContext->pBundledContext->PcmOutPtr);
935 fflush(pContext->pBundledContext->PcmOutPtr);
/frameworks/av/media/libeffects/lvm/wrapper/Reverb/
H A DEffectReverb.cpp152 FILE *PcmOutPtr; member in struct:android::__anon336::ReverbContext
267 pContext->PcmOutPtr = NULL;
270 pContext->PcmOutPtr = fopen("/data/tmp/reverb_pcm_out.pcm", "w");
273 (pContext->PcmOutPtr == NULL)){
306 fclose(pContext->PcmOutPtr);
647 fwrite(OutFrames16, frameCount*sizeof(LVM_INT16)*2, 1, pContext->PcmOutPtr);
648 fflush(pContext->PcmOutPtr);

Completed in 52 milliseconds