mpd/src/decoder/plugins/AudiofileDecoderPlugin.cxx

285 lines
6.6 KiB
C++
Raw Normal View History

/*
2020-01-18 19:22:19 +01:00
* Copyright 2003-2020 The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
2013-07-28 12:37:55 +02:00
#include "AudiofileDecoderPlugin.hxx"
2014-01-24 00:02:24 +01:00
#include "../DecoderAPI.hxx"
2014-01-24 16:18:21 +01:00
#include "input/InputStream.hxx"
2020-01-18 20:07:09 +01:00
#include "pcm/CheckAudioFormat.hxx"
2017-02-08 08:26:58 +01:00
#include "tag/Handler.hxx"
2016-11-10 12:01:15 +01:00
#include "util/ScopeExit.hxx"
#include "util/Domain.hxx"
#include "Log.hxx"
#include <audiofile.h>
#include <af_vfs.h>
2008-11-21 20:13:36 +01:00
#include <exception>
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
static constexpr Domain audiofile_domain("audiofile");
static void
2018-07-07 13:21:27 +02:00
audiofile_error_func(long, const char *msg) noexcept
{
LogWarning(audiofile_domain, msg);
}
static bool
audiofile_init(const ConfigBlock &)
{
afSetErrorHandler(audiofile_error_func);
return true;
}
struct AudioFileInputStream {
DecoderClient *const client;
InputStream &is;
2018-07-07 13:21:27 +02:00
size_t Read(void *buffer, size_t size) noexcept {
/* libaudiofile does not like partial reads at all,
2014-07-11 21:18:37 +02:00
and will abort playback; therefore always force full
reads */
return decoder_read_full(client, is, buffer, size)
? size
: 0;
}
};
gcc_pure
static SongTime
audiofile_get_duration(AFfilehandle fh) noexcept
{
return SongTime::FromScale<uint64_t>(afGetFrameCount(fh, AF_DEFAULT_TRACK),
afGetRate(fh, AF_DEFAULT_TRACK));
}
static ssize_t
2018-07-07 13:21:27 +02:00
audiofile_file_read(AFvirtualfile *vfile, void *data, size_t length) noexcept
{
AudioFileInputStream &afis = *(AudioFileInputStream *)vfile->closure;
return afis.Read(data, length);
}
static AFfileoffset
2018-07-07 13:21:27 +02:00
audiofile_file_length(AFvirtualfile *vfile) noexcept
{
AudioFileInputStream &afis = *(AudioFileInputStream *)vfile->closure;
InputStream &is = afis.is;
return is.GetSize();
}
static AFfileoffset
2018-07-07 13:21:27 +02:00
audiofile_file_tell(AFvirtualfile *vfile) noexcept
{
AudioFileInputStream &afis = *(AudioFileInputStream *)vfile->closure;
InputStream &is = afis.is;
return is.GetOffset();
}
static void
2018-07-07 13:21:27 +02:00
audiofile_file_destroy(AFvirtualfile *vfile) noexcept
{
2013-07-28 12:37:55 +02:00
assert(vfile->closure != nullptr);
2013-07-28 12:37:55 +02:00
vfile->closure = nullptr;
}
static AFfileoffset
audiofile_file_seek(AFvirtualfile *vfile, AFfileoffset _offset,
2018-07-07 13:21:27 +02:00
int is_relative) noexcept
{
AudioFileInputStream &afis = *(AudioFileInputStream *)vfile->closure;
InputStream &is = afis.is;
offset_type offset = _offset;
if (is_relative)
offset += is.GetOffset();
try {
is.LockSeek(offset);
return is.GetOffset();
} catch (...) {
LogError(std::current_exception(), "Seek failed");
return -1;
}
}
static AFvirtualfile *
2018-07-07 13:21:27 +02:00
setup_virtual_fops(AudioFileInputStream &afis) noexcept
{
AFvirtualfile *vf = (AFvirtualfile *)malloc(sizeof(*vf));
vf->closure = &afis;
2013-07-28 12:37:55 +02:00
vf->write = nullptr;
vf->read = audiofile_file_read;
vf->length = audiofile_file_length;
vf->destroy = audiofile_file_destroy;
vf->seek = audiofile_file_seek;
vf->tell = audiofile_file_tell;
return vf;
}
2018-07-07 13:21:27 +02:00
gcc_const
2013-08-03 21:00:50 +02:00
static SampleFormat
2018-07-07 13:21:27 +02:00
audiofile_bits_to_sample_format(int bits) noexcept
{
switch (bits) {
case 8:
2013-08-03 21:00:50 +02:00
return SampleFormat::S8;
case 16:
2013-08-03 21:00:50 +02:00
return SampleFormat::S16;
case 24:
2013-08-03 21:00:50 +02:00
return SampleFormat::S24_P32;
case 32:
2013-08-03 21:00:50 +02:00
return SampleFormat::S32;
}
2013-08-03 21:00:50 +02:00
return SampleFormat::UNDEFINED;
}
2013-08-03 21:00:50 +02:00
static SampleFormat
2018-07-07 13:21:27 +02:00
audiofile_setup_sample_format(AFfilehandle af_fp) noexcept
{
int fs, bits;
afGetSampleFormat(af_fp, AF_DEFAULT_TRACK, &fs, &bits);
if (!audio_valid_sample_format(audiofile_bits_to_sample_format(bits))) {
FormatDebug(audiofile_domain,
"input file has %d bit samples, converting to 16",
bits);
bits = 16;
}
afSetVirtualSampleFormat(af_fp, AF_DEFAULT_TRACK,
2014-09-19 23:57:09 +02:00
AF_SAMPFMT_TWOSCOMP, bits);
afGetVirtualSampleFormat(af_fp, AF_DEFAULT_TRACK, &fs, &bits);
return audiofile_bits_to_sample_format(bits);
}
static AudioFormat
CheckAudioFormat(AFfilehandle fh)
{
return CheckAudioFormat(afGetRate(fh, AF_DEFAULT_TRACK),
audiofile_setup_sample_format(fh),
afGetVirtualChannels(fh, AF_DEFAULT_TRACK));
}
static void
audiofile_stream_decode(DecoderClient &client, InputStream &is)
{
if (!is.IsSeekable() || !is.KnownSize()) {
LogWarning(audiofile_domain, "not seekable");
return;
}
AudioFileInputStream afis{&client, is};
AFvirtualfile *const vf = setup_virtual_fops(afis);
auto fh = afOpenVirtualFile(vf, "r", nullptr);
if (fh == AF_NULL_FILEHANDLE)
return;
2016-11-10 12:01:15 +01:00
AtScopeExit(fh) { afCloseFile(fh); };
const auto audio_format = CheckAudioFormat(fh);
const auto total_time = audiofile_get_duration(fh);
2020-02-01 13:55:08 +01:00
const auto kbit_rate = (uint16_t)
(is.GetSize() * uint64_t(8) / total_time.ToMS());
2020-02-01 13:55:08 +01:00
const auto frame_size = (unsigned)
afGetVirtualFrameSize(fh, AF_DEFAULT_TRACK, true);
client.Ready(audio_format, true, total_time);
DecoderCommand cmd;
do {
uint8_t chunk[8192];
const int nframes =
afReadFrames(fh, AF_DEFAULT_TRACK, chunk,
sizeof(chunk) / frame_size);
if (nframes <= 0)
break;
cmd = client.SubmitData(nullptr,
chunk, nframes * frame_size,
kbit_rate);
if (cmd == DecoderCommand::SEEK) {
AFframecount frame = client.GetSeekFrame();
afSeekFrame(fh, AF_DEFAULT_TRACK, frame);
client.CommandFinished();
cmd = DecoderCommand::NONE;
}
} while (cmd == DecoderCommand::NONE);
}
static bool
audiofile_scan_stream(InputStream &is, TagHandler &handler) noexcept
{
if (!is.IsSeekable() || !is.KnownSize())
return false;
AudioFileInputStream afis{nullptr, is};
AFvirtualfile *vf = setup_virtual_fops(afis);
AFfilehandle fh = afOpenVirtualFile(vf, "r", nullptr);
if (fh == AF_NULL_FILEHANDLE)
return false;
AtScopeExit(fh) { afCloseFile(fh); };
handler.OnDuration(audiofile_get_duration(fh));
try {
handler.OnAudioFormat(CheckAudioFormat(fh));
} catch (...) {
}
return true;
}
static const char *const audiofile_suffixes[] = {
2013-07-28 12:37:55 +02:00
"wav", "au", "aiff", "aif", nullptr
};
static const char *const audiofile_mime_types[] = {
"audio/wav",
"audio/aiff",
"audio/x-wav",
"audio/x-aiff",
2013-07-28 12:37:55 +02:00
nullptr
};
constexpr DecoderPlugin audiofile_decoder_plugin =
DecoderPlugin("audiofile",
audiofile_stream_decode, audiofile_scan_stream)
.WithInit(audiofile_init)
.WithSuffixes(audiofile_suffixes)
.WithMimeTypes(audiofile_mime_types);