2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2016-02-26 17:54:05 +01:00
|
|
|
* Copyright 2003-2016 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
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
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"
|
2013-09-05 18:22:02 +02:00
|
|
|
#include "tag/TagHandler.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
|
|
|
|
2016-09-09 18:47:42 +02:00
|
|
|
#include <stdexcept>
|
|
|
|
|
2013-09-27 22:31:24 +02:00
|
|
|
#include <assert.h>
|
2014-07-08 15:46:15 +02:00
|
|
|
#include <stdio.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
|
|
|
|
audiofile_error_func(long, const char *msg)
|
|
|
|
{
|
|
|
|
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;
|
|
|
|
|
|
|
|
size_t Read(void *buffer, size_t size) {
|
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
|
2014-07-10 08:31:41 +02:00
|
|
|
audiofile_get_duration(AFfilehandle fh)
|
|
|
|
{
|
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
|
2009-11-14 23:53:04 +01:00
|
|
|
audiofile_file_read(AFvirtualfile *vfile, void *data, size_t length)
|
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
|
2008-12-03 20:26:08 +01:00
|
|
|
audiofile_file_length(AFvirtualfile *vfile)
|
|
|
|
{
|
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
|
2008-12-03 20:26:08 +01:00
|
|
|
audiofile_file_tell(AFvirtualfile *vfile)
|
|
|
|
{
|
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
|
|
|
|
audiofile_file_destroy(AFvirtualfile *vfile)
|
|
|
|
{
|
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,
|
|
|
|
int is_relative)
|
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();
|
2016-09-09 18:47:42 +02:00
|
|
|
} catch (const std::runtime_error &e) {
|
|
|
|
LogError(e, "Seek failed");
|
2008-12-03 20:26:08 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static AFvirtualfile *
|
2014-07-09 18:46:58 +02:00
|
|
|
setup_virtual_fops(AudioFileInputStream &afis)
|
2008-12-03 20:26:08 +01:00
|
|
|
{
|
2013-07-28 12:37:55 +02:00
|
|
|
AFvirtualfile *vf = new AFvirtualfile();
|
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;
|
|
|
|
}
|
|
|
|
|
2013-08-03 21:00:50 +02:00
|
|
|
static SampleFormat
|
2009-11-10 17:11:34 +01:00
|
|
|
audiofile_bits_to_sample_format(int bits)
|
|
|
|
{
|
|
|
|
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
|
2009-11-14 23:22:14 +01:00
|
|
|
audiofile_setup_sample_format(AFfilehandle af_fp)
|
|
|
|
{
|
|
|
|
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
|
|
|
}
|
|
|
|
|
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); };
|
|
|
|
|
2016-11-10 11:45:17 +01:00
|
|
|
const auto audio_format =
|
|
|
|
CheckAudioFormat(afGetRate(fh, AF_DEFAULT_TRACK),
|
|
|
|
audiofile_setup_sample_format(fh),
|
|
|
|
afGetVirtualChannels(fh, AF_DEFAULT_TRACK));
|
2008-11-21 20:27:30 +01:00
|
|
|
|
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:13:35 +01:00
|
|
|
decoder_initialized(client, 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 {
|
2014-07-10 09:26:12 +02:00
|
|
|
/* pick 1020 since its divisible for 8,16,24, and
|
|
|
|
32-bit audio */
|
|
|
|
char chunk[1020];
|
|
|
|
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 07:13:35 +01:00
|
|
|
cmd = decoder_data(client, nullptr,
|
2014-07-10 09:26:12 +02:00
|
|
|
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 07:13:35 +01:00
|
|
|
AFframecount frame = decoder_seek_where_frame(client);
|
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 07:13:35 +01:00
|
|
|
decoder_command_finished(client);
|
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
|
|
|
}
|
|
|
|
|
2014-07-10 09:23:56 +02:00
|
|
|
gcc_pure
|
2014-08-29 22:43:36 +02:00
|
|
|
static SignedSongTime
|
2014-07-10 09:23:56 +02:00
|
|
|
audiofile_get_duration(InputStream &is)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2014-08-19 11:57:55 +02:00
|
|
|
if (!is.IsSeekable() || !is.KnownSize())
|
2014-08-29 22:43:36 +02:00
|
|
|
return SignedSongTime::Negative();
|
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)
|
2014-08-29 22:43:36 +02:00
|
|
|
return SignedSongTime::Negative();
|
2006-07-20 18:02:40 +02:00
|
|
|
|
2014-08-29 22:43:36 +02:00
|
|
|
const auto duration = audiofile_get_duration(fh);
|
2014-07-10 09:23:56 +02:00
|
|
|
afCloseFile(fh);
|
|
|
|
return duration;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
audiofile_scan_stream(InputStream &is,
|
2016-02-23 10:10:13 +01:00
|
|
|
const TagHandler &handler, void *handler_ctx)
|
2014-07-10 09:23:56 +02:00
|
|
|
{
|
2014-08-29 22:43:36 +02:00
|
|
|
const auto duration = audiofile_get_duration(is);
|
|
|
|
if (duration.IsNegative())
|
2012-02-11 19:12:02 +01:00
|
|
|
return false;
|
2004-05-31 04:31:55 +02:00
|
|
|
|
2014-08-29 22:43:36 +02:00
|
|
|
tag_handler_invoke_duration(handler, handler_ctx, SongTime(duration));
|
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
|
|
|
};
|