diff options
author | Måns Rullgård <mans@mansr.com> | 2010-01-15 20:48:34 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-01-15 20:48:34 +0000 |
commit | 2b9cb7ec71799050086d2f92fb474adcdb76703f (patch) | |
tree | 0944d7d98cd542e5158b155139bb645c1ed57874 | |
parent | ad7da0b5515dcc835f3ad53f86a381447e49eb0e (diff) | |
download | ffmpeg-2b9cb7ec71799050086d2f92fb474adcdb76703f.tar.gz |
Fix out of tree build with hardcoded tables
Originally committed as revision 21228 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/mdct_tablegen.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mdct_tablegen.h b/libavcodec/mdct_tablegen.h index 30a517c2e5..af652e7457 100644 --- a/libavcodec/mdct_tablegen.h +++ b/libavcodec/mdct_tablegen.h @@ -35,7 +35,7 @@ SINETABLE(1024); SINETABLE(2048); SINETABLE(4096); #else -#include "mdct_tables.h" +#include "libavcodec/mdct_tables.h" #endif SINETABLE_CONST float * const ff_sine_windows[] = { |