1
0
Fork 0

avcodec/dxa: use uint8_t for type of arrays

This commit is contained in:
Paul B Mahol 2023-09-24 19:28:40 +02:00
parent 13a3e2a9b4
commit 9e768c8133
1 changed files with 2 additions and 2 deletions

View File

@ -45,8 +45,8 @@ typedef struct DxaDecContext {
uint32_t pal[256];
} DxaDecContext;
static const int shift1[6] = { 0, 8, 8, 8, 4, 4 };
static const int shift2[6] = { 0, 0, 8, 4, 0, 4 };
static const uint8_t shift1[6] = { 0, 8, 8, 8, 4, 4 };
static const uint8_t shift2[6] = { 0, 0, 8, 4, 0, 4 };
static int decode_13(AVCodecContext *avctx, DxaDecContext *c, uint8_t* dst,
int stride, uint8_t *src, int srcsize, uint8_t *ref)