2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2018-10-31 17:54:59 +01:00
|
|
|
* Copyright 2003-2018 The Music Player Daemon Project
|
2009-03-13 18:43:16 +01:00
|
|
|
* http://www.musicpd.org
|
|
|
|
*
|
2004-02-24 00:41:20 +01:00
|
|
|
* 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.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* 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.
|
2004-02-24 00:41:20 +01:00
|
|
|
*/
|
|
|
|
|
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"
|
2013-07-29 07:50:08 +02:00
|
|
|
#include "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"
|
2013-09-27 22:31:24 +02:00
|
|
|
#include "util/Domain.hxx"
|
|
|
|
#include "Log.hxx"
|
2004-02-24 00:41:20 +01:00
|
|
|
|
|
|
|
#include <audiofile.h>
|
2008-12-03 20:26:08 +01:00
|
|
|
#include <af_vfs.h>
|
2008-11-21 20:13:36 +01:00
|
|
|
|
2017-12-19 10:56:23 +01:00
|
|
|
#include <exception>
|
2016-09-09 18:47:42 +02:00
|
|
|
|
2013-09-27 22:31:24 +02:00
|
|
|
#include <assert.h>
|
2014-07-08 15:46:15 +02:00
|
|
|
#include <stdio.h>
|
2019-01-15 16:52:40 +01:00
|
|
|
#include <stdlib.h>
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2013-09-27 22:31:24 +02:00
|
|
|
static constexpr Domain audiofile_domain("audiofile");
|
|
|
|
|
2014-07-10 09:32:33 +02:00
|
|
|
static void
|
2018-07-07 13:21:27 +02:00
|
|
|
audiofile_error_func(long, const char *msg) noexcept
|
2014-07-10 09:32:33 +02:00
|
|
|
{
|
|
|
|
LogWarning(audiofile_domain, msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
2015-01-21 22:13:44 +01:00
|
|
|
audiofile_init(const ConfigBlock &)
|
2014-07-10 09:32:33 +02:00
|
|
|
{
|
|
|
|
afSetErrorHandler(audiofile_error_func);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-07-09 18:46:58 +02:00
|
|
|
struct AudioFileInputStream {
|
2016-11-18 07:13:35 +01:00
|
|
|
DecoderClient *const client;
|
2014-07-09 18:46:58 +02:00
|
|
|
InputStream &is;
|
|
|
|
|
2018-07-07 13:21:27 +02:00
|
|
|
size_t Read(void *buffer, size_t size) noexcept {
|
2014-07-09 19:05:20 +02:00
|
|
|
/* libaudiofile does not like partial reads at all,
|
2014-07-11 21:18:37 +02:00
|
|
|
and will abort playback; therefore always force full
|
2014-07-09 19:05:20 +02:00
|
|
|
reads */
|
2016-11-18 07:13:35 +01:00
|
|
|
return decoder_read_full(client, is, buffer, size)
|
2014-07-09 19:05:20 +02:00
|
|
|
? size
|
|
|
|
: 0;
|
2014-07-09 18:46:58 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-07-10 08:31:41 +02:00
|
|
|
gcc_pure
|
2014-08-29 20:52:39 +02:00
|
|
|
static SongTime
|
2017-05-08 14:44:49 +02:00
|
|
|
audiofile_get_duration(AFfilehandle fh) noexcept
|
2014-07-10 08:31:41 +02:00
|
|
|
{
|
2014-08-29 20:52:39 +02:00
|
|
|
return SongTime::FromScale<uint64_t>(afGetFrameCount(fh, AF_DEFAULT_TRACK),
|
|
|
|
afGetRate(fh, AF_DEFAULT_TRACK));
|
2014-07-10 08:31:41 +02:00
|
|
|
}
|
|
|
|
|
2008-12-03 20:26:08 +01:00
|
|
|
static ssize_t
|
2018-07-07 13:21:27 +02:00
|
|
|
audiofile_file_read(AFvirtualfile *vfile, void *data, size_t length) noexcept
|
2008-12-03 20:26:08 +01:00
|
|
|
{
|
2014-07-09 18:46:58 +02:00
|
|
|
AudioFileInputStream &afis = *(AudioFileInputStream *)vfile->closure;
|
2009-11-14 23:53:04 +01:00
|
|
|
|
2014-07-09 18:46:58 +02:00
|
|
|
return afis.Read(data, length);
|
2008-12-03 20:26:08 +01:00
|
|
|
}
|
|
|
|
|
2012-02-15 20:52:48 +01:00
|
|
|
static AFfileoffset
|
2018-07-07 13:21:27 +02:00
|
|
|
audiofile_file_length(AFvirtualfile *vfile) noexcept
|
2008-12-03 20:26:08 +01:00
|
|
|
{
|
2014-07-09 18:46:58 +02:00
|
|
|
AudioFileInputStream &afis = *(AudioFileInputStream *)vfile->closure;
|
|
|
|
InputStream &is = afis.is;
|
|
|
|
|
2013-10-23 22:08:59 +02:00
|
|
|
return is.GetSize();
|
2008-12-03 20:26:08 +01:00
|
|
|
}
|
|
|
|
|
2012-02-15 20:52:48 +01:00
|
|
|
static AFfileoffset
|
2018-07-07 13:21:27 +02:00
|
|
|
audiofile_file_tell(AFvirtualfile *vfile) noexcept
|
2008-12-03 20:26:08 +01:00
|
|
|
{
|
2014-07-09 18:46:58 +02:00
|
|
|
AudioFileInputStream &afis = *(AudioFileInputStream *)vfile->closure;
|
|
|
|
InputStream &is = afis.is;
|
|
|
|
|
2013-10-23 22:08:59 +02:00
|
|
|
return is.GetOffset();
|
2008-12-03 20:26:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-07-07 13:21:27 +02:00
|
|
|
audiofile_file_destroy(AFvirtualfile *vfile) noexcept
|
2008-12-03 20:26:08 +01:00
|
|
|
{
|
2013-07-28 12:37:55 +02:00
|
|
|
assert(vfile->closure != nullptr);
|
2008-12-27 14:34:51 +01:00
|
|
|
|
2013-07-28 12:37:55 +02:00
|
|
|
vfile->closure = nullptr;
|
2008-12-03 20:26:08 +01:00
|
|
|
}
|
|
|
|
|
2012-02-15 20:52:48 +01:00
|
|
|
static AFfileoffset
|
2014-05-22 10:10:16 +02:00
|
|
|
audiofile_file_seek(AFvirtualfile *vfile, AFfileoffset _offset,
|
2018-07-07 13:21:27 +02:00
|
|
|
int is_relative) noexcept
|
2008-12-03 20:26:08 +01:00
|
|
|
{
|
2014-07-09 18:46:58 +02:00
|
|
|
AudioFileInputStream &afis = *(AudioFileInputStream *)vfile->closure;
|
|
|
|
InputStream &is = afis.is;
|
2014-05-22 10:10:16 +02:00
|
|
|
|
2014-08-19 22:29:52 +02:00
|
|
|
offset_type offset = _offset;
|
2014-05-22 10:10:16 +02:00
|
|
|
if (is_relative)
|
|
|
|
offset += is.GetOffset();
|
2013-08-10 18:02:44 +02:00
|
|
|
|
2016-09-09 18:47:42 +02:00
|
|
|
try {
|
|
|
|
is.LockSeek(offset);
|
2013-10-23 22:08:59 +02:00
|
|
|
return is.GetOffset();
|
2017-12-19 10:56:23 +01:00
|
|
|
} catch (...) {
|
|
|
|
LogError(std::current_exception(), "Seek failed");
|
2008-12-03 20:26:08 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static AFvirtualfile *
|
2018-07-07 13:21:27 +02:00
|
|
|
setup_virtual_fops(AudioFileInputStream &afis) noexcept
|
2008-12-03 20:26:08 +01:00
|
|
|
{
|
2018-07-07 13:25:01 +02:00
|
|
|
AFvirtualfile *vf = (AFvirtualfile *)malloc(sizeof(*vf));
|
2014-07-09 18:46:58 +02:00
|
|
|
vf->closure = &afis;
|
2013-07-28 12:37:55 +02:00
|
|
|
vf->write = nullptr;
|
2008-12-03 20:26:08 +01:00
|
|
|
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
|
2009-11-10 17:11:34 +01:00
|
|
|
{
|
|
|
|
switch (bits) {
|
|
|
|
case 8:
|
2013-08-03 21:00:50 +02:00
|
|
|
return SampleFormat::S8;
|
2009-11-10 17:11:34 +01:00
|
|
|
|
|
|
|
case 16:
|
2013-08-03 21:00:50 +02:00
|
|
|
return SampleFormat::S16;
|
2009-11-10 17:11:34 +01:00
|
|
|
|
|
|
|
case 24:
|
2013-08-03 21:00:50 +02:00
|
|
|
return SampleFormat::S24_P32;
|
2009-11-10 17:11:34 +01:00
|
|
|
|
|
|
|
case 32:
|
2013-08-03 21:00:50 +02:00
|
|
|
return SampleFormat::S32;
|
2009-11-10 17:11:34 +01:00
|
|
|
}
|
|
|
|
|
2013-08-03 21:00:50 +02:00
|
|
|
return SampleFormat::UNDEFINED;
|
2009-11-10 17:11:34 +01:00
|
|
|
}
|
|
|
|
|
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
|
2009-11-14 23:22:14 +01:00
|
|
|
{
|
|
|
|
int fs, bits;
|
|
|
|
|
|
|
|
afGetSampleFormat(af_fp, AF_DEFAULT_TRACK, &fs, &bits);
|
2009-11-10 17:11:34 +01:00
|
|
|
if (!audio_valid_sample_format(audiofile_bits_to_sample_format(bits))) {
|
2013-09-27 22:31:24 +02:00
|
|
|
FormatDebug(audiofile_domain,
|
|
|
|
"input file has %d bit samples, converting to 16",
|
|
|
|
bits);
|
2009-11-14 23:22:14 +01:00
|
|
|
bits = 16;
|
|
|
|
}
|
|
|
|
|
|
|
|
afSetVirtualSampleFormat(af_fp, AF_DEFAULT_TRACK,
|
2014-09-19 23:57:09 +02:00
|
|
|
AF_SAMPFMT_TWOSCOMP, bits);
|
2009-11-14 23:22:14 +01:00
|
|
|
afGetVirtualSampleFormat(af_fp, AF_DEFAULT_TRACK, &fs, &bits);
|
|
|
|
|
2009-11-10 17:11:34 +01:00
|
|
|
return audiofile_bits_to_sample_format(bits);
|
2009-11-14 23:22:14 +01:00
|
|
|
}
|
|
|
|
|
2018-07-07 13:21:09 +02:00
|
|
|
static AudioFormat
|
|
|
|
CheckAudioFormat(AFfilehandle fh)
|
|
|
|
{
|
|
|
|
return CheckAudioFormat(afGetRate(fh, AF_DEFAULT_TRACK),
|
|
|
|
audiofile_setup_sample_format(fh),
|
|
|
|
afGetVirtualChannels(fh, AF_DEFAULT_TRACK));
|
|
|
|
}
|
|
|
|
|
2008-11-11 17:13:44 +01:00
|
|
|
static void
|
2016-11-18 07:13:35 +01:00
|
|
|
audiofile_stream_decode(DecoderClient &client, InputStream &is)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2014-08-19 11:57:55 +02:00
|
|
|
if (!is.IsSeekable() || !is.KnownSize()) {
|
2013-09-27 22:31:24 +02:00
|
|
|
LogWarning(audiofile_domain, "not seekable");
|
2009-02-28 19:24:40 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-11-18 07:13:35 +01:00
|
|
|
AudioFileInputStream afis{&client, is};
|
2014-07-10 09:26:12 +02:00
|
|
|
AFvirtualfile *const vf = setup_virtual_fops(afis);
|
2004-03-24 03:23:40 +01:00
|
|
|
|
2014-07-10 09:26:12 +02:00
|
|
|
const AFfilehandle fh = afOpenVirtualFile(vf, "r", nullptr);
|
2014-07-10 09:32:33 +02:00
|
|
|
if (fh == AF_NULL_FILEHANDLE)
|
2008-11-11 17:13:44 +01:00
|
|
|
return;
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2016-11-10 12:01:15 +01:00
|
|
|
AtScopeExit(fh) { afCloseFile(fh); };
|
|
|
|
|
2018-07-07 13:21:09 +02:00
|
|
|
const auto audio_format = CheckAudioFormat(fh);
|
2014-08-29 20:52:39 +02:00
|
|
|
const auto total_time = audiofile_get_duration(fh);
|
2006-07-20 18:02:40 +02:00
|
|
|
|
2014-07-10 09:26:12 +02:00
|
|
|
const uint16_t kbit_rate = (uint16_t)
|
2014-11-10 09:00:50 +01:00
|
|
|
(is.GetSize() * uint64_t(8) / total_time.ToMS());
|
2006-07-20 18:02:40 +02:00
|
|
|
|
2014-07-10 09:26:12 +02:00
|
|
|
const unsigned frame_size = (unsigned)
|
|
|
|
afGetVirtualFrameSize(fh, AF_DEFAULT_TRACK, true);
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2016-11-18 07:59:01 +01:00
|
|
|
client.Ready(audio_format, true, total_time);
|
2008-08-26 08:27:05 +02:00
|
|
|
|
2013-09-27 12:11:37 +02:00
|
|
|
DecoderCommand cmd;
|
2008-08-26 08:27:06 +02:00
|
|
|
do {
|
2018-10-19 20:04:28 +02:00
|
|
|
uint8_t chunk[8192];
|
2014-07-10 09:26:12 +02:00
|
|
|
const int nframes =
|
|
|
|
afReadFrames(fh, AF_DEFAULT_TRACK, chunk,
|
|
|
|
sizeof(chunk) / frame_size);
|
|
|
|
if (nframes <= 0)
|
2008-08-26 08:27:06 +02:00
|
|
|
break;
|
|
|
|
|
2016-11-18 08:27:30 +01:00
|
|
|
cmd = client.SubmitData(nullptr,
|
|
|
|
chunk, nframes * frame_size,
|
|
|
|
kbit_rate);
|
2009-02-28 19:28:38 +01:00
|
|
|
|
2013-09-27 12:11:37 +02:00
|
|
|
if (cmd == DecoderCommand::SEEK) {
|
2016-11-18 08:15:07 +01:00
|
|
|
AFframecount frame = client.GetSeekFrame();
|
2014-07-10 09:26:12 +02:00
|
|
|
afSeekFrame(fh, AF_DEFAULT_TRACK, frame);
|
2009-02-28 19:28:38 +01:00
|
|
|
|
2016-11-18 08:15:07 +01:00
|
|
|
client.CommandFinished();
|
2013-09-27 12:11:37 +02:00
|
|
|
cmd = DecoderCommand::NONE;
|
2009-02-28 19:28:38 +01:00
|
|
|
}
|
2013-09-27 12:11:37 +02:00
|
|
|
} while (cmd == DecoderCommand::NONE);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
|
2018-07-07 13:16:38 +02:00
|
|
|
static bool
|
|
|
|
audiofile_scan_stream(InputStream &is, TagHandler &handler) noexcept
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2014-08-19 11:57:55 +02:00
|
|
|
if (!is.IsSeekable() || !is.KnownSize())
|
2018-07-07 13:16:38 +02:00
|
|
|
return false;
|
2014-07-10 09:23:56 +02:00
|
|
|
|
|
|
|
AudioFileInputStream afis{nullptr, is};
|
|
|
|
AFvirtualfile *vf = setup_virtual_fops(afis);
|
|
|
|
AFfilehandle fh = afOpenVirtualFile(vf, "r", nullptr);
|
|
|
|
if (fh == AF_NULL_FILEHANDLE)
|
2018-07-07 13:16:38 +02:00
|
|
|
return false;
|
2006-07-20 18:02:40 +02:00
|
|
|
|
2018-07-07 13:16:38 +02:00
|
|
|
AtScopeExit(fh) { afCloseFile(fh); };
|
2014-07-10 09:23:56 +02:00
|
|
|
|
2018-07-07 13:16:38 +02:00
|
|
|
handler.OnDuration(audiofile_get_duration(fh));
|
2004-05-31 04:31:55 +02:00
|
|
|
|
2018-07-07 13:18:06 +02:00
|
|
|
try {
|
2018-07-07 13:21:09 +02:00
|
|
|
handler.OnAudioFormat(CheckAudioFormat(fh));
|
2018-07-07 13:18:06 +02:00
|
|
|
} catch (...) {
|
|
|
|
}
|
|
|
|
|
2012-02-11 19:12:02 +01:00
|
|
|
return true;
|
2004-05-31 04:31:55 +02:00
|
|
|
}
|
|
|
|
|
2008-12-03 20:26:08 +01:00
|
|
|
static const char *const audiofile_suffixes[] = {
|
2013-07-28 12:37:55 +02:00
|
|
|
"wav", "au", "aiff", "aif", nullptr
|
2008-11-01 14:55:23 +01:00
|
|
|
};
|
2004-05-31 04:31:55 +02:00
|
|
|
|
2008-12-03 20:26:08 +01:00
|
|
|
static const char *const audiofile_mime_types[] = {
|
|
|
|
"audio/x-wav",
|
|
|
|
"audio/x-aiff",
|
2013-07-28 12:37:55 +02:00
|
|
|
nullptr
|
2008-12-03 20:26:08 +01:00
|
|
|
};
|
|
|
|
|
2013-10-21 20:31:34 +02:00
|
|
|
const struct DecoderPlugin audiofile_decoder_plugin = {
|
2013-07-28 12:37:55 +02:00
|
|
|
"audiofile",
|
2014-07-10 09:32:33 +02:00
|
|
|
audiofile_init,
|
2013-07-28 12:37:55 +02:00
|
|
|
nullptr,
|
|
|
|
audiofile_stream_decode,
|
|
|
|
nullptr,
|
|
|
|
nullptr,
|
2014-07-10 09:23:56 +02:00
|
|
|
audiofile_scan_stream,
|
2013-07-28 12:37:55 +02:00
|
|
|
nullptr,
|
|
|
|
audiofile_suffixes,
|
|
|
|
audiofile_mime_types,
|
2004-05-31 04:31:55 +02:00
|
|
|
};
|