Home
last modified time | relevance | path

Searched refs:bufIn (Results 1 – 12 of 12) sorted by relevance

/ohos5.0/foundation/multimedia/audio_framework/frameworks/native/audioeffect/test/unittest/effect_unit_test/src/
H A Daudio_effect_chain_manager_unit_test.cpp337 float* bufIn; variable
343 bufIn = bufInVector.data();
347 auto eBufferAttr = make_unique<EffectBufferAttr>(bufIn, bufOut, numChans, frameLen);
365 float* bufIn; variable
371 bufIn = bufInVector.data();
375 auto eBufferAttr = make_unique<EffectBufferAttr>(bufIn, bufOut, numChans, frameLen);
393 float* bufIn; variable
399 bufIn = bufInVector.data();
403 auto eBufferAttr = make_unique<EffectBufferAttr>(bufIn, bufOut, numChans, frameLen);
421 float* bufIn; variable
[all …]
/ohos5.0/foundation/multimedia/audio_framework/frameworks/native/audioeffect/src/
H A Daudio_effect_chain.cpp247 void AudioEffectChain::ApplyEffectChain(float *bufIn, float *bufOut, uint32_t frameLen, AudioEffect… in ApplyEffectChain() argument
251 DumpFileUtil::WriteDumpFile(dumpFileInput_, static_cast<void *>(bufIn), inTotlen); in ApplyEffectChain()
252 DumpEffectProcessData(dumpNameIn_, static_cast<void *>(bufIn), inTotlen); in ApplyEffectChain()
255 …CHECK_AND_RETURN_LOG(memcpy_s(bufOut, outTotlen, bufIn, outTotlen) == 0, "memcpy error in apply ef… in ApplyEffectChain()
278 audioBufIn_.raw = bufIn; in ApplyEffectChain()
281 audioBufOut_.raw = bufIn; in ApplyEffectChain()
290 …CHECK_AND_RETURN_LOG(memcpy_s(bufOut, outTotlen, bufIn, outTotlen) == 0, "memcpy error when last c… in ApplyEffectChain()
H A Daudio_effect_chain_adapter.cpp70 …auto eBufferAttr = std::make_unique<EffectBufferAttr>(bufferAttr->bufIn, bufferAttr->bufOut, buffe… in EffectChainManagerProcess()
H A Daudio_effect_chain_manager.cpp496 …CHECK_AND_RETURN_RET_LOG(memcpy_s(bufferAttr->bufOut, totLen, bufferAttr->bufIn, totLen) == 0, ERR… in ApplyAudioEffectChain()
503 …CHECK_AND_RETURN_RET_LOG(memcpy_s(bufferAttr->bufOut, totLen, bufferAttr->bufIn, totLen) == 0, ERR… in ApplyAudioEffectChain()
510 …audioEffectChain->ApplyEffectChain(bufferAttr->bufIn, bufferAttr->bufOut, bufferAttr->frameLen, pr… in ApplyAudioEffectChain()
/ohos5.0/foundation/bundlemanager/bundle_framework_lite/services/bundlemgr_lite/src/
H A Dzip_file.cpp446 BytePtr bufIn = new (std::nothrow) Byte[UNZIP_BUF_IN_LEN]; in InitZStream() local
447 if (bufIn == nullptr) { in InitZStream()
453 zstream.next_in = bufIn; in InitZStream()
486 BytePtr bufIn = zstream.next_in; in UnzipWithInflated() local
495 if (!ReadZStream(bufIn, zstream, remainCompressedSize)) { in UnzipWithInflated()
536 delete[] bufIn; in UnzipWithInflated()
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/
H A Dzip_file.cpp463 BytePtr bufIn = new (std::nothrow) Byte[UNZIP_BUF_IN_LEN]; in InitZStream() local
464 if (bufIn == nullptr) { in InitZStream()
470 zstream.next_in = bufIn; in InitZStream()
502 BytePtr bufIn = zstream.next_in; in UnzipWithInflated() local
510 if (!ReadZStream(bufIn, zstream, remainCompressedSize)) { in UnzipWithInflated()
546 delete[] bufIn; in UnzipWithInflated()
/ohos5.0/foundation/multimedia/audio_framework/frameworks/native/audioeffect/include/
H A Daudio_effect_chain_manager.h83 float *bufIn; member
88 EffectBufferAttr(float *bufIn, float *bufOut, int numChans, int frameLen) in EffectBufferAttr()
89 : bufIn(bufIn), bufOut(bufOut), numChans(numChans), frameLen(frameLen) in EffectBufferAttr()
H A Daudio_effect_chain_adapter.h28 float *bufIn; member
H A Daudio_effect_chain.h67 …void ApplyEffectChain(float *bufIn, float *bufOut, uint32_t frameLen, AudioEffectProcInfo procInfo…
/ohos5.0/foundation/ability/ability_base/interfaces/kits/native/extractortool/src/
H A Dzip_file.cpp754 BytePtr bufIn = new (std::nothrow) Byte[UNZIP_BUF_IN_LEN]; in InitZStream() local
755 if (bufIn == nullptr) { in InitZStream()
761 zstream.next_in = bufIn; in InitZStream()
793 BytePtr bufIn = zstream.next_in; in UnzipWithInflated() local
802 if (!ReadZStream(bufIn, zstream, remainCompressedSize, startPos)) { in UnzipWithInflated()
838 delete[] bufIn; in UnzipWithInflated()
936 BytePtr bufIn = zstream.next_in; in UnzipWithInflatedFromMMap() local
951 if (!ReadZStreamFromMMap(bufIn, mmapSrcDataPtr, zstream, remainCompressedSize)) { in UnzipWithInflatedFromMMap()
977 delete[] bufIn; in UnzipWithInflatedFromMMap()
/ohos5.0/foundation/multimedia/audio_framework/services/audio_service/client/include/
H A Doffline_stream_in_client.h63 int32_t PrepareOfflineEffectChain(std::shared_ptr<AudioSharedMemory> &bufIn,
/ohos5.0/foundation/multimedia/audio_framework/frameworks/native/pulseaudio/modules/hdi/
H A Dhdi_sink.c1867 float **buffers[] = { &u->bufferAttr->bufIn, &u->bufferAttr->bufOut, in AllocateEffectBuffer()
1886 float **buffers[] = { &u->bufferAttr->bufIn, &u->bufferAttr->bufOut, in FreeEffectBuffer()
1942 …memcpy_s(u->bufferAttr->bufIn, frameLen * sizeof(float), u->bufferAttr->tempBufIn, frameLen * size… in SinkRenderPrimaryProcess()