[FFmpeg-cvslog] r22278 - trunk/libavcodec/costablegen.c
reimar
subversion
Sun Mar 7 10:25:57 CET 2010
Author: reimar
Date: Sun Mar 7 10:25:57 2010
New Revision: 22278
Log:
Fix --enable-hardcoded-tables compilation: the generate table files now
need to include fft.h, not dsputil.h.
Modified:
trunk/libavcodec/costablegen.c
Modified: trunk/libavcodec/costablegen.c
==============================================================================
--- trunk/libavcodec/costablegen.c Sun Mar 7 09:52:53 2010 (r22277)
+++ trunk/libavcodec/costablegen.c Sun Mar 7 10:25:57 2010 (r22278)
@@ -37,7 +37,7 @@ int main(int argc, char *argv[])
double (*func)(double) = do_sin ? sin : cos;
printf("/* This file was generated by libavcodec/costablegen */\n");
- printf("#include \"libavcodec/dsputil.h\"\n");
+ printf("#include \"libavcodec/fft.h\"\n");
for (i = 4; i <= BITS; i++) {
int m = 1 << i;
double freq = 2*M_PI/m;
More information about the ffmpeg-cvslog
mailing list