summaryrefslogtreecommitdiff
path: root/ffmpeg/libavcodec/mpegaudio.h
diff options
context:
space:
mode:
authorTim Redfern <tim@eclectronics.org>2013-12-29 12:19:38 +0000
committerTim Redfern <tim@eclectronics.org>2013-12-29 12:19:38 +0000
commitf7813a5324be39d13ab536c245d15dfc602a7849 (patch)
treefad99148b88823d34a5df2f0a25881a002eb291b /ffmpeg/libavcodec/mpegaudio.h
parentb7a5a477b8ff4d4e3028b9dfb9a9df0a41463f92 (diff)
basic type mechanism working
Diffstat (limited to 'ffmpeg/libavcodec/mpegaudio.h')
-rw-r--r--ffmpeg/libavcodec/mpegaudio.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ffmpeg/libavcodec/mpegaudio.h b/ffmpeg/libavcodec/mpegaudio.h
index b880b7a..1591a17 100644
--- a/ffmpeg/libavcodec/mpegaudio.h
+++ b/ffmpeg/libavcodec/mpegaudio.h
@@ -26,8 +26,8 @@
#ifndef AVCODEC_MPEGAUDIO_H
#define AVCODEC_MPEGAUDIO_H
-#ifndef CONFIG_FLOAT
-# define CONFIG_FLOAT 0
+#ifndef USE_FLOATS
+# define USE_FLOATS 0
#endif
#include <stdint.h>
@@ -58,7 +58,7 @@
#define FIX(a) ((int)((a) * FRAC_ONE))
-#if CONFIG_FLOAT
+#if USE_FLOATS
# define INTFLOAT float
typedef float MPA_INT;
typedef float OUT_INT;