aboutsummaryrefslogtreecommitdiffstats
path: root/src/pcm_convert.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2012-03-01 00:57:33 +0100
committerMax Kellermann <max@duempel.org>2012-03-01 02:00:12 +0100
commitc9c57af5f7995946007a029c1d21f7bc6834f1d0 (patch)
treee9d81bcb9a41142d3703db447f8343e02c8d7adc /src/pcm_convert.h
parent25164969932590894671895944f30743d344e541 (diff)
downloadmpd-c9c57af5f7995946007a029c1d21f7bc6834f1d0.tar.gz
mpd-c9c57af5f7995946007a029c1d21f7bc6834f1d0.tar.xz
mpd-c9c57af5f7995946007a029c1d21f7bc6834f1d0.zip
pcm_convert: support the DSD format
Diffstat (limited to 'src/pcm_convert.h')
-rw-r--r--src/pcm_convert.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/pcm_convert.h b/src/pcm_convert.h
index 41a9f9380..0a0f85681 100644
--- a/src/pcm_convert.h
+++ b/src/pcm_convert.h
@@ -20,6 +20,7 @@
#ifndef PCM_CONVERT_H
#define PCM_CONVERT_H
+#include "pcm_dsd.h"
#include "pcm_resample.h"
#include "pcm_dither.h"
#include "pcm_buffer.h"
@@ -32,6 +33,8 @@ struct audio_format;
* conversions.
*/
struct pcm_convert_state {
+ struct pcm_dsd dsd;
+
struct pcm_resample_state resample;
struct pcm_dither dither;