Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-07-23 01:57:30 +0400
committerMichael Niedermayer <michaelni@gmx.at>2014-07-23 02:18:24 +0400
commit77304cf3523cbeec56a29749fea5c21e610be644 (patch)
treea45c902410278f4aba34e920a610a350e1349eab /libavcodec/dct.h
parent005e81d6cff4071847fe6e6b6de3b5d709c76de9 (diff)
avcodec: dct/rdft only support float mode, skip their contents for fixed point
Diffstat (limited to 'libavcodec/dct.h')
-rw-r--r--libavcodec/dct.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dct.h b/libavcodec/dct.h
index 9238449db3..717f21bef3 100644
--- a/libavcodec/dct.h
+++ b/libavcodec/dct.h
@@ -21,7 +21,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#ifndef AVCODEC_DCT_H
+#if !defined(AVCODEC_DCT_H) && (!defined(FFT_FLOAT) || FFT_FLOAT)
#define AVCODEC_DCT_H
#include <stdint.h>