提交 c7bbc6cd 编写于 作者: M Mans Rullgard

mpegaudio: merge two #if CONFIG_FLOAT blocks

Signed-off-by: NMans Rullgard <mans@mansr.com>
上级 918d0584
......@@ -62,21 +62,18 @@
#define FIX(a) ((int)((a) * FRAC_ONE))
#if CONFIG_FLOAT
typedef float OUT_INT;
#else
typedef int16_t OUT_INT;
#endif
#if CONFIG_FLOAT
# define INTFLOAT float
typedef float MPA_INT;
typedef float OUT_INT;
#elif FRAC_BITS <= 15
# define INTFLOAT int
typedef int16_t MPA_INT;
typedef int16_t OUT_INT;
#else
# define INTFLOAT int
typedef int32_t MPA_INT;
typedef int16_t OUT_INT;
#endif
#define MPA_DECODE_HEADER \
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册