2009-07-07 08:58:51 +02:00
|
|
|
/*
|
2014-01-13 22:30:36 +01:00
|
|
|
* Copyright (C) 2003-2014 The Music Player Daemon Project
|
2009-07-07 08:58:51 +02:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2013-07-28 12:42:06 +02:00
|
|
|
#include "SndfileDecoderPlugin.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"
|
2014-02-07 18:52:19 +01:00
|
|
|
#include "fs/Path.hxx"
|
2013-08-10 18:02:44 +02:00
|
|
|
#include "util/Error.hxx"
|
2013-09-27 22:31:24 +02:00
|
|
|
#include "util/Domain.hxx"
|
|
|
|
#include "Log.hxx"
|
2009-07-07 08:58:51 +02:00
|
|
|
|
|
|
|
#include <sndfile.h>
|
|
|
|
|
2013-09-27 22:31:24 +02:00
|
|
|
static constexpr Domain sndfile_domain("sndfile");
|
2009-07-07 08:58:51 +02:00
|
|
|
|
2014-07-11 21:53:03 +02:00
|
|
|
static bool
|
|
|
|
sndfile_init(gcc_unused const config_param ¶m)
|
|
|
|
{
|
|
|
|
LogDebug(sndfile_domain, sf_version_string());
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-07-11 20:50:44 +02:00
|
|
|
struct SndfileInputStream {
|
|
|
|
Decoder *const decoder;
|
|
|
|
InputStream &is;
|
|
|
|
|
|
|
|
size_t Read(void *buffer, size_t size) {
|
2014-07-11 21:17:43 +02:00
|
|
|
/* libsndfile chokes on partial reads; therefore
|
|
|
|
always force full reads */
|
|
|
|
return decoder_read_full(decoder, is, buffer, size)
|
|
|
|
? size
|
|
|
|
: 0;
|
2014-07-11 20:50:44 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-07-07 08:58:51 +02:00
|
|
|
static sf_count_t
|
|
|
|
sndfile_vio_get_filelen(void *user_data)
|
|
|
|
{
|
2014-07-11 20:50:44 +02:00
|
|
|
SndfileInputStream &sis = *(SndfileInputStream *)user_data;
|
|
|
|
const InputStream &is = sis.is;
|
2009-07-07 08:58:51 +02:00
|
|
|
|
2014-08-19 20:57:25 +02:00
|
|
|
if (!is.KnownSize())
|
|
|
|
return -1;
|
|
|
|
|
2013-10-23 22:08:59 +02:00
|
|
|
return is.GetSize();
|
2009-07-07 08:58:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static sf_count_t
|
2014-05-22 10:10:16 +02:00
|
|
|
sndfile_vio_seek(sf_count_t _offset, int whence, void *user_data)
|
2009-07-07 08:58:51 +02:00
|
|
|
{
|
2014-07-11 20:50:44 +02:00
|
|
|
SndfileInputStream &sis = *(SndfileInputStream *)user_data;
|
|
|
|
InputStream &is = sis.is;
|
2009-07-07 08:58:51 +02:00
|
|
|
|
2014-08-19 22:29:52 +02:00
|
|
|
offset_type offset = _offset;
|
2014-05-22 10:10:16 +02:00
|
|
|
switch (whence) {
|
|
|
|
case SEEK_SET:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SEEK_CUR:
|
|
|
|
offset += is.GetOffset();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SEEK_END:
|
|
|
|
if (!is.KnownSize())
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
offset += is.GetSize();
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2014-07-11 21:11:33 +02:00
|
|
|
Error error;
|
2014-07-11 21:33:50 +02:00
|
|
|
if (!is.LockSeek(offset, error)) {
|
2014-07-11 21:11:33 +02:00
|
|
|
LogError(error, "Seek failed");
|
2009-07-07 08:58:51 +02:00
|
|
|
return -1;
|
2014-07-11 21:11:33 +02:00
|
|
|
}
|
2009-07-07 08:58:51 +02:00
|
|
|
|
2013-10-23 22:08:59 +02:00
|
|
|
return is.GetOffset();
|
2009-07-07 08:58:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static sf_count_t
|
|
|
|
sndfile_vio_read(void *ptr, sf_count_t count, void *user_data)
|
|
|
|
{
|
2014-07-11 20:50:44 +02:00
|
|
|
SndfileInputStream &sis = *(SndfileInputStream *)user_data;
|
2014-04-09 23:58:56 +02:00
|
|
|
|
2014-07-11 21:17:43 +02:00
|
|
|
return sis.Read(ptr, count);
|
2009-07-07 08:58:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static sf_count_t
|
2013-08-04 23:48:01 +02:00
|
|
|
sndfile_vio_write(gcc_unused const void *ptr,
|
|
|
|
gcc_unused sf_count_t count,
|
|
|
|
gcc_unused void *user_data)
|
2009-07-07 08:58:51 +02:00
|
|
|
{
|
|
|
|
/* no writing! */
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static sf_count_t
|
|
|
|
sndfile_vio_tell(void *user_data)
|
|
|
|
{
|
2014-07-11 20:50:44 +02:00
|
|
|
SndfileInputStream &sis = *(SndfileInputStream *)user_data;
|
|
|
|
const InputStream &is = sis.is;
|
2009-07-07 08:58:51 +02:00
|
|
|
|
2013-10-23 22:08:59 +02:00
|
|
|
return is.GetOffset();
|
2009-07-07 08:58:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This SF_VIRTUAL_IO implementation wraps MPD's #input_stream to a
|
|
|
|
* libsndfile stream.
|
|
|
|
*/
|
|
|
|
static SF_VIRTUAL_IO vio = {
|
2013-07-28 12:42:06 +02:00
|
|
|
sndfile_vio_get_filelen,
|
|
|
|
sndfile_vio_seek,
|
|
|
|
sndfile_vio_read,
|
|
|
|
sndfile_vio_write,
|
|
|
|
sndfile_vio_tell,
|
2009-07-07 08:58:51 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Converts a frame number to a timestamp (in seconds).
|
|
|
|
*/
|
2014-08-30 00:53:14 +02:00
|
|
|
static constexpr SongTime
|
|
|
|
sndfile_duration(const SF_INFO &info)
|
2009-07-07 08:58:51 +02:00
|
|
|
{
|
2014-08-30 00:53:14 +02:00
|
|
|
return SongTime::FromScale<uint64_t>(info.frames, info.samplerate);
|
2009-07-07 08:58:51 +02:00
|
|
|
}
|
|
|
|
|
2014-09-19 21:06:44 +02:00
|
|
|
gcc_pure
|
|
|
|
static SampleFormat
|
|
|
|
sndfile_sample_format(const SF_INFO &info)
|
|
|
|
{
|
|
|
|
(void)info;
|
|
|
|
return SampleFormat::S32;
|
|
|
|
}
|
|
|
|
|
2009-07-07 08:58:51 +02:00
|
|
|
static void
|
2013-10-23 22:08:59 +02:00
|
|
|
sndfile_stream_decode(Decoder &decoder, InputStream &is)
|
2009-07-07 08:58:51 +02:00
|
|
|
{
|
|
|
|
SF_INFO info;
|
|
|
|
|
|
|
|
info.format = 0;
|
|
|
|
|
2014-07-11 20:50:44 +02:00
|
|
|
SndfileInputStream sis{&decoder, is};
|
2014-07-11 21:51:07 +02:00
|
|
|
SNDFILE *const sf = sf_open_virtual(&vio, SFM_READ, &info, &sis);
|
2013-07-28 12:42:06 +02:00
|
|
|
if (sf == nullptr) {
|
2013-09-27 22:31:24 +02:00
|
|
|
LogWarning(sndfile_domain, "sf_open_virtual() failed");
|
2009-07-07 08:58:51 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* for now, always read 32 bit samples. Later, we could lower
|
|
|
|
MPD's CPU usage by reading 16 bit samples with
|
|
|
|
sf_readf_short() on low-quality source files. */
|
2013-08-10 18:02:44 +02:00
|
|
|
Error error;
|
2013-08-03 21:00:50 +02:00
|
|
|
AudioFormat audio_format;
|
|
|
|
if (!audio_format_init_checked(audio_format, info.samplerate,
|
2014-09-19 21:06:44 +02:00
|
|
|
sndfile_sample_format(info),
|
2013-08-10 18:02:44 +02:00
|
|
|
info.channels, error)) {
|
2013-09-27 22:31:24 +02:00
|
|
|
LogError(error);
|
2009-07-07 08:58:51 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-08-03 21:00:50 +02:00
|
|
|
decoder_initialized(decoder, audio_format, info.seekable,
|
2014-08-30 00:53:14 +02:00
|
|
|
sndfile_duration(info));
|
2009-07-07 08:58:51 +02:00
|
|
|
|
2014-07-11 21:51:07 +02:00
|
|
|
int buffer[4096];
|
|
|
|
|
|
|
|
const size_t frame_size = audio_format.GetFrameSize();
|
|
|
|
const sf_count_t read_frames = sizeof(buffer) / frame_size;
|
2009-07-07 08:58:51 +02:00
|
|
|
|
2013-09-27 12:11:37 +02:00
|
|
|
DecoderCommand cmd;
|
2009-07-07 08:58:51 +02:00
|
|
|
do {
|
2014-07-11 21:51:07 +02:00
|
|
|
sf_count_t num_frames = sf_readf_int(sf, buffer, read_frames);
|
2009-07-07 08:58:51 +02:00
|
|
|
if (num_frames <= 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
cmd = decoder_data(decoder, is,
|
|
|
|
buffer, num_frames * frame_size,
|
2010-01-03 22:44:23 +01:00
|
|
|
0);
|
2013-09-27 12:11:37 +02:00
|
|
|
if (cmd == DecoderCommand::SEEK) {
|
2014-08-26 11:36:20 +02:00
|
|
|
sf_count_t c = decoder_seek_where_frame(decoder);
|
2009-07-07 08:58:51 +02:00
|
|
|
c = sf_seek(sf, c, SEEK_SET);
|
|
|
|
if (c < 0)
|
|
|
|
decoder_seek_error(decoder);
|
|
|
|
else
|
|
|
|
decoder_command_finished(decoder);
|
2013-09-27 12:11:37 +02:00
|
|
|
cmd = DecoderCommand::NONE;
|
2009-07-07 08:58:51 +02:00
|
|
|
}
|
2013-09-27 12:11:37 +02:00
|
|
|
} while (cmd == DecoderCommand::NONE);
|
2009-07-07 08:58:51 +02:00
|
|
|
|
|
|
|
sf_close(sf);
|
|
|
|
}
|
|
|
|
|
2014-07-11 21:56:02 +02:00
|
|
|
static void
|
|
|
|
sndfile_handle_tag(SNDFILE *sf, int str, TagType tag,
|
|
|
|
const struct tag_handler *handler, void *handler_ctx)
|
|
|
|
{
|
|
|
|
const char *value = sf_get_string(sf, str);
|
|
|
|
if (value != nullptr)
|
|
|
|
tag_handler_invoke_tag(handler, handler_ctx, tag, value);
|
|
|
|
}
|
|
|
|
|
2014-07-11 21:57:41 +02:00
|
|
|
static constexpr struct {
|
|
|
|
int8_t str;
|
|
|
|
TagType tag;
|
|
|
|
} sndfile_tags[] = {
|
|
|
|
{ SF_STR_TITLE, TAG_TITLE },
|
|
|
|
{ SF_STR_ARTIST, TAG_ARTIST },
|
2014-07-11 22:01:11 +02:00
|
|
|
{ SF_STR_COMMENT, TAG_COMMENT },
|
2014-07-11 21:57:41 +02:00
|
|
|
{ SF_STR_DATE, TAG_DATE },
|
2014-07-11 22:01:11 +02:00
|
|
|
{ SF_STR_ALBUM, TAG_ALBUM },
|
|
|
|
{ SF_STR_TRACKNUMBER, TAG_TRACK },
|
|
|
|
{ SF_STR_GENRE, TAG_GENRE },
|
2014-07-11 21:57:41 +02:00
|
|
|
};
|
|
|
|
|
2012-02-11 19:12:02 +01:00
|
|
|
static bool
|
2014-07-11 22:09:35 +02:00
|
|
|
sndfile_scan_stream(InputStream &is,
|
|
|
|
const struct tag_handler *handler, void *handler_ctx)
|
2009-07-07 08:58:51 +02:00
|
|
|
{
|
|
|
|
SF_INFO info;
|
|
|
|
|
|
|
|
info.format = 0;
|
|
|
|
|
2014-07-11 22:09:35 +02:00
|
|
|
SndfileInputStream sis{nullptr, is};
|
|
|
|
SNDFILE *const sf = sf_open_virtual(&vio, SFM_READ, &info, &sis);
|
2013-07-28 12:42:06 +02:00
|
|
|
if (sf == nullptr)
|
2012-02-11 19:12:02 +01:00
|
|
|
return false;
|
2009-07-07 08:58:51 +02:00
|
|
|
|
|
|
|
if (!audio_valid_sample_rate(info.samplerate)) {
|
|
|
|
sf_close(sf);
|
2013-09-27 22:31:24 +02:00
|
|
|
FormatWarning(sndfile_domain,
|
2014-07-11 22:09:35 +02:00
|
|
|
"Invalid sample rate in %s", is.GetURI());
|
2012-02-11 19:12:02 +01:00
|
|
|
return false;
|
2009-07-07 08:58:51 +02:00
|
|
|
}
|
|
|
|
|
2014-08-30 00:53:14 +02:00
|
|
|
tag_handler_invoke_duration(handler, handler_ctx,
|
|
|
|
sndfile_duration(info));
|
2009-07-07 08:58:51 +02:00
|
|
|
|
2014-07-11 21:57:41 +02:00
|
|
|
for (auto i : sndfile_tags)
|
|
|
|
sndfile_handle_tag(sf, i.str, i.tag, handler, handler_ctx);
|
2009-07-07 08:58:51 +02:00
|
|
|
|
|
|
|
sf_close(sf);
|
|
|
|
|
2012-02-11 19:12:02 +01:00
|
|
|
return true;
|
2009-07-07 08:58:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static const char *const sndfile_suffixes[] = {
|
|
|
|
"wav", "aiff", "aif", /* Microsoft / SGI / Apple */
|
|
|
|
"au", "snd", /* Sun / DEC / NeXT */
|
|
|
|
"paf", /* Paris Audio File */
|
|
|
|
"iff", "svx", /* Commodore Amiga IFF / SVX */
|
|
|
|
"sf", /* IRCAM */
|
|
|
|
"voc", /* Creative */
|
|
|
|
"w64", /* Soundforge */
|
|
|
|
"pvf", /* Portable Voice Format */
|
|
|
|
"xi", /* Fasttracker */
|
|
|
|
"htk", /* HMM Tool Kit */
|
|
|
|
"caf", /* Apple */
|
|
|
|
"sd2", /* Sound Designer II */
|
|
|
|
|
|
|
|
/* libsndfile also supports FLAC and Ogg Vorbis, but only by
|
|
|
|
linking with libFLAC and libvorbis - we can do better, we
|
|
|
|
have native plugins for these libraries */
|
|
|
|
|
2013-07-28 12:42:06 +02:00
|
|
|
nullptr
|
2009-07-07 08:58:51 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
static const char *const sndfile_mime_types[] = {
|
|
|
|
"audio/x-wav",
|
|
|
|
"audio/x-aiff",
|
|
|
|
|
|
|
|
/* what are the MIME types of the other supported formats? */
|
|
|
|
|
2013-07-28 12:42:06 +02:00
|
|
|
nullptr
|
2009-07-07 08:58:51 +02:00
|
|
|
};
|
|
|
|
|
2013-10-21 20:31:34 +02:00
|
|
|
const struct DecoderPlugin sndfile_decoder_plugin = {
|
2013-07-28 12:42:06 +02:00
|
|
|
"sndfile",
|
2014-07-11 21:53:03 +02:00
|
|
|
sndfile_init,
|
2013-07-28 12:42:06 +02:00
|
|
|
nullptr,
|
|
|
|
sndfile_stream_decode,
|
|
|
|
nullptr,
|
|
|
|
nullptr,
|
2014-07-11 22:09:35 +02:00
|
|
|
sndfile_scan_stream,
|
2013-07-28 12:42:06 +02:00
|
|
|
nullptr,
|
|
|
|
sndfile_suffixes,
|
|
|
|
sndfile_mime_types,
|
2009-07-07 08:58:51 +02:00
|
|
|
};
|