2012-06-16 13:46:42 +02:00
|
|
|
/*
|
2014-01-13 22:30:36 +01:00
|
|
|
* Copyright (C) 2003-2014 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.
|
|
|
|
*/
|
|
|
|
|
2013-07-28 12:20:50 +02:00
|
|
|
#ifndef MPD_DECODER_DSDLIB_HXX
|
|
|
|
#define MPD_DECODER_DSDLIB_HXX
|
|
|
|
|
2013-10-28 23:29:23 +01:00
|
|
|
#include "system/ByteOrder.hxx"
|
2014-08-19 22:39:44 +02:00
|
|
|
#include "input/Offset.hxx"
|
2013-10-28 23:12:48 +01:00
|
|
|
#include "Compiler.h"
|
|
|
|
|
2013-10-28 23:26:37 +01:00
|
|
|
#include <stddef.h>
|
2013-10-17 09:43:55 +02:00
|
|
|
#include <stdint.h>
|
2012-06-16 13:46:42 +02:00
|
|
|
|
2013-10-21 21:12:37 +02:00
|
|
|
struct Decoder;
|
2014-05-11 15:34:48 +02:00
|
|
|
class InputStream;
|
2013-10-21 21:12:37 +02:00
|
|
|
|
2013-10-28 23:12:48 +01:00
|
|
|
struct DsdId {
|
2012-06-16 13:46:42 +02:00
|
|
|
char value[4];
|
|
|
|
|
2013-10-28 23:12:48 +01:00
|
|
|
gcc_pure
|
|
|
|
bool Equals(const char *s) const;
|
|
|
|
};
|
2012-06-16 13:46:42 +02:00
|
|
|
|
2013-10-28 23:29:23 +01:00
|
|
|
class DsdUint64 {
|
|
|
|
uint32_t lo;
|
|
|
|
uint32_t hi;
|
|
|
|
|
|
|
|
public:
|
|
|
|
constexpr uint64_t Read() const {
|
|
|
|
return (uint64_t(FromLE32(hi)) << 32) |
|
|
|
|
uint64_t(FromLE32(lo));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-11-09 17:02:49 +01:00
|
|
|
class DffDsdUint64 {
|
|
|
|
uint32_t hi;
|
|
|
|
uint32_t lo;
|
|
|
|
|
|
|
|
public:
|
|
|
|
constexpr uint64_t Read() const {
|
|
|
|
return (uint64_t(FromBE32(hi)) << 32) |
|
|
|
|
uint64_t(FromBE32(lo));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-06-16 13:46:42 +02:00
|
|
|
bool
|
2013-10-23 22:08:59 +02:00
|
|
|
dsdlib_skip_to(Decoder *decoder, InputStream &is,
|
2014-08-19 22:39:44 +02:00
|
|
|
offset_type offset);
|
2012-06-16 13:46:42 +02:00
|
|
|
|
|
|
|
bool
|
2013-10-23 22:08:59 +02:00
|
|
|
dsdlib_skip(Decoder *decoder, InputStream &is,
|
2014-08-19 22:39:44 +02:00
|
|
|
offset_type delta);
|
2012-06-16 13:46:42 +02:00
|
|
|
|
2014-07-04 14:15:09 +02:00
|
|
|
/**
|
|
|
|
* Check if the sample frequency is a valid DSD frequency.
|
|
|
|
**/
|
|
|
|
gcc_const
|
|
|
|
bool
|
|
|
|
dsdlib_valid_freq(uint32_t samplefreq);
|
|
|
|
|
2013-10-28 23:26:16 +01:00
|
|
|
/**
|
|
|
|
* Add tags from ID3 tag. All tags commonly found in the ID3 tags of
|
|
|
|
* DSF and DSDIFF files are imported
|
|
|
|
*/
|
2012-10-27 11:42:34 +02:00
|
|
|
void
|
2013-10-23 22:08:59 +02:00
|
|
|
dsdlib_tag_id3(InputStream &is,
|
2012-10-27 11:42:34 +02:00
|
|
|
const struct tag_handler *handler,
|
2013-10-17 09:43:55 +02:00
|
|
|
void *handler_ctx, int64_t tagoffset);
|
2012-10-27 11:42:34 +02:00
|
|
|
|
2012-06-16 13:46:42 +02:00
|
|
|
#endif
|