summaryrefslogtreecommitdiff
path: root/libavcodec/indeo3.c
diff options
context:
space:
mode:
authorBenoit Fouet <benoit.fouet@free.fr>2008-09-30 09:05:34 +0000
committerBenoit Fouet <benoit.fouet@free.fr>2008-09-30 09:05:34 +0000
commit9fd88b29461b0245f0e73ec30a6b9f29a9e25e72 (patch)
tree2c0d93da704c21cb211ea3c903d6e3f8a30c33a0 /libavcodec/indeo3.c
parent12ce1f3fc16ff192fef911f9562395607b8c027d (diff)
Change table types to uint8_t
Originally committed as revision 15470 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/indeo3.c')
-rw-r--r--libavcodec/indeo3.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/indeo3.c b/libavcodec/indeo3.c
index 2c310e0c68..1cf6b5ad5d 100644
--- a/libavcodec/indeo3.c
+++ b/libavcodec/indeo3.c
@@ -54,13 +54,13 @@ typedef struct Indeo3DecodeContext {
unsigned short *corrector_type;
} Indeo3DecodeContext;
-static const int corrector_type_0[24] = {
+static const uint8_t corrector_type_0[24] = {
195, 159, 133, 115, 101, 93, 87, 77,
195, 159, 133, 115, 101, 93, 87, 77,
128, 79, 79, 79, 79, 79, 79, 79
};
-static const int corrector_type_2[8] = { 9, 7, 6, 8, 5, 4, 3, 2 };
+static const uint8_t corrector_type_2[8] = { 9, 7, 6, 8, 5, 4, 3, 2 };
static av_cold void build_modpred(Indeo3DecodeContext *s)
{