summaryrefslogtreecommitdiff
path: root/libavcodec/costablegen.c
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2009-10-28 19:38:31 +0000
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2009-10-28 19:38:31 +0000
commit52a4a077788a02a97cdfb8ce2f3a3107615c4d7b (patch)
tree0e59178cc420b0bedbd2244c31a174d9504ac5c3 /libavcodec/costablegen.c
parent2300b120dd41483eab89d93a38e00e48d33fd289 (diff)
Fix out-of-tree builds with --enable-hardcoded-tables
Originally committed as revision 20404 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/costablegen.c')
-rw-r--r--libavcodec/costablegen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/costablegen.c b/libavcodec/costablegen.c
index 8a33fd4cf7..f82fb042fb 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 \"dsputil.h\"\n");
+ printf("#include \"libavcodec/dsputil.h\"\n");
for (i = 4; i <= BITS; i++) {
int m = 1 << i;
double freq = 2*M_PI/m;