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.
103 lines
4.4 KiB
103 lines
4.4 KiB
/****************************************************************************
|
|
Copyright (c) 2022-2023 Xiamen Yaji Software Co., Ltd.
|
|
|
|
https://www.cocos.com/
|
|
|
|
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 "jsb_audio_manual.h"
|
|
#include <cstdint>
|
|
#include "State.h"
|
|
#include "audio/include/AudioDef.h"
|
|
#include "audio/include/AudioEngine.h"
|
|
#include "bindings/auto/jsb_audio_auto.h"
|
|
#include "cocos/bindings/manual/jsb_conversions.h"
|
|
#include "cocos/bindings/manual/jsb_global.h"
|
|
|
|
// NOLINTNEXTLINE(readability-identifier-naming)
|
|
static bool PCMHeader_to_seval(PCMHeader& header, se::Value* ret) {
|
|
CC_ASSERT_NOT_NULL(ret);
|
|
se::HandleObject obj(se::Object::createPlainObject());
|
|
obj->setProperty("totalFrames", se::Value(header.totalFrames));
|
|
obj->setProperty("sampleRate", se::Value(header.sampleRate));
|
|
obj->setProperty("bytesPerFrame", se::Value(header.bytesPerFrame));
|
|
obj->setProperty("channelCount", se::Value(header.channelCount));
|
|
obj->setProperty("audioFormat", se::Value(static_cast<int>(header.dataFormat)));
|
|
ret->setObject(obj);
|
|
|
|
return true;
|
|
}
|
|
static bool js_audio_AudioEngine_getPCMHeader(se::State& s) // NOLINT
|
|
{
|
|
const auto& args = s.args();
|
|
size_t argc = args.size();
|
|
CC_UNUSED bool ok = true;
|
|
if (argc == 1) {
|
|
ccstd::string arg0;
|
|
ok &= sevalue_to_native(args[0], &arg0, nullptr);
|
|
SE_PRECONDITION2(ok, false, "Error processing arguments");
|
|
PCMHeader header = cc::AudioEngine::getPCMHeader(arg0.c_str());
|
|
ok &= PCMHeader_to_seval(header, &s.rval());
|
|
SE_PRECONDITION2(ok, false, "Error processing arguments");
|
|
SE_HOLD_RETURN_VALUE(result, s.thisObject(), s.rval());
|
|
return true;
|
|
}
|
|
SE_REPORT_ERROR("wrong number of arguments: %d, was expecting %d", (int)argc, 1);
|
|
return false;
|
|
}
|
|
SE_BIND_FUNC(js_audio_AudioEngine_getPCMHeader)
|
|
|
|
static bool js_audio_AudioEngine_getOriginalPCMBuffer(se::State& s) // NOLINT
|
|
{
|
|
const auto& args = s.args();
|
|
size_t argc = args.size();
|
|
CC_UNUSED bool ok = true;
|
|
if (argc == 2) {
|
|
ccstd::string arg0; // url of audio
|
|
ok &= sevalue_to_native(args[0], &arg0, nullptr);
|
|
SE_PRECONDITION2(ok, false, "Error processing arguments");
|
|
|
|
uint32_t arg1{0};
|
|
ok &= sevalue_to_native(args[1], &arg1, nullptr);
|
|
SE_PRECONDITION2(ok, false, "Error processing arguments");
|
|
|
|
ccstd::vector<uint8_t> buffer = cc::AudioEngine::getOriginalPCMBuffer(arg0.c_str(), arg1);
|
|
se::HandleObject obj(se::Object::createArrayBufferObject(buffer.data(), buffer.size()));
|
|
s.rval().setObject(obj);
|
|
SE_PRECONDITION2(ok, false, "Error processing arguments");
|
|
SE_HOLD_RETURN_VALUE(result, s.thisObject(), s.rval());
|
|
return true;
|
|
}
|
|
SE_REPORT_ERROR("wrong number of arguments: %d, was expecting %d", (int)argc, 1);
|
|
return false;
|
|
}
|
|
SE_BIND_FUNC(js_audio_AudioEngine_getOriginalPCMBuffer)
|
|
|
|
bool register_all_audio_manual(se::Object* obj) // NOLINT
|
|
{
|
|
se::Value jsbVal;
|
|
obj->getProperty("jsb", &jsbVal);
|
|
se::Value audioEngineVal;
|
|
jsbVal.toObject()->getProperty("AudioEngine", &audioEngineVal);
|
|
|
|
audioEngineVal.toObject()->defineFunction("getPCMHeader", _SE(js_audio_AudioEngine_getPCMHeader));
|
|
audioEngineVal.toObject()->defineFunction("getOriginalPCMBuffer", _SE(js_audio_AudioEngine_getOriginalPCMBuffer));
|
|
return true;
|
|
}
|
|
|