Commit 47eeb001 authored by Ganesh Ajjanagadde's avatar Ganesh Ajjanagadde
parent 97472199
...@@ -73,8 +73,8 @@ ...@@ -73,8 +73,8 @@
#define AC3_SPX_BLEND(x) (x) #define AC3_SPX_BLEND(x) (x)
#define AC3_DYNAMIC_RANGE1 0 #define AC3_DYNAMIC_RANGE1 0
#define INTFLOAT int typedef int INTFLOAT;
#define SHORTFLOAT int16_t typedef int16_t SHORTFLOAT;
#else /* USE_FIXED */ #else /* USE_FIXED */
...@@ -92,8 +92,8 @@ ...@@ -92,8 +92,8 @@
#define AC3_SPX_BLEND(x) (x)* (1.0f/32) #define AC3_SPX_BLEND(x) (x)* (1.0f/32)
#define AC3_DYNAMIC_RANGE1 1.0f #define AC3_DYNAMIC_RANGE1 1.0f
#define INTFLOAT float typedef float INTFLOAT;
#define SHORTFLOAT float typedef float SHORTFLOAT;
#endif /* USE_FIXED */ #endif /* USE_FIXED */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment