Move 2 defines from mpegaudiodec.c to mpegaudiodata.h to allow compilation

when DEBUG is defined.
Patch by Martin Lindhe: martin startwars org

Originally committed as revision 10955 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Martin Lindhe 2007-11-08 10:53:32 +00:00 committed by Benoit Fouet
parent 36c9e40ab4
commit 3240941b25
2 changed files with 3 additions and 3 deletions

View File

@ -29,6 +29,9 @@
#include "common.h"
#define MODE_EXT_MS_STEREO 2
#define MODE_EXT_I_STEREO 1
extern const uint16_t ff_mpa_bitrate_tab[2][3][15];
extern const uint16_t ff_mpa_freq_tab[3];
extern const int32_t ff_mpa_enwindow[257];

View File

@ -85,9 +85,6 @@ typedef struct GranuleDef {
int32_t sb_hybrid[SBLIMIT * 18]; /* 576 samples */
} GranuleDef;
#define MODE_EXT_MS_STEREO 2
#define MODE_EXT_I_STEREO 1
#include "mpegaudiodata.h"
#include "mpegaudiodectab.h"