summaryrefslogtreecommitdiffstats
path: root/libavcodec/g726.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/g726.c')
-rw-r--r--libavcodec/g726.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/g726.c b/libavcodec/g726.c
index 6086e38..523ee97 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)
OpenPOWER on IntegriCloud