Mercurial > libavcodec.hg
changeset 7944:518521276932 libavcodec
Change table types to uint8_t
author | benoit |
---|---|
date | Tue, 30 Sep 2008 09:05:34 +0000 |
parents | 3ff31e4454cd |
children | 25fa57ac17d4 |
files | indeo3.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/indeo3.c Tue Sep 30 04:18:22 2008 +0000 +++ b/indeo3.c Tue Sep 30 09:05:34 2008 +0000 @@ -54,13 +54,13 @@ 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) {