mirror of https://github.com/axmolengine/axmol.git
140 lines
4.1 KiB
C++
140 lines
4.1 KiB
C++
/****************************************************************************
|
|
Copyright (c) 2016 Chukong Technologies Inc.
|
|
Copyright (c) 2017-2018 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/OpenSLHelper.h"
|
|
#include "audio/android/PcmData.h"
|
|
|
|
namespace cocos2d { namespace experimental {
|
|
|
|
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;
|
|
}
|
|
|
|
std::string PcmData::toString() const
|
|
{
|
|
std::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 cocos2d { namespace experimental {
|