OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PcmInPtr
(Results
1 - 3
of
3
) sorted by null
/frameworks/av/media/libeffects/lvm/wrapper/Bundle/
EffectBundle.h
101
FILE *
PcmInPtr
;
EffectBundle.cpp
232
pContext->pBundledContext->
PcmInPtr
= fopen(fileName, "w");
233
if (pContext->pBundledContext->
PcmInPtr
== NULL) {
243
fclose(pContext->pBundledContext->
PcmInPtr
);
244
pContext->pBundledContext->
PcmInPtr
= NULL;
402
if (pContext->pBundledContext->
PcmInPtr
!= NULL) {
403
fclose(pContext->pBundledContext->
PcmInPtr
);
404
pContext->pBundledContext->
PcmInPtr
= NULL;
735
fwrite(pIn, frameCount*sizeof(LVM_INT16)*2, 1, pContext->pBundledContext->
PcmInPtr
);
736
fflush(pContext->pBundledContext->
PcmInPtr
);
[
all
...]
/frameworks/av/media/libeffects/lvm/wrapper/Reverb/
EffectReverb.cpp
146
FILE *
PcmInPtr
;
255
pContext->
PcmInPtr
= NULL;
258
pContext->
PcmInPtr
= fopen("/data/tmp/reverb_pcm_in.pcm", "w");
261
if((pContext->
PcmInPtr
== NULL)||
287
fclose(pContext->
PcmInPtr
);
438
fwrite(pIn, frameCount*sizeof(LVM_INT16)*samplesPerFrame, 1, pContext->
PcmInPtr
);
439
fflush(pContext->
PcmInPtr
);
[
all
...]
Completed in 331 milliseconds