mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
Change table types to uint8_t
Originally committed as revision 15470 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
12ce1f3fc1
commit
9fd88b2946
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user