From deec52ccf24d6c9f68e2fc546afab7606dde05da Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Mon, 16 Jun 2008 23:34:15 +0000 Subject: [PATCH] Float11 does not need int, .o file becomes smaller and the code might be faster. Originally committed as revision 13789 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/g726.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libavcodec/g726.c b/libavcodec/g726.c index 6086e389aaa..523ee979bf4 100644 --- a/libavcodec/g726.c +++ b/libavcodec/g726.c @@ -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) -- 2.39.2