comparison mpegaudiodec.c @ 5886:85c4aca68be3 libavcodec

Move 2 defines from mpegaudiodec.c to mpegaudiodata.h to allow compilation when DEBUG is defined. Patch by Martin Lindhe: martin startwars org
author benoit
date Thu, 08 Nov 2007 10:53:32 +0000
parents c2ab2ac31edb
children 85f3acb225e9
comparison
equal deleted inserted replaced
5885:5c19c955c62b 5886:85c4aca68be3
82 int preflag; 82 int preflag;
83 int short_start, long_end; /* long/short band indexes */ 83 int short_start, long_end; /* long/short band indexes */
84 uint8_t scale_factors[40]; 84 uint8_t scale_factors[40];
85 int32_t sb_hybrid[SBLIMIT * 18]; /* 576 samples */ 85 int32_t sb_hybrid[SBLIMIT * 18]; /* 576 samples */
86 } GranuleDef; 86 } GranuleDef;
87
88 #define MODE_EXT_MS_STEREO 2
89 #define MODE_EXT_I_STEREO 1
90 87
91 #include "mpegaudiodata.h" 88 #include "mpegaudiodata.h"
92 #include "mpegaudiodectab.h" 89 #include "mpegaudiodectab.h"
93 90
94 static void compute_antialias_integer(MPADecodeContext *s, GranuleDef *g); 91 static void compute_antialias_integer(MPADecodeContext *s, GranuleDef *g);