From 5e3844ac13d61cbbd13426300ec64316780080f1 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 26 Feb 2016 17:41:06 +0100 Subject: [PATCH] pcm/dsd: use MAX_CHANNELS --- src/pcm/PcmDsd.hxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pcm/PcmDsd.hxx b/src/pcm/PcmDsd.hxx index 10b8a5fda..fb02f48a1 100644 --- a/src/pcm/PcmDsd.hxx +++ b/src/pcm/PcmDsd.hxx @@ -22,6 +22,7 @@ #include "check.h" #include "PcmBuffer.hxx" +#include "AudioFormat.hxx" #include @@ -35,7 +36,7 @@ template struct ConstBuffer; class PcmDsd { PcmBuffer buffer; - std::array dsd2pcm; + std::array dsd2pcm; public: PcmDsd();