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

/frameworks/av/media/libeffects/lvm/wrapper/Bundle/
H A DEffectBundle.h103 FILE *PcmInPtr; member in struct:BundledEffectContext
H A DEffectBundle.cpp236 pContext->pBundledContext->PcmInPtr = fopen(fileName, "w");
237 if (pContext->pBundledContext->PcmInPtr == NULL) {
247 fclose(pContext->pBundledContext->PcmInPtr);
248 pContext->pBundledContext->PcmInPtr = NULL;
406 if (pContext->pBundledContext->PcmInPtr != NULL) {
407 fclose(pContext->pBundledContext->PcmInPtr);
408 pContext->pBundledContext->PcmInPtr = NULL;
740 fwrite(pIn, frameCount*sizeof(LVM_INT16)*2, 1, pContext->pBundledContext->PcmInPtr);
741 fflush(pContext->pBundledContext->PcmInPtr);
/frameworks/av/media/libeffects/lvm/wrapper/Reverb/
H A DEffectReverb.cpp148 FILE *PcmInPtr; member in struct:android::__anon229::ReverbContext
257 pContext->PcmInPtr = NULL;
260 pContext->PcmInPtr = fopen("/data/tmp/reverb_pcm_in.pcm", "w");
263 if((pContext->PcmInPtr == NULL)||
289 fclose(pContext->PcmInPtr);
440 fwrite(pIn, frameCount*sizeof(LVM_INT16)*samplesPerFrame, 1, pContext->PcmInPtr);
441 fflush(pContext->PcmInPtr);

Completed in 224 milliseconds