diff options
Diffstat (limited to 'libavcodec/g726.c')
-rw-r--r-- | libavcodec/g726.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/g726.c b/libavcodec/g726.c index 1a0d40d324..cb55a524dc 100644 --- a/libavcodec/g726.c +++ b/libavcodec/g726.c @@ -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) |