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.cpp268 pContext->pBundledContext->PcmInPtr = fopen(fileName, "w");
269 if (pContext->pBundledContext->PcmInPtr == NULL) {
279 fclose(pContext->pBundledContext->PcmInPtr);
280 pContext->pBundledContext->PcmInPtr = NULL;
443 if (pContext->pBundledContext->PcmInPtr != NULL) {
444 fclose(pContext->pBundledContext->PcmInPtr);
445 pContext->pBundledContext->PcmInPtr = NULL;
856 fwrite(pIn, frameCount*sizeof(LVM_INT16) * FCC_2, 1, pContext->pBundledContext->PcmInPtr);
857 fflush(pContext->pBundledContext->PcmInPtr);
917 fwrite(pIn, frameCount*sizeof(LVM_INT16)*2, 1, pContext->pBundledContext->PcmInPtr);
[all...]
/frameworks/av/media/libeffects/lvm/wrapper/Reverb/
H A DEffectReverb.cpp151 FILE *PcmInPtr; member in struct:android::__anon336::ReverbContext
266 pContext->PcmInPtr = NULL;
269 pContext->PcmInPtr = fopen("/data/tmp/reverb_pcm_in.pcm", "w");
272 if((pContext->PcmInPtr == NULL)||
305 fclose(pContext->PcmInPtr);
523 fwrite(pIn, frameCount*sizeof(LVM_INT16)*samplesPerFrame, 1, pContext->PcmInPtr);
524 fflush(pContext->PcmInPtr);

Completed in 121 milliseconds