Home
last modified time | relevance | path

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

/ohos5.0/foundation/multimedia/player_framework/frameworks/native/soundpool/
H A Dcache_buffer.cpp187 uint8_t *fullBuffer = new(std::nothrow) uint8_t[cacheDataTotalSize_]; in ReCombineCacheData() local
188 CHECK_AND_RETURN_RET_LOG(fullBuffer != nullptr, MSERR_INVALID_VAL, "Invalid fullBuffer"); in ReCombineCacheData()
195 delete[] fullBuffer; in ReCombineCacheData()
200 int32_t ret = memcpy_s(fullBuffer + copyIndex, remainBufferSize, in ReCombineCacheData()
203 delete[] fullBuffer; in ReCombineCacheData()
216 fullCacheData_ = std::make_shared<AudioBufferEntry>(fullBuffer, cacheDataTotalSize_); in ReCombineCacheData()