Browse Source

Replace #ifdef CONFIG_ preprocessor check by #if CONFIG_.

CONFIG_ changed semantics and is always defined now.

Originally committed as revision 16598 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Diego Biurrun 17 years ago
parent
commit
0f6a659ddf
2 changed files with 3 additions and 3 deletions
  1. +2
    -2
      libavcodec/mpegaudio.h
  2. +1
    -1
      libavcodec/mpegaudiodec.c

+ 2
- 2
libavcodec/mpegaudio.h View File

@@ -51,7 +51,7 @@

#define MP3_MASK 0xFFFE0CCF

#ifdef CONFIG_MPEGAUDIO_HP
#if CONFIG_MPEGAUDIO_HP
#define FRAC_BITS 23 /* fractional bits for sb_samples and dct */
#define WFRAC_BITS 16 /* fractional bits for window */
#else
@@ -63,7 +63,7 @@

#define FIX(a) ((int)((a) * FRAC_ONE))

#if defined(CONFIG_MPEGAUDIO_HP) && defined(CONFIG_AUDIO_NONSHORT)
#if CONFIG_MPEGAUDIO_HP && CONFIG_AUDIO_NONSHORT
typedef int32_t OUT_INT;
#define OUT_MAX INT32_MAX
#define OUT_MIN INT32_MIN


+ 1
- 1
libavcodec/mpegaudiodec.c View File

@@ -316,7 +316,7 @@ static int decode_init(AVCodecContext * avctx)

s->avctx = avctx;

#if defined(CONFIG_MPEGAUDIO_HP) && defined(CONFIG_AUDIO_NONSHORT)
#if CONFIG_MPEGAUDIO_HP && CONFIG_AUDIO_NONSHORT
avctx->sample_fmt= SAMPLE_FMT_S32;
#else
avctx->sample_fmt= SAMPLE_FMT_S16;


Loading…
Cancel
Save