diff dsputil.h @ 10204:db033d1fbf44 libavcodec

Allow arch-specific mdct code to request interleaving of cos/sin tables
author mru
date Mon, 21 Sep 2009 02:56:06 +0000
parents 38ab367d4231
children 87ae4a167138
line wrap: on
line diff
--- a/dsputil.h	Mon Sep 21 01:40:08 2009 +0000
+++ b/dsputil.h	Mon Sep 21 02:56:06 2009 +0000
@@ -687,6 +687,9 @@
     void (*imdct_half)(struct FFTContext *s, FFTSample *output, const FFTSample *input);
     void (*mdct_calc)(struct FFTContext *s, FFTSample *output, const FFTSample *input);
     int split_radix;
+    int permutation;
+#define FF_MDCT_PERM_NONE       0
+#define FF_MDCT_PERM_INTERLEAVE 1
 } FFTContext;
 
 extern FFTSample* const ff_cos_tabs[13];