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.cpp244 pContext->pBundledContext->PcmOutPtr = fopen(fileName, "w");
245 if (pContext->pBundledContext->PcmOutPtr == NULL) {
410 if (pContext->pBundledContext->PcmOutPtr != NULL) {
411 fclose(pContext->pBundledContext->PcmOutPtr);
412 pContext->pBundledContext->PcmOutPtr = NULL;
757 fwrite(pOutTmp, frameCount*sizeof(LVM_INT16)*2, 1, pContext->pBundledContext->PcmOutPtr);
758 fflush(pContext->pBundledContext->PcmOutPtr);
/frameworks/av/media/libeffects/lvm/wrapper/Reverb/
H A DEffectReverb.cpp149 FILE *PcmOutPtr; member in struct:android::__anon229::ReverbContext
258 pContext->PcmOutPtr = NULL;
261 pContext->PcmOutPtr = fopen("/data/tmp/reverb_pcm_out.pcm", "w");
264 (pContext->PcmOutPtr == NULL)){
290 fclose(pContext->PcmOutPtr);
529 fwrite(OutFrames16, frameCount*sizeof(LVM_INT16)*2, 1, pContext->PcmOutPtr);
530 fflush(pContext->PcmOutPtr);

Completed in 276 milliseconds