diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-12-03 19:55:12 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-12-03 21:12:00 +0100 |
commit | babb611d35417fb73f7f6ead90ee897af24bf198 (patch) | |
tree | 58a065cfc428bb34148bbe4fd8f7cc8b453fb3f1 /libavcodec/mpegaudio.h | |
parent | 04e06cdf7d35640466d6dcf88cb5bc86a7d0ee18 (diff) | |
download | ffmpeg-babb611d35417fb73f7f6ead90ee897af24bf198.tar.gz |
libavcodec/mpegaudio: change CONFIG_FLOAT to USE_FLOAT
The CONFIG_ name-space is set by configure, so its better to use a
different prefix here.
This also unifies the encoder & decoder define that is used
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/mpegaudio.h')
-rw-r--r-- | libavcodec/mpegaudio.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/mpegaudio.h b/libavcodec/mpegaudio.h index b880b7a832..1591a170d7 100644 --- a/libavcodec/mpegaudio.h +++ b/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; |