Commit eed2c699 authored by michael's avatar michael

-0x8000 == 0x8000 with int16

fixes segfault / issue491


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13767 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 502a5a0a
......@@ -37,7 +37,7 @@ typedef struct Float11 {
int mant; /**< 6bit mantissa */
} Float11;
static inline Float11* i2f(int16_t i, Float11* f)
static inline Float11* i2f(int i, Float11* f)
{
f->sign = (i < 0);
if (f->sign)
......
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