28 #define ALIAS_HEADER_SIZE 10
47 width = bytestream2_get_be16u(&gb);
48 height = bytestream2_get_be16u(&gb);
50 bits_pixel = bytestream2_get_be16u(&gb);
54 else if (bits_pixel == 8)
79 if (x == avctx->
width) {
84 "Ended frame decoding with %d bytes left.\n",
91 count = bytestream2_get_byteu(&gb);
92 if (!count || x + count > avctx->
width) {
98 pixel = bytestream2_get_be24(&gb);
99 for (i = 0; i <
count; i++) {
104 pixel = bytestream2_get_byte(&gb);
105 for (i = 0; i <
count; i++)
112 if (x != width || y != height) {