diff options
author | Max Kellermann <max@duempel.org> | 2012-03-01 00:25:08 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2012-03-01 01:15:22 +0100 |
commit | 25164969932590894671895944f30743d344e541 (patch) | |
tree | 80cdce06ec46865c7de0d228441fba4c8178f4f7 /src/decoder | |
parent | 3b565b5f972ad65ab3e498c29eaf4f825eacece4 (diff) | |
download | mpd-25164969932590894671895944f30743d344e541.tar.gz mpd-25164969932590894671895944f30743d344e541.tar.xz mpd-25164969932590894671895944f30743d344e541.zip |
audio_format: add DSD sample format
Basic support for Direct Stream Digital. No conversion yet, and no
decoder/output plugin support.
Diffstat (limited to 'src/decoder')
-rw-r--r-- | src/decoder/flac_pcm.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/decoder/flac_pcm.c b/src/decoder/flac_pcm.c index c479ebfd4..4d35b118e 100644 --- a/src/decoder/flac_pcm.c +++ b/src/decoder/flac_pcm.c @@ -103,6 +103,8 @@ flac_convert(void *dest, case SAMPLE_FORMAT_S24: case SAMPLE_FORMAT_FLOAT: + case SAMPLE_FORMAT_DSD: + case SAMPLE_FORMAT_DSD_LSBFIRST: case SAMPLE_FORMAT_UNDEFINED: /* unreachable */ assert(false); |