mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-21 23:50:31 -04:00
Fix of the issue that only files with extension in lowercase were detected and listed in the music player's library. Additionally code cleanup.
73 lines
2.1 KiB
C++
73 lines
2.1 KiB
C++
// Copyright (c) 2017-2022, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
#include "decoderWAV.hpp"
|
|
#include <log/log.hpp>
|
|
#include <memory>
|
|
|
|
#define DR_WAV_IMPLEMENTATION
|
|
#include <src/dr_wav.h>
|
|
|
|
namespace audio
|
|
{
|
|
namespace internal
|
|
{
|
|
struct wavContext
|
|
{
|
|
drwav wav;
|
|
};
|
|
} // namespace internal
|
|
|
|
decoderWAV::decoderWAV(const std::string &filePath)
|
|
: Decoder(filePath), decoderContext(std::make_unique<internal::wavContext>())
|
|
{
|
|
auto dwav = &decoderContext->wav;
|
|
if (drwav_init_file(dwav, filePath.c_str(), nullptr) == DRWAV_FALSE) {
|
|
LOG_ERROR("Unable to init wav decoder");
|
|
return;
|
|
}
|
|
sampleRate = dwav->sampleRate;
|
|
// NOTE: Always convert to S16LE as internal format
|
|
bitsPerSample = 16;
|
|
// Number of channels
|
|
chanNumber = dwav->channels;
|
|
isInitialized = true;
|
|
}
|
|
|
|
decoderWAV::~decoderWAV()
|
|
{
|
|
if (isInitialized) {
|
|
auto dwav = &decoderContext->wav;
|
|
drwav_uninit(dwav);
|
|
}
|
|
}
|
|
|
|
std::uint32_t decoderWAV::decode(std::uint32_t samplesToRead, std::int16_t *pcmData)
|
|
{
|
|
if (!isInitialized) {
|
|
LOG_ERROR("Wav decoder not initialized");
|
|
return 0;
|
|
}
|
|
auto dwav = &decoderContext->wav;
|
|
const auto samples_read = drwav_read_pcm_frames_s16(dwav, samplesToRead / chanNumber, pcmData);
|
|
if (samples_read) {
|
|
/* Calculate frame duration in seconds */
|
|
position += static_cast<float>(samplesToRead) / static_cast<float>(sampleRate);
|
|
}
|
|
return samples_read * chanNumber;
|
|
}
|
|
|
|
void decoderWAV::setPosition(float pos)
|
|
{
|
|
if (!isInitialized) {
|
|
LOG_ERROR("Wav decoder not initialized");
|
|
return;
|
|
}
|
|
auto dwav = &decoderContext->wav;
|
|
drwav_seek_to_pcm_frame(dwav, dwav->totalPCMFrameCount * pos);
|
|
|
|
// Calculate new position
|
|
position = static_cast<float>(dwav->totalPCMFrameCount) * pos / static_cast<float>(sampleRate);
|
|
}
|
|
} // namespace audio
|