diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2010-03-07 09:25:57 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2010-03-07 09:25:57 +0000 |
commit | 0209cd07191f20abd9d525266d37bdd79167fa02 (patch) | |
tree | 91105a5885b3abc9cc0d4f4498df8a2eb2a78deb | |
parent | f3cb1cd078df2f58970efc59677d3937e394dd4c (diff) | |
download | ffmpeg-0209cd07191f20abd9d525266d37bdd79167fa02.tar.gz |
Fix --enable-hardcoded-tables compilation: the generate table files now
need to include fft.h, not dsputil.h.
Originally committed as revision 22278 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/costablegen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/costablegen.c b/libavcodec/costablegen.c index f82fb042fb..bfcd6356a0 100644 --- a/libavcodec/costablegen.c +++ b/libavcodec/costablegen.c @@ -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; |