Commit d721ab77 authored by michael's avatar michael

Float11 doesnt need int, .o file becomes smaller and the code might

be faster.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13789 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent f7cc7fcb
......@@ -32,9 +32,9 @@
* instead of simply using 32bit integer arithmetic.
*/
typedef struct Float11 {
int sign; /**< 1bit sign */
int exp; /**< 4bit exponent */
int mant; /**< 6bit mantissa */
uint8_t sign; /**< 1bit sign */
uint8_t exp; /**< 4bit exponent */
uint8_t mant; /**< 6bit mantissa */
} Float11;
static inline Float11* i2f(int i, Float11* f)
......
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