From b070fe6023724fee0534628e16f8efa8e7b6792d Mon Sep 17 00:00:00 2001 From: Josh Coalson Date: Fri, 4 Oct 2002 05:24:30 +0000 Subject: [PATCH] add FLAC__MAX_QLP_COEFF_PRECISION --- include/FLAC/format.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/FLAC/format.h b/include/FLAC/format.h index 8d76ec07..d8da7926 100644 --- a/include/FLAC/format.h +++ b/include/FLAC/format.h @@ -114,6 +114,11 @@ extern "C" { */ #define FLAC__MIN_QLP_COEFF_PRECISION (5u) +/** The maximum quantized linear predictor coefficient precision + * permitted by the format. + */ +#define FLAC__MAX_QLP_COEFF_PRECISION (15u) + /** The maximum order of the fixed predictors permitted by the format. */ #define FLAC__MAX_FIXED_ORDER (4u)