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 <lvqcl.mail@gmail.com>
This commit is contained in:
Erik de Castro Lopo
2014-05-11 03:24:27 -07:00
parent 7963120a0d
commit b1b6caf8e1

View File

@@ -21,9 +21,9 @@
#define FLAC__SHARE__REPLAYGAIN_SYNTHESIS_H #define FLAC__SHARE__REPLAYGAIN_SYNTHESIS_H
#include <stdlib.h> /* for size_t */ #include <stdlib.h> /* 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 { typedef enum {
NOISE_SHAPING_NONE = 0, NOISE_SHAPING_NONE = 0,