/ohos5.0/foundation/multimedia/audio_framework/frameworks/native/audioeffect/test/unittest/effect_unit_test/src/ |
H A D | audio_effect_chain_manager_unit_test.cpp | 337 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 D | audio_effect_chain.cpp | 247 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 D | audio_effect_chain_adapter.cpp | 70 …auto eBufferAttr = std::make_unique<EffectBufferAttr>(bufferAttr->bufIn, bufferAttr->bufOut, buffe… in EffectChainManagerProcess()
|
H A D | audio_effect_chain_manager.cpp | 496 …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 D | zip_file.cpp | 446 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 D | zip_file.cpp | 463 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 D | audio_effect_chain_manager.h | 83 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 D | audio_effect_chain_adapter.h | 28 float *bufIn; member
|
H A D | audio_effect_chain.h | 67 …void ApplyEffectChain(float *bufIn, float *bufOut, uint32_t frameLen, AudioEffectProcInfo procInfo…
|
/ohos5.0/foundation/ability/ability_base/interfaces/kits/native/extractortool/src/ |
H A D | zip_file.cpp | 754 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 D | offline_stream_in_client.h | 63 int32_t PrepareOfflineEffectChain(std::shared_ptr<AudioSharedMemory> &bufIn,
|
/ohos5.0/foundation/multimedia/audio_framework/frameworks/native/pulseaudio/modules/hdi/ |
H A D | hdi_sink.c | 1867 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()
|