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

/frameworks/av/media/libeffects/lvm/wrapper/Bundle/
H A DEffectBundle.h101 FILE *PcmInPtr; member in struct:BundledEffectContext
H A DEffectBundle.cpp267 pContext->pBundledContext->PcmInPtr = fopen(fileName, "w");
268 if (pContext->pBundledContext->PcmInPtr == NULL) {
278 fclose(pContext->pBundledContext->PcmInPtr);
279 pContext->pBundledContext->PcmInPtr = NULL;
437 if (pContext->pBundledContext->PcmInPtr != NULL) {
438 fclose(pContext->pBundledContext->PcmInPtr);
439 pContext->pBundledContext->PcmInPtr = NULL;
770 fwrite(pIn, frameCount*sizeof(LVM_INT16)*2, 1, pContext->pBundledContext->PcmInPtr);
771 fflush(pContext->pBundledContext->PcmInPtr);
/frameworks/av/media/libeffects/lvm/wrapper/Reverb/
H A DEffectReverb.cpp146 FILE *PcmInPtr; member in struct:android::__anon464::ReverbContext
279 pContext->PcmInPtr = NULL;
282 pContext->PcmInPtr = fopen("/data/tmp/reverb_pcm_in.pcm", "w");
285 if((pContext->PcmInPtr == NULL)||
311 fclose(pContext->PcmInPtr);
462 fwrite(pIn, frameCount*sizeof(LVM_INT16)*samplesPerFrame, 1, pContext->PcmInPtr);
463 fflush(pContext->PcmInPtr);

Completed in 261 milliseconds