comparison liba52/imdct.c @ 1412:e101d1cffec6 libavcodec

when changing version, please keep my changes (win32 compile fix)
author bellard
date Sun, 24 Aug 2003 13:57:42 +0000
parents 68d0a38bd802
children ef2149182f1c
comparison
equal deleted inserted replaced
1411:c2e63cb94d06 1412:e101d1cffec6
22 * You should have received a copy of the GNU General Public License 22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software 23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 */ 25 */
26 26
27 #include "config.h"
28
29 #include <math.h>
30 #include <stdio.h>
31 #ifdef LIBA52_DJBFFT
32 #include <fftc4.h>
33 #endif
34 #ifndef M_PI
35 #define M_PI 3.1415926535897932384626433832795029
36 #endif
37 #include <inttypes.h>
38
39 #include "a52.h" 27 #include "a52.h"
40 #include "a52_internal.h" 28 #include "a52_internal.h"
41 #include "mm_accel.h" 29 #include "mm_accel.h"
42 30
43 typedef struct complex_s { 31 typedef struct complex_s {