You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
520 lines
20 KiB
520 lines
20 KiB
/****************************************************************************
|
|
Copyright (c) 2016 Chukong Technologies Inc.
|
|
Copyright (c) 2017-2023 Xiamen Yaji Software Co., Ltd.
|
|
|
|
http://www.cocos2d-x.org
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights to
|
|
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
of the Software, and to permit persons to whom the Software is furnished to do so,
|
|
subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
all copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
THE SOFTWARE.
|
|
****************************************************************************/
|
|
|
|
#include <memory>
|
|
#include "audio/android/PcmData.h"
|
|
#include "audio/include/AudioDef.h"
|
|
#include "base/Log.h"
|
|
#define LOG_TAG "AudioPlayerProvider"
|
|
|
|
#include <algorithm> // for std::find_if
|
|
#include <cstdlib>
|
|
#include <utility>
|
|
#include "audio/android/AudioDecoder.h"
|
|
#include "audio/android/AudioDecoderProvider.h"
|
|
#include "audio/android/AudioMixerController.h"
|
|
#include "audio/android/AudioPlayerProvider.h"
|
|
#include "audio/android/ICallerThreadUtils.h"
|
|
#include "audio/android/PcmAudioPlayer.h"
|
|
#include "audio/android/PcmAudioService.h"
|
|
#include "audio/android/UrlAudioPlayer.h"
|
|
#include "audio/android/utils/Utils.h"
|
|
#include "base/ThreadPool.h"
|
|
#include "base/memory/Memory.h"
|
|
#if CC_PLATFORM == CC_PLATFORM_ANDROID
|
|
#include <sys/system_properties.h>
|
|
#elif CC_PLATFORM == CC_PLATFORM_OPENHARMONY
|
|
#include "cocos/platform/FileUtils.h"
|
|
#include "cocos/platform/openharmony/FileUtils-OpenHarmony.h"
|
|
#endif
|
|
#include <algorithm> // for std::find_if
|
|
#include <cstdlib>
|
|
#include <utility>
|
|
|
|
namespace cc {
|
|
|
|
static int getSystemAPILevel() {
|
|
static int sSystemApiLevel = -1;
|
|
#if CC_PLATFORM == CC_PLATFORM_ANDROID
|
|
if (sSystemApiLevel > 0) {
|
|
return sSystemApiLevel;
|
|
}
|
|
|
|
int apiLevel = getSDKVersion();
|
|
if (apiLevel > 0) {
|
|
ALOGD("Android API level: %d", apiLevel);
|
|
} else {
|
|
ALOGE("Fail to get Android API level!");
|
|
}
|
|
sSystemApiLevel = apiLevel;
|
|
return apiLevel;
|
|
#elif CC_PLATFORM == CC_PLATFORM_OPENHARMONY
|
|
// TODO(qgh): On the openharmony platform, pcm streaming must be used
|
|
return std::numeric_limits<int>::max();
|
|
#endif
|
|
}
|
|
|
|
struct AudioFileIndicator {
|
|
ccstd::string extension;
|
|
int smallSizeIndicator;
|
|
};
|
|
|
|
static AudioFileIndicator gAudioFileIndicator[] = {
|
|
{"default", 128000}, // If we could not handle the audio format, return default value, the position should be first.
|
|
{".wav", 1024000},
|
|
{".ogg", 128000},
|
|
{".mp3", 160000}};
|
|
|
|
AudioPlayerProvider::AudioPlayerProvider(SLEngineItf engineItf, SLObjectItf outputMixObject,
|
|
int deviceSampleRate, int bufferSizeInFrames,
|
|
const FdGetterCallback &fdGetterCallback, //NOLINT(modernize-pass-by-value)
|
|
ICallerThreadUtils *callerThreadUtils)
|
|
: _engineItf(engineItf), _outputMixObject(outputMixObject), _deviceSampleRate(deviceSampleRate), _bufferSizeInFrames(bufferSizeInFrames), _fdGetterCallback(fdGetterCallback), _callerThreadUtils(callerThreadUtils), _pcmAudioService(nullptr), _mixController(nullptr), _threadPool(LegacyThreadPool::newCachedThreadPool(1, 8, 5, 2, 2)) {
|
|
ALOGI("deviceSampleRate: %d, bufferSizeInFrames: %d", _deviceSampleRate, _bufferSizeInFrames);
|
|
if (getSystemAPILevel() >= 17) {
|
|
_mixController = ccnew AudioMixerController(_bufferSizeInFrames, _deviceSampleRate, 2);
|
|
_mixController->init();
|
|
_pcmAudioService = ccnew PcmAudioService(engineItf, outputMixObject);
|
|
_pcmAudioService->init(_mixController, 2, deviceSampleRate, bufferSizeInFrames * 2);
|
|
}
|
|
|
|
ALOG_ASSERT(callerThreadUtils != nullptr, "Caller thread utils parameter should not be nullptr!");
|
|
}
|
|
|
|
AudioPlayerProvider::~AudioPlayerProvider() {
|
|
ALOGV("~AudioPlayerProvider()");
|
|
UrlAudioPlayer::stopAll();
|
|
|
|
SL_SAFE_DELETE(_pcmAudioService);
|
|
SL_SAFE_DELETE(_mixController);
|
|
SL_SAFE_DELETE(_threadPool);
|
|
}
|
|
|
|
IAudioPlayer *AudioPlayerProvider::getAudioPlayer(const ccstd::string &audioFilePath) {
|
|
// Pcm data decoding by OpenSLES API only supports in API level 17 and later.
|
|
if (getSystemAPILevel() < 17) {
|
|
AudioFileInfo info = getFileInfo(audioFilePath);
|
|
if (info.isValid()) {
|
|
return createUrlAudioPlayer(info);
|
|
}
|
|
|
|
return nullptr;
|
|
}
|
|
|
|
IAudioPlayer *player = nullptr;
|
|
|
|
_pcmCacheMutex.lock();
|
|
auto iter = _pcmCache.find(audioFilePath);
|
|
if (iter != _pcmCache.end()) { // Found pcm cache means it was used to be a PcmAudioService
|
|
PcmData pcmData = iter->second;
|
|
_pcmCacheMutex.unlock();
|
|
player = obtainPcmAudioPlayer(audioFilePath, pcmData);
|
|
ALOGV_IF(player == nullptr, "%s, %d: player is nullptr, path: %s", __FUNCTION__, __LINE__, audioFilePath.c_str());
|
|
} else {
|
|
_pcmCacheMutex.unlock();
|
|
// Check audio file size to determine to use a PcmAudioService or UrlAudioPlayer,
|
|
// generally PcmAudioService is used for playing short audio like game effects while
|
|
// playing background music uses UrlAudioPlayer
|
|
AudioFileInfo info = getFileInfo(audioFilePath);
|
|
if (info.isValid()) {
|
|
if (isSmallFile(info)) {
|
|
// Put an empty lambda to preloadEffect since we only want the future object to get PcmData
|
|
auto pcmData = std::make_shared<PcmData>();
|
|
auto isSucceed = std::make_shared<bool>(false);
|
|
auto isReturnFromCache = std::make_shared<bool>(false);
|
|
auto isPreloadFinished = std::make_shared<bool>(false);
|
|
|
|
std::thread::id threadId = std::this_thread::get_id();
|
|
|
|
void *infoPtr = &info;
|
|
ccstd::string url = info.url;
|
|
preloadEffect(
|
|
info, [infoPtr, url, threadId, pcmData, isSucceed, isReturnFromCache, isPreloadFinished](bool succeed, PcmData data) {
|
|
// If the callback is in the same thread as caller's, it means that we found it
|
|
// in the cache
|
|
*isReturnFromCache = std::this_thread::get_id() == threadId;
|
|
*pcmData = std::move(data);
|
|
*isSucceed = succeed;
|
|
*isPreloadFinished = true;
|
|
ALOGV("FileInfo (%p), Set isSucceed flag: %d, path: %s", infoPtr, succeed, url.c_str());
|
|
},
|
|
true);
|
|
|
|
if (!*isReturnFromCache && !*isPreloadFinished) {
|
|
std::unique_lock<std::mutex> lck(_preloadWaitMutex);
|
|
// Wait for 2 seconds for the decoding in sub thread finishes.
|
|
ALOGV("FileInfo (%p), Waiting preload (%s) to finish ...", &info, audioFilePath.c_str());
|
|
_preloadWaitCond.wait_for(lck, std::chrono::seconds(2));
|
|
ALOGV("FileInfo (%p), Waitup preload (%s) ...", &info, audioFilePath.c_str());
|
|
}
|
|
|
|
if (*isSucceed) {
|
|
if (pcmData->isValid()) {
|
|
player = obtainPcmAudioPlayer(info.url, *pcmData);
|
|
ALOGV_IF(player == nullptr, "%s, %d: player is nullptr, path: %s", __FUNCTION__, __LINE__, audioFilePath.c_str());
|
|
} else {
|
|
ALOGE("pcm data is invalid, path: %s", audioFilePath.c_str());
|
|
}
|
|
} else {
|
|
ALOGE("FileInfo (%p), preloadEffect (%s) failed", &info, audioFilePath.c_str());
|
|
}
|
|
} else {
|
|
player = createUrlAudioPlayer(info);
|
|
ALOGV_IF(player == nullptr, "%s, %d: player is nullptr, path: %s", __FUNCTION__, __LINE__, audioFilePath.c_str());
|
|
}
|
|
} else {
|
|
ALOGE("File info is invalid, path: %s", audioFilePath.c_str());
|
|
}
|
|
}
|
|
|
|
ALOGV_IF(player == nullptr, "%s, %d return nullptr", __FUNCTION__, __LINE__);
|
|
return player;
|
|
}
|
|
|
|
void AudioPlayerProvider::preloadEffect(const ccstd::string &audioFilePath, const PreloadCallback &callback) {
|
|
// Pcm data decoding by OpenSLES API only supports in API level 17 and later.
|
|
if (getSystemAPILevel() < 17) {
|
|
PcmData data;
|
|
callback(true, data);
|
|
return;
|
|
}
|
|
|
|
_pcmCacheMutex.lock();
|
|
auto &&iter = _pcmCache.find(audioFilePath);
|
|
if (iter != _pcmCache.end()) {
|
|
ALOGV("preload return from cache: (%s)", audioFilePath.c_str());
|
|
_pcmCacheMutex.unlock();
|
|
callback(true, iter->second);
|
|
return;
|
|
}
|
|
_pcmCacheMutex.unlock();
|
|
|
|
auto info = getFileInfo(audioFilePath);
|
|
preloadEffect(
|
|
info, [this, callback, audioFilePath](bool succeed, const PcmData &data) {
|
|
_callerThreadUtils->performFunctionInCallerThread([this, succeed, data, callback]() {
|
|
callback(succeed, data);
|
|
});
|
|
},
|
|
false);
|
|
}
|
|
|
|
// Used internally
|
|
void AudioPlayerProvider::preloadEffect(const AudioFileInfo &info, const PreloadCallback &callback, bool isPreloadInPlay2d) {
|
|
PcmData pcmData;
|
|
|
|
if (!info.isValid()) {
|
|
callback(false, pcmData);
|
|
return;
|
|
}
|
|
|
|
if (isSmallFile(info)) {
|
|
ccstd::string audioFilePath = info.url;
|
|
|
|
// 1. First time check, if it wasn't in the cache, goto 2 step
|
|
_pcmCacheMutex.lock();
|
|
auto &&iter = _pcmCache.find(audioFilePath);
|
|
if (iter != _pcmCache.end()) {
|
|
ALOGV("1. Return pcm data from cache, url: %s", info.url.c_str());
|
|
_pcmCacheMutex.unlock();
|
|
callback(true, iter->second);
|
|
return;
|
|
}
|
|
_pcmCacheMutex.unlock();
|
|
|
|
{
|
|
// 2. Check whether the audio file is being preloaded, if it has been removed from map just now,
|
|
// goto step 3
|
|
std::lock_guard<std::mutex> lck(_preloadCallbackMutex);
|
|
|
|
auto &&preloadIter = _preloadCallbackMap.find(audioFilePath);
|
|
if (preloadIter != _preloadCallbackMap.end()) {
|
|
ALOGV("audio (%s) is being preloaded, add to callback vector!", audioFilePath.c_str());
|
|
PreloadCallbackParam param;
|
|
param.callback = callback;
|
|
param.isPreloadInPlay2d = isPreloadInPlay2d;
|
|
preloadIter->second.push_back(std::move(param));
|
|
return;
|
|
}
|
|
|
|
// 3. Check it in cache again. If it has been removed from map just now, the file is in
|
|
// the cache absolutely.
|
|
_pcmCacheMutex.lock();
|
|
auto &&iter = _pcmCache.find(audioFilePath);
|
|
if (iter != _pcmCache.end()) {
|
|
ALOGV("2. Return pcm data from cache, url: %s", info.url.c_str());
|
|
_pcmCacheMutex.unlock();
|
|
callback(true, iter->second);
|
|
return;
|
|
}
|
|
_pcmCacheMutex.unlock();
|
|
|
|
PreloadCallbackParam param;
|
|
param.callback = callback;
|
|
param.isPreloadInPlay2d = isPreloadInPlay2d;
|
|
ccstd::vector<PreloadCallbackParam> callbacks;
|
|
callbacks.push_back(std::move(param));
|
|
_preloadCallbackMap.insert(std::make_pair(audioFilePath, std::move(callbacks)));
|
|
}
|
|
|
|
_threadPool->pushTask([this, audioFilePath](int /*tid*/) {
|
|
ALOGV("AudioPlayerProvider::preloadEffect: (%s)", audioFilePath.c_str());
|
|
PcmData d;
|
|
AudioDecoder *decoder = AudioDecoderProvider::createAudioDecoder(_engineItf, audioFilePath, _bufferSizeInFrames, _deviceSampleRate, _fdGetterCallback);
|
|
bool ret = decoder != nullptr && decoder->start();
|
|
if (ret) {
|
|
d = decoder->getResult();
|
|
std::lock_guard<std::mutex> lck(_pcmCacheMutex);
|
|
_pcmCache.insert(std::make_pair(audioFilePath, d));
|
|
} else {
|
|
ALOGE("decode (%s) failed!", audioFilePath.c_str());
|
|
}
|
|
|
|
ALOGV("decode %s", (ret ? "succeed" : "failed"));
|
|
|
|
std::lock_guard<std::mutex> lck(_preloadCallbackMutex);
|
|
auto &&preloadIter = _preloadCallbackMap.find(audioFilePath);
|
|
if (preloadIter != _preloadCallbackMap.end()) {
|
|
auto &¶ms = preloadIter->second;
|
|
ALOGV("preload (%s) callback count: %d", audioFilePath.c_str(), (int)params.size());
|
|
PcmData result = decoder->getResult();
|
|
for (auto &¶m : params) {
|
|
param.callback(ret, result);
|
|
if (param.isPreloadInPlay2d) {
|
|
_preloadWaitCond.notify_one();
|
|
}
|
|
}
|
|
_preloadCallbackMap.erase(preloadIter);
|
|
}
|
|
|
|
AudioDecoderProvider::destroyAudioDecoder(&decoder);
|
|
});
|
|
} else {
|
|
ALOGV("File (%s) is too large, ignore preload!", info.url.c_str());
|
|
callback(true, pcmData);
|
|
}
|
|
}
|
|
|
|
AudioPlayerProvider::AudioFileInfo AudioPlayerProvider::getFileInfo(
|
|
const ccstd::string &audioFilePath) {
|
|
AudioFileInfo info;
|
|
long fileSize = 0; //NOLINT(google-runtime-int)
|
|
off_t start = 0;
|
|
off_t length = 0;
|
|
int assetFd = -1;
|
|
#if CC_PLATFORM == CC_PLATFORM_ANDROID
|
|
if (audioFilePath[0] != '/') {
|
|
ccstd::string relativePath;
|
|
size_t position = audioFilePath.find("@assets/");
|
|
|
|
if (0 == position) {
|
|
// "@assets/" is at the beginning of the path and we don't want it
|
|
relativePath = audioFilePath.substr(strlen("@assets/"));
|
|
} else {
|
|
relativePath = audioFilePath;
|
|
}
|
|
|
|
assetFd = _fdGetterCallback(relativePath, &start, &length);
|
|
|
|
if (assetFd <= 0) {
|
|
ALOGE("Failed to open file descriptor for '%s'", audioFilePath.c_str());
|
|
return info;
|
|
}
|
|
|
|
fileSize = length;
|
|
} else {
|
|
FILE *fp = fopen(audioFilePath.c_str(), "rb");
|
|
if (fp != nullptr) {
|
|
fseek(fp, 0, SEEK_END);
|
|
fileSize = ftell(fp);
|
|
fclose(fp);
|
|
} else {
|
|
return info;
|
|
}
|
|
}
|
|
info.url = audioFilePath;
|
|
info.assetFd = std::make_shared<AssetFd>(assetFd);
|
|
info.start = start;
|
|
info.length = fileSize;
|
|
#elif CC_PLATFORM == CC_PLATFORM_OPENHARMONY
|
|
FileUtilsOpenHarmony* fileUtils = dynamic_cast<FileUtilsOpenHarmony*>(FileUtils::getInstance());
|
|
if(!fileUtils) {
|
|
return info;
|
|
}
|
|
|
|
RawFileDescriptor descriptor;
|
|
fileUtils->getRawFileDescriptor(audioFilePath, descriptor);
|
|
info.url = audioFilePath;
|
|
info.assetFd = std::make_shared<AssetFd>(descriptor.fd);
|
|
info.start = descriptor.start;
|
|
info.length = descriptor.length;
|
|
#endif
|
|
|
|
ALOGV("(%s) file size: %ld", audioFilePath.c_str(), fileSize);
|
|
|
|
return info;
|
|
}
|
|
|
|
bool AudioPlayerProvider::isSmallFile(const AudioFileInfo &info) { //NOLINT(readability-convert-member-functions-to-static)
|
|
#if CC_PLATFORM == CC_PLATFORM_OPENHARMONY
|
|
// TODO(qgh): OpenHarmony system does not support this function yet
|
|
return true;
|
|
#endif
|
|
//REFINE: If file size is smaller than 100k, we think it's a small file. This value should be set by developers.
|
|
auto &audioFileInfo = const_cast<AudioFileInfo &>(info);
|
|
size_t judgeCount = sizeof(gAudioFileIndicator) / sizeof(gAudioFileIndicator[0]);
|
|
size_t pos = audioFileInfo.url.rfind('.');
|
|
ccstd::string extension;
|
|
if (pos != ccstd::string::npos) {
|
|
extension = audioFileInfo.url.substr(pos);
|
|
}
|
|
auto *iter = std::find_if(std::begin(gAudioFileIndicator), std::end(gAudioFileIndicator),
|
|
[&extension](const AudioFileIndicator &judge) -> bool {
|
|
return judge.extension == extension;
|
|
});
|
|
|
|
if (iter != std::end(gAudioFileIndicator)) {
|
|
// ALOGV("isSmallFile: found: %s: ", iter->extension.c_str());
|
|
return info.length < iter->smallSizeIndicator;
|
|
}
|
|
|
|
// ALOGV("isSmallFile: not found return default value");
|
|
return info.length < gAudioFileIndicator[0].smallSizeIndicator;
|
|
}
|
|
|
|
float AudioPlayerProvider::getDurationFromFile(const ccstd::string &filePath) {
|
|
std::lock_guard<std::mutex> lck(_pcmCacheMutex);
|
|
auto iter = _pcmCache.find(filePath);
|
|
if (iter != _pcmCache.end()) {
|
|
return iter->second.duration;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
void AudioPlayerProvider::clearPcmCache(const ccstd::string &audioFilePath) {
|
|
std::lock_guard<std::mutex> lck(_pcmCacheMutex);
|
|
auto iter = _pcmCache.find(audioFilePath);
|
|
if (iter != _pcmCache.end()) {
|
|
ALOGV("clear pcm cache: (%s)", audioFilePath.c_str());
|
|
_pcmCache.erase(iter);
|
|
} else {
|
|
ALOGW("Couldn't find the pcm cache: (%s)", audioFilePath.c_str());
|
|
}
|
|
}
|
|
|
|
void AudioPlayerProvider::clearAllPcmCaches() {
|
|
std::lock_guard<std::mutex> lck(_pcmCacheMutex);
|
|
_pcmCache.clear();
|
|
}
|
|
|
|
PcmAudioPlayer *AudioPlayerProvider::obtainPcmAudioPlayer(const ccstd::string &url,
|
|
const PcmData &pcmData) {
|
|
PcmAudioPlayer *pcmPlayer = nullptr;
|
|
if (pcmData.isValid()) {
|
|
pcmPlayer = ccnew PcmAudioPlayer(_mixController, _callerThreadUtils);
|
|
if (pcmPlayer != nullptr) {
|
|
pcmPlayer->prepare(url, pcmData);
|
|
}
|
|
} else {
|
|
ALOGE("obtainPcmAudioPlayer failed, pcmData isn't valid!");
|
|
}
|
|
return pcmPlayer;
|
|
}
|
|
|
|
UrlAudioPlayer *AudioPlayerProvider::createUrlAudioPlayer(
|
|
const AudioPlayerProvider::AudioFileInfo &info) {
|
|
if (info.url.empty()) {
|
|
ALOGE("createUrlAudioPlayer failed, url is empty!");
|
|
return nullptr;
|
|
}
|
|
#if CC_PLATFORM == CC_PLATFORM_ANDROID
|
|
SLuint32 locatorType = info.assetFd->getFd() > 0 ? SL_DATALOCATOR_ANDROIDFD : SL_DATALOCATOR_URI;
|
|
#elif CC_PLATFORM == CC_PLATFORM_OPENHARMONY
|
|
SLuint32 locatorType = SL_DATALOCATOR_URI;
|
|
#endif
|
|
|
|
auto *urlPlayer = new (std::nothrow) UrlAudioPlayer(_engineItf, _outputMixObject, _callerThreadUtils);
|
|
bool ret = urlPlayer->prepare(info.url, locatorType, info.assetFd, info.start, info.length);
|
|
if (!ret) {
|
|
SL_SAFE_DELETE(urlPlayer);
|
|
}
|
|
return urlPlayer;
|
|
}
|
|
|
|
void AudioPlayerProvider::pause() {
|
|
if (_mixController != nullptr) {
|
|
_mixController->pause();
|
|
}
|
|
|
|
if (_pcmAudioService != nullptr) {
|
|
_pcmAudioService->pause();
|
|
}
|
|
}
|
|
|
|
void AudioPlayerProvider::resume() {
|
|
if (_mixController != nullptr) {
|
|
_mixController->resume();
|
|
}
|
|
|
|
if (_pcmAudioService != nullptr) {
|
|
_pcmAudioService->resume();
|
|
}
|
|
}
|
|
void AudioPlayerProvider::registerPcmData(const ccstd::string &audioFilePath, PcmData &data) {
|
|
std::lock_guard<std::mutex> lck(_pcmCacheMutex);
|
|
if (_pcmCache.find(audioFilePath) != _pcmCache.end()) {
|
|
CC_LOG_DEBUG("file %s pcm data is already cached.", audioFilePath.c_str());
|
|
return;
|
|
}
|
|
_pcmCache.emplace(audioFilePath, data);
|
|
}
|
|
|
|
bool AudioPlayerProvider::getPcmHeader(const ccstd::string &audioFilePath, PCMHeader &header) {
|
|
std::lock_guard<std::mutex> lck(_pcmCacheMutex);
|
|
auto &&iter = _pcmCache.find(audioFilePath);
|
|
if (iter != _pcmCache.end()) {
|
|
ALOGV("get pcm header from cache, url: %s", audioFilePath.c_str());
|
|
// On Android, all pcm buffer is resampled to sign16.
|
|
header.bytesPerFrame = iter->second.bitsPerSample / 8;
|
|
header.channelCount = iter->second.numChannels;
|
|
header.dataFormat = AudioDataFormat::SIGNED_16;
|
|
header.sampleRate = iter->second.sampleRate;
|
|
header.totalFrames = iter->second.numFrames;
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
bool AudioPlayerProvider::getPcmData(const ccstd::string &audioFilePath, PcmData &data) {
|
|
std::lock_guard<std::mutex> lck(_pcmCacheMutex);
|
|
auto &&iter = _pcmCache.find(audioFilePath);
|
|
if (iter != _pcmCache.end()) {
|
|
ALOGV("get pcm buffer from cache, url: %s", audioFilePath.c_str());
|
|
// On Android, all pcm buffer is resampled to sign16.
|
|
data = iter->second;
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
} // namespace cc
|
|
|