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

  /frameworks/av/media/libeffects/lvm/wrapper/Bundle/
EffectBundle.h 103 FILE *PcmInPtr;
EffectBundle.cpp 237 pContext->pBundledContext->PcmInPtr = fopen(fileName, "w");
238 if (pContext->pBundledContext->PcmInPtr == NULL) {
248 fclose(pContext->pBundledContext->PcmInPtr);
249 pContext->pBundledContext->PcmInPtr = NULL;
407 if (pContext->pBundledContext->PcmInPtr != NULL) {
408 fclose(pContext->pBundledContext->PcmInPtr);
409 pContext->pBundledContext->PcmInPtr = NULL;
744 fwrite(pIn, frameCount*sizeof(LVM_INT16)*2, 1, pContext->pBundledContext->PcmInPtr);
745 fflush(pContext->pBundledContext->PcmInPtr);
    [all...]
  /frameworks/av/media/libeffects/lvm/wrapper/Reverb/
EffectReverb.cpp 148 FILE *PcmInPtr;
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);
    [all...]

Completed in 39 milliseconds