diff options
author | Mans Rullgard <mans@mansr.com> | 2011-05-09 12:40:37 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-05-09 17:30:12 +0100 |
commit | 6bb6fb05ba66ce42ca17c930d81d3e9cf37ab34d (patch) | |
tree | 433c4710c06a66d1284806bd7989b3b8697a2406 /libavcodec/mpegaudio.h | |
parent | ed87375dd555a1e7798dcd56c967af0171525a26 (diff) | |
download | ffmpeg-6bb6fb05ba66ce42ca17c930d81d3e9cf37ab34d.tar.gz |
mpegaudio: remove CONFIG_MPEGAUDIO_HP option
The low quality mode is off by default and never tested. The high
quality mode is also plenty fast enough.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/mpegaudio.h')
-rw-r--r-- | libavcodec/mpegaudio.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/libavcodec/mpegaudio.h b/libavcodec/mpegaudio.h index 870743ce38..f12b897e23 100644 --- a/libavcodec/mpegaudio.h +++ b/libavcodec/mpegaudio.h @@ -56,12 +56,9 @@ #define MP3_MASK 0xFFFE0CCF -#if CONFIG_MPEGAUDIO_HP +#ifndef FRAC_BITS #define FRAC_BITS 23 /* fractional bits for sb_samples and dct */ #define WFRAC_BITS 16 /* fractional bits for window */ -#else -#define FRAC_BITS 15 /* fractional bits for sb_samples and dct */ -#define WFRAC_BITS 14 /* fractional bits for window */ #endif #define FRAC_ONE (1 << FRAC_BITS) |