Commit 38e9b9a6 authored by benoit's avatar benoit

Change table types to uint8_t


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@15470 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent f29a4c36
...@@ -54,13 +54,13 @@ typedef struct Indeo3DecodeContext { ...@@ -54,13 +54,13 @@ typedef struct Indeo3DecodeContext {
unsigned short *corrector_type; unsigned short *corrector_type;
} Indeo3DecodeContext; } 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,
195, 159, 133, 115, 101, 93, 87, 77, 195, 159, 133, 115, 101, 93, 87, 77,
128, 79, 79, 79, 79, 79, 79, 79 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) static av_cold void build_modpred(Indeo3DecodeContext *s)
{ {
......
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