strawberry-audio-player-win.../3rdparty/taglib/dsdiff/dsdiffproperties.cpp

105 lines
3.5 KiB
C++
Raw Normal View History

2018-09-02 01:39:02 +02:00
/***************************************************************************
copyright : (C) 2016 by Damien Plisson, Audirvana
email : damien78@audirvana.com
***************************************************************************/
/***************************************************************************
* This library is free software; you can redistribute it and/or modify *
* it under the terms of the GNU Lesser General Public License version *
* 2.1 as published by the Free Software Foundation. *
* *
* This library is distributed in the hope that it will be useful, but *
* WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
* Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public *
* License along with this library; if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA *
* 02110-1301 USA *
* *
* Alternatively, this file is available under the Mozilla Public *
* License Version 1.1. You may obtain a copy of the License at *
* http://www.mozilla.org/MPL/ *
***************************************************************************/
#include <tstring.h>
#include <tdebug.h>
#include "dsdiffproperties.h"
using namespace Strawberry_TagLib::TagLib;
2018-09-02 01:39:02 +02:00
2020-06-13 19:02:42 +02:00
class DSDIFF::Properties::PropertiesPrivate {
public:
PropertiesPrivate() : length(0),
bitrate(0),
sampleRate(0),
channels(0),
sampleWidth(0),
sampleCount(0) {
2018-09-02 01:39:02 +02:00
}
int length;
int bitrate;
int sampleRate;
int channels;
int sampleWidth;
unsigned long long sampleCount;
};
////////////////////////////////////////////////////////////////////////////////
// public members
////////////////////////////////////////////////////////////////////////////////
DSDIFF::Properties::Properties(const unsigned int sampleRate,
2020-06-13 19:02:42 +02:00
const unsigned short channels,
const unsigned long long samplesCount,
const int bitrate,
ReadStyle style) : AudioProperties(style) {
2018-09-02 01:39:02 +02:00
d = new PropertiesPrivate;
2020-06-13 19:02:42 +02:00
d->channels = channels;
2018-09-02 01:39:02 +02:00
d->sampleCount = samplesCount;
d->sampleWidth = 1;
2020-06-13 19:02:42 +02:00
d->sampleRate = sampleRate;
d->bitrate = bitrate;
d->length = d->sampleRate > 0 ? static_cast<int>((d->sampleCount * 1000.0) / d->sampleRate + 0.5) : 0;
2018-09-02 01:39:02 +02:00
}
2020-06-13 19:02:42 +02:00
DSDIFF::Properties::~Properties() {
2018-09-02 01:39:02 +02:00
delete d;
}
2020-06-13 19:02:42 +02:00
int DSDIFF::Properties::length() const {
2018-09-02 01:39:02 +02:00
return lengthInSeconds();
}
2020-06-13 19:02:42 +02:00
int DSDIFF::Properties::lengthInSeconds() const {
2018-09-02 01:39:02 +02:00
return d->length / 1000;
}
2020-06-13 19:02:42 +02:00
int DSDIFF::Properties::lengthInMilliseconds() const {
2018-09-02 01:39:02 +02:00
return d->length;
}
2020-06-13 19:02:42 +02:00
int DSDIFF::Properties::bitrate() const {
2018-09-02 01:39:02 +02:00
return d->bitrate;
}
2020-06-13 19:02:42 +02:00
int DSDIFF::Properties::sampleRate() const {
2018-09-02 01:39:02 +02:00
return d->sampleRate;
}
2020-06-13 19:02:42 +02:00
int DSDIFF::Properties::channels() const {
2018-09-02 01:39:02 +02:00
return d->channels;
}
2020-06-13 19:02:42 +02:00
int DSDIFF::Properties::bitsPerSample() const {
2018-09-02 01:39:02 +02:00
return d->sampleWidth;
}
2020-06-13 19:02:42 +02:00
long long DSDIFF::Properties::sampleCount() const {
2018-09-02 01:39:02 +02:00
return d->sampleCount;
}