aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/costablegen.c
diff options
context:
space:
mode:
authorMans Rullgard <mans@mansr.com>2011-03-20 02:14:25 +0000
committerMans Rullgard <mans@mansr.com>2011-03-20 17:15:33 +0000
commit0aded9484da7da6fe23254e23382767635f8360a (patch)
tree0985f60e2b35fb272782726c00e2ccb78cae3519 /libavcodec/costablegen.c
parent4538729afed44a0ee0a762d3ef69aa4bbb7f10b3 (diff)
downloadffmpeg-0aded9484da7da6fe23254e23382767635f8360a.tar.gz
Move dct and rdft definitions to separate files
This leaves fft.h with only the core FFT and MDCT definitions thus making it more managable. Signed-off-by: Mans Rullgard <mans@mansr.com>
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 20321ef661..33afd8de2d 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/fft.h\"\n");
+ printf("#include \"libavcodec/%s\"\n", do_sin ? "rdft.h" : "fft.h");
for (i = 4; i <= BITS; i++) {
int m = 1 << i;
double freq = 2*M_PI/m;