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.
128 lines
4.1 KiB
128 lines
4.1 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.
|
|
****************************************************************************/
|
|
|
|
#define LOG_TAG "PcmData"
|
|
|
|
#include "audio/android/PcmData.h"
|
|
#include "audio/android/OpenSLHelper.h"
|
|
|
|
namespace cc {
|
|
|
|
PcmData::PcmData() {
|
|
// ALOGV("In the constructor of PcmData (%p)", this);
|
|
reset();
|
|
}
|
|
|
|
PcmData::~PcmData() {
|
|
// ALOGV("In the destructor of PcmData (%p)", this);
|
|
}
|
|
|
|
PcmData::PcmData(const PcmData &o) {
|
|
// ALOGV("In the copy constructor of PcmData (%p)", this);
|
|
numChannels = o.numChannels;
|
|
sampleRate = o.sampleRate;
|
|
bitsPerSample = o.bitsPerSample;
|
|
containerSize = o.containerSize;
|
|
channelMask = o.channelMask;
|
|
endianness = o.endianness;
|
|
numFrames = o.numFrames;
|
|
duration = o.duration;
|
|
pcmBuffer = std::move(o.pcmBuffer);
|
|
}
|
|
|
|
PcmData::PcmData(PcmData &&o) {
|
|
// ALOGV("In the move constructor of PcmData (%p)", this);
|
|
numChannels = o.numChannels;
|
|
sampleRate = o.sampleRate;
|
|
bitsPerSample = o.bitsPerSample;
|
|
containerSize = o.containerSize;
|
|
channelMask = o.channelMask;
|
|
endianness = o.endianness;
|
|
numFrames = o.numFrames;
|
|
duration = o.duration;
|
|
pcmBuffer = std::move(o.pcmBuffer);
|
|
o.reset();
|
|
}
|
|
|
|
PcmData &PcmData::operator=(const PcmData &o) {
|
|
// ALOGV("In the copy assignment of PcmData");
|
|
numChannels = o.numChannels;
|
|
sampleRate = o.sampleRate;
|
|
bitsPerSample = o.bitsPerSample;
|
|
containerSize = o.containerSize;
|
|
channelMask = o.channelMask;
|
|
endianness = o.endianness;
|
|
numFrames = o.numFrames;
|
|
duration = o.duration;
|
|
pcmBuffer = o.pcmBuffer;
|
|
return *this;
|
|
}
|
|
|
|
PcmData &PcmData::operator=(PcmData &&o) {
|
|
// ALOGV("In the move assignment of PcmData");
|
|
numChannels = o.numChannels;
|
|
sampleRate = o.sampleRate;
|
|
bitsPerSample = o.bitsPerSample;
|
|
containerSize = o.containerSize;
|
|
channelMask = o.channelMask;
|
|
endianness = o.endianness;
|
|
numFrames = o.numFrames;
|
|
duration = o.duration;
|
|
pcmBuffer = std::move(o.pcmBuffer);
|
|
o.reset();
|
|
return *this;
|
|
}
|
|
|
|
void PcmData::reset() {
|
|
numChannels = -1;
|
|
sampleRate = -1;
|
|
bitsPerSample = -1;
|
|
containerSize = -1;
|
|
channelMask = -1;
|
|
endianness = -1;
|
|
numFrames = -1;
|
|
duration = -1.0f;
|
|
pcmBuffer = nullptr;
|
|
}
|
|
|
|
bool PcmData::isValid() const {
|
|
return numChannels > 0 && sampleRate > 0 && bitsPerSample > 0 && containerSize > 0 && numFrames > 0 && duration > 0 && pcmBuffer != nullptr;
|
|
}
|
|
|
|
ccstd::string PcmData::toString() const {
|
|
ccstd::string ret;
|
|
char buf[256] = {0};
|
|
|
|
snprintf(buf, sizeof(buf),
|
|
"numChannels: %d, sampleRate: %d, bitPerSample: %d, containerSize: %d, "
|
|
"channelMask: %d, endianness: %d, numFrames: %d, duration: %f",
|
|
numChannels, sampleRate, bitsPerSample, containerSize, channelMask, endianness,
|
|
numFrames, duration);
|
|
|
|
ret = buf;
|
|
return ret;
|
|
}
|
|
|
|
} // namespace cc
|
|
|