From b1b6caf8e1520eb9a95757e50c7672e6a69ebede Mon Sep 17 00:00:00 2001 From: Erik de Castro Lopo Date: Sun, 11 May 2014 03:24:27 -0700 Subject: [PATCH] replaygain_synthesis.h : Fix FLAC_SHARE__MAX_SUPPORTED_CHANNELS. Was previously hard coded as 2 when it should be FLAC__MAX_CHANNELS. Patch-from: lvqcl --- include/share/replaygain_synthesis.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/share/replaygain_synthesis.h b/include/share/replaygain_synthesis.h index bb8885c5..3f161651 100644 --- a/include/share/replaygain_synthesis.h +++ b/include/share/replaygain_synthesis.h @@ -21,9 +21,9 @@ #define FLAC__SHARE__REPLAYGAIN_SYNTHESIS_H #include /* for size_t */ -#include "FLAC/ordinals.h" +#include "FLAC/format.h" -#define FLAC_SHARE__MAX_SUPPORTED_CHANNELS 2 +#define FLAC_SHARE__MAX_SUPPORTED_CHANNELS FLAC__MAX_CHANNELS typedef enum { NOISE_SHAPING_NONE = 0,