Mercurial > libavcodec.hg
changeset 11385:351d1c11195b libavcodec
Fix --enable-hardcoded-tables compilation: the generate table files now
need to include fft.h, not dsputil.h.
author | reimar |
---|---|
date | Sun, 07 Mar 2010 09:25:57 +0000 |
parents | ba57caf45845 |
children | 0262869c11a9 |
files | costablegen.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/costablegen.c Sun Mar 07 06:03:45 2010 +0000 +++ b/costablegen.c Sun Mar 07 09:25:57 2010 +0000 @@ -37,7 +37,7 @@ 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;