2012-06-16 13:46:42 +02:00
|
|
|
/*
|
2020-01-18 19:22:19 +01:00
|
|
|
* Copyright 2003-2020 The Music Player Daemon Project
|
2012-06-16 13:46:42 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* \file
|
|
|
|
*
|
|
|
|
* This file contains functions used by the DSF and DSDIFF decoders.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
2013-07-28 12:20:50 +02:00
|
|
|
#include "DsdLib.hxx"
|
2014-01-24 00:02:24 +01:00
|
|
|
#include "../DecoderAPI.hxx"
|
2014-01-24 16:18:21 +01:00
|
|
|
#include "input/InputStream.hxx"
|
2017-02-08 08:26:58 +01:00
|
|
|
#include "tag/Id3Scan.hxx"
|
2012-06-16 13:46:42 +02:00
|
|
|
|
2014-11-22 23:18:07 +01:00
|
|
|
#ifdef ENABLE_ID3TAG
|
2012-10-27 11:42:34 +02:00
|
|
|
#include <id3tag.h>
|
|
|
|
#endif
|
|
|
|
|
2016-09-09 18:47:42 +02:00
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2012-06-16 13:46:42 +02:00
|
|
|
bool
|
2017-05-08 14:44:49 +02:00
|
|
|
DsdId::Equals(const char *s) const noexcept
|
2012-06-16 13:46:42 +02:00
|
|
|
{
|
2013-07-28 12:20:50 +02:00
|
|
|
assert(s != nullptr);
|
2013-10-28 23:12:48 +01:00
|
|
|
assert(strlen(s) == sizeof(value));
|
2012-06-16 13:46:42 +02:00
|
|
|
|
2013-10-28 23:12:48 +01:00
|
|
|
return memcmp(value, s, sizeof(value)) == 0;
|
2012-06-16 13:46:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-01-31 22:17:15 +01:00
|
|
|
* Skip the #InputStream to the specified offset.
|
2012-06-16 13:46:42 +02:00
|
|
|
*/
|
|
|
|
bool
|
2016-11-18 07:13:35 +01:00
|
|
|
dsdlib_skip_to(DecoderClient *client, InputStream &is,
|
2014-08-19 22:39:44 +02:00
|
|
|
offset_type offset)
|
2012-06-16 13:46:42 +02:00
|
|
|
{
|
2016-09-09 18:47:42 +02:00
|
|
|
if (is.IsSeekable()) {
|
|
|
|
try {
|
|
|
|
is.LockSeek(offset);
|
2017-12-19 10:56:23 +01:00
|
|
|
} catch (...) {
|
2016-09-09 18:47:42 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2012-06-16 13:46:42 +02:00
|
|
|
|
2014-08-19 22:39:44 +02:00
|
|
|
if (is.GetOffset() > offset)
|
2012-06-16 13:46:42 +02:00
|
|
|
return false;
|
|
|
|
|
2016-11-18 07:13:35 +01:00
|
|
|
return dsdlib_skip(client, is, offset - is.GetOffset());
|
2012-06-16 13:46:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-01-31 22:17:15 +01:00
|
|
|
* Skip some bytes from the #InputStream.
|
2012-06-16 13:46:42 +02:00
|
|
|
*/
|
|
|
|
bool
|
2016-11-18 07:13:35 +01:00
|
|
|
dsdlib_skip(DecoderClient *client, InputStream &is,
|
2014-08-19 22:39:44 +02:00
|
|
|
offset_type delta)
|
2012-06-16 13:46:42 +02:00
|
|
|
{
|
|
|
|
if (delta == 0)
|
|
|
|
return true;
|
|
|
|
|
2016-09-09 18:47:42 +02:00
|
|
|
if (is.IsSeekable()) {
|
|
|
|
try {
|
|
|
|
is.LockSeek(is.GetOffset() + delta);
|
2017-12-19 10:56:23 +01:00
|
|
|
} catch (...) {
|
2016-09-09 18:47:42 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2012-06-16 13:46:42 +02:00
|
|
|
|
2014-07-09 19:29:34 +02:00
|
|
|
if (delta > 1024 * 1024)
|
|
|
|
/* don't skip more than one megabyte; it would be too
|
|
|
|
expensive */
|
|
|
|
return false;
|
2012-06-16 13:46:42 +02:00
|
|
|
|
2016-11-18 07:13:35 +01:00
|
|
|
return decoder_skip(client, is, delta);
|
2012-06-16 13:46:42 +02:00
|
|
|
}
|
|
|
|
|
2014-07-04 14:15:09 +02:00
|
|
|
bool
|
2017-05-08 14:44:49 +02:00
|
|
|
dsdlib_valid_freq(uint32_t samplefreq) noexcept
|
2014-07-04 14:15:09 +02:00
|
|
|
{
|
|
|
|
switch (samplefreq) {
|
|
|
|
case 2822400: /* DSD64, 64xFs, Fs = 44.100kHz */
|
|
|
|
case 3072000: /* DSD64 with Fs = 48.000 kHz */
|
|
|
|
case 5644800:
|
|
|
|
case 6144000:
|
|
|
|
case 11289600:
|
|
|
|
case 12288000:
|
|
|
|
case 22579200:/* DSD512 */
|
|
|
|
case 24576000:
|
|
|
|
return true;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-22 23:18:07 +01:00
|
|
|
#ifdef ENABLE_ID3TAG
|
2012-10-27 11:42:34 +02:00
|
|
|
void
|
2018-07-05 19:07:05 +02:00
|
|
|
dsdlib_tag_id3(InputStream &is, TagHandler &handler,
|
|
|
|
offset_type tagoffset)
|
2012-10-27 11:42:34 +02:00
|
|
|
{
|
2014-08-19 20:12:31 +02:00
|
|
|
if (tagoffset == 0 || !is.KnownSize())
|
2012-10-27 11:42:34 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
/* Prevent broken files causing problems */
|
2013-10-23 22:08:59 +02:00
|
|
|
const auto size = is.GetSize();
|
2015-01-30 22:55:50 +01:00
|
|
|
if (tagoffset >= size)
|
2012-10-27 11:42:34 +02:00
|
|
|
return;
|
|
|
|
|
2015-01-30 23:22:49 +01:00
|
|
|
const auto count64 = size - tagoffset;
|
2018-05-07 10:53:48 +02:00
|
|
|
if (count64 < 10 || count64 > 4 * 1024 * 1024)
|
2012-10-27 11:42:34 +02:00
|
|
|
return;
|
|
|
|
|
2015-01-30 23:19:26 +01:00
|
|
|
if (!dsdlib_skip_to(nullptr, is, tagoffset))
|
|
|
|
return;
|
|
|
|
|
2015-01-30 23:22:49 +01:00
|
|
|
const id3_length_t count = count64;
|
|
|
|
|
2020-02-01 13:55:08 +01:00
|
|
|
auto *const id3_buf = new id3_byte_t[count];
|
2015-01-29 08:21:51 +01:00
|
|
|
if (id3_buf == nullptr)
|
|
|
|
return;
|
2014-12-23 07:26:55 +01:00
|
|
|
|
|
|
|
if (!decoder_read_full(nullptr, is, id3_buf, count)) {
|
2015-01-29 08:21:51 +01:00
|
|
|
delete[] id3_buf;
|
2012-10-27 11:42:34 +02:00
|
|
|
return;
|
2014-12-23 07:26:55 +01:00
|
|
|
}
|
2012-10-27 11:42:34 +02:00
|
|
|
|
2014-12-23 07:26:55 +01:00
|
|
|
struct id3_tag *id3_tag = id3_tag_parse(id3_buf, count);
|
2015-01-29 08:21:51 +01:00
|
|
|
delete[] id3_buf;
|
2015-01-29 08:23:01 +01:00
|
|
|
if (id3_tag == nullptr)
|
2012-10-27 11:42:34 +02:00
|
|
|
return;
|
|
|
|
|
2018-07-05 19:07:05 +02:00
|
|
|
scan_id3_tag(id3_tag, handler);
|
2012-10-27 11:42:34 +02:00
|
|
|
|
|
|
|
id3_tag_delete(id3_tag);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|