Originally committed as revision 16594 to svn://svn.ffmpeg.org/ffmpeg/trunktags/v0.5
| @@ -29,10 +29,6 @@ | |||||
| #include "avcodec.h" | #include "avcodec.h" | ||||
| #include "bitstream.h" | #include "bitstream.h" | ||||
| #include "dsputil.h" | #include "dsputil.h" | ||||
| #if CONFIG_MPEGAUDIO_HP | |||||
| #define USE_HIGHPRECISION | |||||
| #endif | |||||
| #include "mpegaudio.h" | #include "mpegaudio.h" | ||||
| #include "mpc.h" | #include "mpc.h" | ||||
| @@ -29,10 +29,6 @@ | |||||
| #include "avcodec.h" | #include "avcodec.h" | ||||
| #include "bitstream.h" | #include "bitstream.h" | ||||
| #include "dsputil.h" | #include "dsputil.h" | ||||
| #if CONFIG_MPEGAUDIO_HP | |||||
| #define USE_HIGHPRECISION | |||||
| #endif | |||||
| #include "mpegaudio.h" | #include "mpegaudio.h" | ||||
| #include "mpc.h" | #include "mpc.h" | ||||
| @@ -29,10 +29,6 @@ | |||||
| #include "avcodec.h" | #include "avcodec.h" | ||||
| #include "bitstream.h" | #include "bitstream.h" | ||||
| #include "dsputil.h" | #include "dsputil.h" | ||||
| #if CONFIG_MPEGAUDIO_HP | |||||
| #define USE_HIGHPRECISION | |||||
| #endif | |||||
| #include "mpegaudio.h" | #include "mpegaudio.h" | ||||
| #include "mpc.h" | #include "mpc.h" | ||||
| @@ -51,10 +51,7 @@ | |||||
| #define MP3_MASK 0xFFFE0CCF | #define MP3_MASK 0xFFFE0CCF | ||||
| /* define USE_HIGHPRECISION to have a bit exact (but slower) mpeg | |||||
| audio decoder */ | |||||
| #ifdef USE_HIGHPRECISION | |||||
| #ifdef CONFIG_MPEGAUDIO_HP | |||||
| #define FRAC_BITS 23 /* fractional bits for sb_samples and dct */ | #define FRAC_BITS 23 /* fractional bits for sb_samples and dct */ | ||||
| #define WFRAC_BITS 16 /* fractional bits for window */ | #define WFRAC_BITS 16 /* fractional bits for window */ | ||||
| #else | #else | ||||
| @@ -66,7 +63,7 @@ | |||||
| #define FIX(a) ((int)((a) * FRAC_ONE)) | #define FIX(a) ((int)((a) * FRAC_ONE)) | ||||
| #if defined(USE_HIGHPRECISION) && defined(CONFIG_AUDIO_NONSHORT) | |||||
| #if defined(CONFIG_MPEGAUDIO_HP) && defined(CONFIG_AUDIO_NONSHORT) | |||||
| typedef int32_t OUT_INT; | typedef int32_t OUT_INT; | ||||
| #define OUT_MAX INT32_MAX | #define OUT_MAX INT32_MAX | ||||
| #define OUT_MIN INT32_MIN | #define OUT_MIN INT32_MIN | ||||
| @@ -34,12 +34,6 @@ | |||||
| * - test lsf / mpeg25 extensively. | * - test lsf / mpeg25 extensively. | ||||
| */ | */ | ||||
| /* define USE_HIGHPRECISION to have a bit exact (but slower) mpeg | |||||
| audio decoder */ | |||||
| #if CONFIG_MPEGAUDIO_HP | |||||
| # define USE_HIGHPRECISION | |||||
| #endif | |||||
| #include "mpegaudio.h" | #include "mpegaudio.h" | ||||
| #include "mpegaudiodecheader.h" | #include "mpegaudiodecheader.h" | ||||
| @@ -322,7 +316,7 @@ static int decode_init(AVCodecContext * avctx) | |||||
| s->avctx = avctx; | s->avctx = avctx; | ||||
| #if defined(USE_HIGHPRECISION) && defined(CONFIG_AUDIO_NONSHORT) | |||||
| #if defined(CONFIG_MPEGAUDIO_HP) && defined(CONFIG_AUDIO_NONSHORT) | |||||
| avctx->sample_fmt= SAMPLE_FMT_S32; | avctx->sample_fmt= SAMPLE_FMT_S32; | ||||
| #else | #else | ||||
| avctx->sample_fmt= SAMPLE_FMT_S16; | avctx->sample_fmt= SAMPLE_FMT_S16; | ||||
| @@ -38,11 +38,6 @@ | |||||
| #include "avcodec.h" | #include "avcodec.h" | ||||
| #include "bitstream.h" | #include "bitstream.h" | ||||
| #include "dsputil.h" | #include "dsputil.h" | ||||
| #if CONFIG_MPEGAUDIO_HP | |||||
| #define USE_HIGHPRECISION | |||||
| #endif | |||||
| #include "mpegaudio.h" | #include "mpegaudio.h" | ||||
| #include "qdm2data.h" | #include "qdm2data.h" | ||||