Lines Matching refs:pal
53 uint32_t pal[256];
67 static int decode_palette(GetByteContext *gb, uint32_t *pal)
74 memset(pal, 0, 16 * sizeof(*pal));
80 pal[15 - index] |= color << (5 + 16);
87 pal[15 - index] |= color << (5 + 8);
94 pal[15 - index] |= color << (5 + 0);
99 pal[index] = (0xFFU << 24) | pal[index] | (pal[index] >> 3);
463 ret = decode_palette(gb, s->pal + 16 * n);
499 memcpy(frame->data[1], s->pal, AVPALETTE_SIZE);