HomeSort by relevance Sort by last modified time
    Searched refs:PcmInPtr (Results 1 - 3 of 3) sorted by null

  /frameworks/base/media/libeffects/lvm/wrapper/Bundle/
EffectBundle.h 99 FILE *PcmInPtr;
EffectBundle.cpp 256 pContext->pBundledContext->PcmInPtr = fopen(fileName, "w");
257 if (pContext->pBundledContext->PcmInPtr == NULL) {
267 fclose(pContext->pBundledContext->PcmInPtr);
268 pContext->pBundledContext->PcmInPtr = NULL;
422 if (pContext->pBundledContext->PcmInPtr != NULL) {
423 fclose(pContext->pBundledContext->PcmInPtr);
424 pContext->pBundledContext->PcmInPtr = NULL;
734 fwrite(pIn, frameCount*sizeof(LVM_INT16)*2, 1, pContext->pBundledContext->PcmInPtr);
735 fflush(pContext->pBundledContext->PcmInPtr);
    [all...]
  /frameworks/base/media/libeffects/lvm/wrapper/Reverb/
EffectReverb.cpp 145 FILE *PcmInPtr;
276 pContext->PcmInPtr = NULL;
279 pContext->PcmInPtr = fopen("/data/tmp/reverb_pcm_in.pcm", "w");
282 if((pContext->PcmInPtr == NULL)||
308 fclose(pContext->PcmInPtr);
437 fwrite(pIn, frameCount*sizeof(LVM_INT16)*samplesPerFrame, 1, pContext->PcmInPtr);
438 fflush(pContext->PcmInPtr);
    [all...]

Completed in 43 milliseconds