--- libavcodec/mpegaudio.h | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/libavcodec/mpegaudio.h b/libavcodec/mpegaudio.h index b556801..7ed981f 100644 --- a/libavcodec/mpegaudio.h +++ b/libavcodec/mpegaudio.h @@ -60,15 +60,15 @@ # define INTFLOAT float typedef float MPA_INT; typedef float OUT_INT; -#elif FRAC_BITS <= 15 +#else # define INTFLOAT int -typedef int16_t MPA_INT; typedef int16_t OUT_INT; +#if FRAC_BITS <= 15 +typedef int16_t MPA_INT; #else -# define INTFLOAT int typedef int32_t MPA_INT; -typedef int16_t OUT_INT; #endif +#endif /* CONFIG_FLOAT */ int ff_mpa_l2_select_table(int bitrate, int nb_channels, int freq, int lsf); -- 1.7.1 _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
