71 #define LUT8_PART(plane, v) \
72 AV_LE2NE64C(UINT64_C(0x0000000)<<32 | v) << plane, \
73 AV_LE2NE64C(UINT64_C(0x1000000)<<32 | v) << plane, \
74 AV_LE2NE64C(UINT64_C(0x0010000)<<32 | v) << plane, \
75 AV_LE2NE64C(UINT64_C(0x1010000)<<32 | v) << plane, \
76 AV_LE2NE64C(UINT64_C(0x0000100)<<32 | v) << plane, \
77 AV_LE2NE64C(UINT64_C(0x1000100)<<32 | v) << plane, \
78 AV_LE2NE64C(UINT64_C(0x0010100)<<32 | v) << plane, \
79 AV_LE2NE64C(UINT64_C(0x1010100)<<32 | v) << plane, \
80 AV_LE2NE64C(UINT64_C(0x0000001)<<32 | v) << plane, \
81 AV_LE2NE64C(UINT64_C(0x1000001)<<32 | v) << plane, \
82 AV_LE2NE64C(UINT64_C(0x0010001)<<32 | v) << plane, \
83 AV_LE2NE64C(UINT64_C(0x1010001)<<32 | v) << plane, \
84 AV_LE2NE64C(UINT64_C(0x0000101)<<32 | v) << plane, \
85 AV_LE2NE64C(UINT64_C(0x1000101)<<32 | v) << plane, \
86 AV_LE2NE64C(UINT64_C(0x0010101)<<32 | v) << plane, \
87 AV_LE2NE64C(UINT64_C(0x1010101)<<32 | v) << plane
89 #define LUT8(plane) { \
90 LUT8_PART(plane, 0x0000000), \
91 LUT8_PART(plane, 0x1000000), \
92 LUT8_PART(plane, 0x0010000), \
93 LUT8_PART(plane, 0x1010000), \
94 LUT8_PART(plane, 0x0000100), \
95 LUT8_PART(plane, 0x1000100), \
96 LUT8_PART(plane, 0x0010100), \
97 LUT8_PART(plane, 0x1010100), \
98 LUT8_PART(plane, 0x0000001), \
99 LUT8_PART(plane, 0x1000001), \
100 LUT8_PART(plane, 0x0010001), \
101 LUT8_PART(plane, 0x1010001), \
102 LUT8_PART(plane, 0x0000101), \
103 LUT8_PART(plane, 0x1000101), \
104 LUT8_PART(plane, 0x0010101), \
105 LUT8_PART(plane, 0x1010101), \
114 #define LUT32(plane) { \
116 0, 0, 0, 1 << plane, \
117 0, 0, 1 << plane, 0, \
118 0, 0, 1 << plane, 1 << plane, \
119 0, 1 << plane, 0, 0, \
120 0, 1 << plane, 0, 1 << plane, \
121 0, 1 << plane, 1 << plane, 0, \
122 0, 1 << plane, 1 << plane, 1 << plane, \
123 1 << plane, 0, 0, 0, \
124 1 << plane, 0, 0, 1 << plane, \
125 1 << plane, 0, 1 << plane, 0, \
126 1 << plane, 0, 1 << plane, 1 << plane, \
127 1 << plane, 1 << plane, 0, 0, \
128 1 << plane, 1 << plane, 0, 1 << plane, \
129 1 << plane, 1 << plane, 1 << plane, 0, \
130 1 << plane, 1 << plane, 1 << plane, 1 << plane, \
147 return x << 16 | x << 8 | x;
167 count =
FFMIN(palette_size / 3, count);
169 for (i = 0; i <
count; i++)
170 pal[i] = 0xFF000000 |
AV_RB24(palette + i*3);
171 if (s->
flags && count >= 32) {
172 for (i = 0; i < 32; i++)
173 pal[i + 32] = 0xFF000000 | (
AV_RB24(palette + i*3) & 0xFEFEFE) >> 1;
174 count =
FFMAX(count, 64);
179 for (i = 0; i <
count; i++)
184 for (i = 0; i <
count; i++)
205 unsigned buf_size = 0;
221 chunk_id = bytestream2_get_le32(gb);
222 data_size = bytestream2_get_be32(gb);
224 if (chunk_id ==
MKTAG(
'B',
'M',
'H',
'D')) {
226 }
else if (chunk_id ==
MKTAG(
'A',
'N',
'H',
'D')) {
233 extra = bytestream2_get_be32(gb);
239 }
else if (chunk_id ==
MKTAG(
'D',
'L',
'T',
'A') ||
240 chunk_id ==
MKTAG(
'B',
'O',
'D',
'Y')) {
241 if (chunk_id ==
MKTAG(
'B',
'O',
'D',
'Y'))
244 }
else if (chunk_id ==
MKTAG(
'C',
'M',
'A',
'P')) {
245 int count = data_size / 3;
246 uint32_t *pal = s->
pal;
251 for (i = 0; i <
count; i++)
252 pal[i] = 0xFF000000 | bytestream2_get_le24(gb);
254 for (i = 0; i <
count; i++)
255 pal[i] = 0xFF000000 | bytestream2_get_be24(gb);
264 buf_size = bytestream_get_be16(&buf);
265 if (buf_size <= 1 || palette_size < 0) {
267 "Invalid palette size received: %u -> palette data offset: %d\n",
268 buf_size, palette_size);
273 if (buf_size >= 41) {
275 s->
bpp = bytestream_get_byte(&buf);
276 s->
ham = bytestream_get_byte(&buf);
277 s->
flags = bytestream_get_byte(&buf);
279 s->
masking = bytestream_get_byte(&buf);
280 for (i = 0; i < 16; i++)
281 s->
tvdc[i] = bytestream_get_be16(&buf);
284 if (s->
bpp >= 8 && !s->
ham) {
307 if (!s->
bpp || s->
bpp > 32) {
310 }
else if (s->
ham >= 8) {
327 ham_count = 8 * (1 << s->
ham);
336 memset(s->
ham_palbuf, 0, (1 << s->
ham) * 2 * sizeof (uint32_t));
337 for (i=0; i <
count; i++) {
343 for (i=0; i <
count; i++) {
348 for (i=0; i <
count; i++) {
349 uint32_t
tmp = i << (8 - s->
ham);
350 tmp |= tmp >> s->
ham;
355 s->
ham_palbuf[(i+count*2)*2+1] = 0xFF000000 | tmp;
356 s->
ham_palbuf[(i+count*3)*2+1] = 0xFF000000 | tmp << 8;
359 for (i = 0; i < ham_count; i++)
452 uint64_t v =
AV_RN64A(dst) | lut[*buf++];
455 }
while (--buf_size);
469 unsigned mask = (*buf >> 2) & ~3;
470 dst[0] |= lut[mask++];
471 dst[1] |= lut[mask++];
472 dst[2] |= lut[mask++];
474 mask = (*buf++ << 2) & 0x3F;
475 dst[4] |= lut[mask++];
476 dst[5] |= lut[mask++];
477 dst[6] |= lut[mask++];
480 }
while (--buf_size);
483 #define DECODE_HAM_PLANE32(x) \
484 first = buf[x] << 1; \
485 second = buf[(x)+1] << 1; \
486 delta &= pal[first++]; \
487 delta |= pal[first]; \
489 delta &= pal[second++]; \
490 delta |= pal[second]; \
502 const uint32_t *
const pal,
unsigned buf_size)
504 uint32_t
delta = pal[1];
506 uint32_t first, second;
513 }
while (--buf_size);
517 const uint32_t *
const pal,
unsigned width)
520 *dst++ = pal[*buf++];
537 for (x = 0; x < dst_size && bytestream2_get_bytes_left(gb) > 0;) {
539 const int8_t
value = bytestream2_get_byte(gb);
543 if (length < value + 1)
545 }
else if (value > -128) {
546 length =
FFMIN(-value + 1, dst_size - x);
547 memset(dst + x, bytestream2_get_byte(gb), length);
555 memset(dst+x, 0, dst_size - x);
565 int i, y_pos = 0, x_pos = 0;
567 if (bytestream2_get_be32(gb) !=
MKBETAG(
'V',
'D',
'A',
'T'))
571 count = bytestream2_get_be16(gb) - 2;
578 for (i = 0; i < count && x_pos < line_size; i++) {
579 int8_t cmd = bytestream2_get_byte(&cmds);
583 l = bytestream2_get_be16(gb);
584 while (l-- > 0 && x_pos < line_size) {
585 dst[x_pos + y_pos * line_size ] = bytestream2_get_byte(gb);
586 dst[x_pos + y_pos++ * line_size + 1] = bytestream2_get_byte(gb);
587 if (y_pos >= height) {
592 }
else if (cmd < 0) {
594 while (l-- > 0 && x_pos < line_size) {
595 dst[x_pos + y_pos * line_size ] = bytestream2_get_byte(gb);
596 dst[x_pos + y_pos++ * line_size + 1] = bytestream2_get_byte(gb);
597 if (y_pos >= height) {
602 }
else if (cmd == 1) {
603 l = bytestream2_get_be16(gb);
604 r = bytestream2_get_be16(gb);
605 while (l-- > 0 && x_pos < line_size) {
606 dst[x_pos + y_pos * line_size ] = r >> 8;
607 dst[x_pos + y_pos++ * line_size + 1] = r & 0xFF;
608 if (y_pos >= height) {
615 r = bytestream2_get_be16(gb);
616 while (l-- > 0 && x_pos < line_size) {
617 dst[x_pos + y_pos * line_size ] = r >> 8;
618 dst[x_pos + y_pos++ * line_size + 1] = r & 0xFF;
619 if (y_pos >= height) {
630 #define DECODE_RGBX_COMMON(type) \
632 length = bytestream2_get_byte(gb); \
634 length = bytestream2_get_be16(gb); \
639 for (i = 0; i < length; i++) { \
640 *(type *)(dst + y*linesize + x * sizeof(type)) = pixel; \
659 int x = 0, y = 0, i,
length;
661 uint32_t
pixel = 0xFF000000 | bytestream2_get_be24(gb);
662 length = bytestream2_get_byte(gb) & 0x7F;
676 int x = 0, y = 0, i,
length;
678 uint32_t
pixel = bytestream2_get_be16u(gb);
679 length = pixel & 0x7;
696 const uint8_t *src_end = src + src_size;
698 while (src + 5 <= src_end) {
700 opcode = *(int8_t *)src++;
702 int size = opcode + 1;
703 for (i = 0; i <
size; i++) {
705 memcpy(dst + y*linesize + x * 4, src, length * 4);
717 int size = -opcode + 1;
719 for (i = 0; i <
size; i++) {
720 *(uint32_t *)(dst + y*linesize + x * 4) =
pixel;
746 int x = 0, y = 0,
plane = 0;
750 for (i = 0; i < src_size * 2;) {
751 #define GETNIBBLE ((i & 1) ? (src[i>>1] & 0xF) : (src[i>>1] >> 4))
759 if (i >= src_size * 2)
763 d =
FFMIN(d, width - x);
764 for (j = 0; j < d; j++) {
786 int w,
int bpp,
int dst_size)
788 int planepitch =
FFALIGN(w, 16) >> 3;
789 int pitch = planepitch * bpp;
792 unsigned ofssrc, pos;
798 for (k = 0; k < bpp; k++) {
799 ofssrc = bytestream2_get_be32(&ptrs);
805 if (ofssrc >= buf_end - buf)
810 int16_t
offset = bytestream2_get_be16(&gb);
814 unsigned data = bytestream2_get_be16(&gb);
817 noffset = (pos / planepitch) * pitch + (pos % planepitch) + k * planepitch;
819 bytestream2_put_be16(&pb, data);
821 uint16_t
count = bytestream2_get_be16(&gb);
823 pos += 2 * -(offset + 2);
824 for (i = 0; i <
count; i++) {
825 uint16_t
data = bytestream2_get_be16(&gb);
828 noffset = (pos / planepitch) * pitch + (pos % planepitch) + k * planepitch;
830 bytestream2_put_be16(&pb, data);
839 int w,
int xor,
int bpp,
int dst_size)
841 int ncolumns = ((w + 15) / 16) * 2;
842 int dstpitch = ncolumns * bpp;
843 unsigned ofsdst, ofssrc, opcode, x;
851 for (k = 0; k < bpp; k++) {
852 ofssrc = bytestream2_get_be32(&ptrs);
857 if (ofssrc >= buf_end - buf)
861 for (j = 0; j < ncolumns; j++) {
862 ofsdst = j + k * ncolumns;
864 i = bytestream2_get_byte(&gb);
866 opcode = bytestream2_get_byte(&gb);
869 opcode = bytestream2_get_byte(&gb);
870 x = bytestream2_get_byte(&gb);
874 if (xor && ofsdst < dst_size) {
875 bytestream2_put_byte(&pb, dst[ofsdst] ^ x);
877 bytestream2_put_byte(&pb, x);
882 }
else if (opcode < 0x80) {
883 ofsdst += opcode * dstpitch;
889 if (xor && ofsdst < dst_size) {
890 bytestream2_put_byte(&pb, dst[ofsdst] ^ bytestream2_get_byte(&gb));
892 bytestream2_put_byte(&pb, bytestream2_get_byte(&gb));
906 int w,
int h,
int bpp,
int dst_size)
912 int planepitch_byte = (w + 7) / 8;
913 int planepitch = ((w + 15) / 16) * 2;
914 int kludge_j,
b,
g,
r, d;
917 pitch = planepitch * bpp;
918 kludge_j = w < 320 ? (320 -
w) / 8 / 2 : 0;
923 type = bytestream2_get_be16(&gb);
929 flag = bytestream2_get_be16(&gb);
930 cols = bytestream2_get_be16(&gb);
931 groups = bytestream2_get_be16(&gb);
933 for (g = 0; g <
groups; g++) {
934 offset = bytestream2_get_be16(&gb);
942 offset = ((offset / (320 / 8)) * pitch) + (offset % (320 / 8)) - kludge_j;
944 offset = ((offset / planepitch_byte) * pitch) + (offset % planepitch_byte);
946 for (b = 0; b < cols; b++) {
947 for (d = 0; d < bpp; d++) {
950 if (offset >= dst_size)
959 offset += planepitch;
962 if ((cols * bpp) & 1)
967 flag = bytestream2_get_be16(&gb);
968 rows = bytestream2_get_be16(&gb);
969 bytes = bytestream2_get_be16(&gb);
970 groups = bytestream2_get_be16(&gb);
972 for (g = 0; g <
groups; g++) {
973 offset = bytestream2_get_be16(&gb);
976 offset = ((offset / (320 / 8)) * pitch) + (offset % (320/ 8)) - kludge_j;
978 offset = ((offset / planepitch_byte) * pitch) + (offset % planepitch_byte);
980 for (r = 0; r < rows; r++) {
981 for (d = 0; d < bpp; d++) {
982 unsigned noffset = offset + (r * pitch) + d * planepitch;
989 for (b = 0; b < bytes; b++) {
992 if (noffset >= dst_size)
1005 if ((rows * bytes * bpp) & 1)
1017 int w,
int bpp,
int dst_size)
1019 int ncolumns = (w + 15) >> 4;
1020 int dstpitch = ncolumns * bpp * 2;
1021 unsigned ofsdst, ofssrc, ofsdata, opcode, x;
1026 if (buf_end - buf <= 64)
1033 for (k = 0; k < bpp; k++) {
1034 ofssrc = bytestream2_get_be32(&ptrs);
1035 ofsdata = bytestream2_get_be32(&dptrs);
1040 if (ofssrc >= buf_end - buf)
1043 if (ofsdata >= buf_end - buf)
1048 for (j = 0; j < ncolumns; j++) {
1049 ofsdst = (j + k * ncolumns) * 2;
1051 i = bytestream2_get_byte(&gb);
1053 opcode = bytestream2_get_byte(&gb);
1056 opcode = bytestream2_get_byte(&gb);
1057 x = bytestream2_get_be16(&dgb);
1061 bytestream2_put_be16(&pb, x);
1065 }
else if (opcode < 0x80) {
1066 ofsdst += opcode * dstpitch;
1072 bytestream2_put_be16(&pb, bytestream2_get_be16(&dgb));
1085 int w,
int bpp,
int dst_size)
1087 int ncolumns = (w + 31) >> 5;
1088 int dstpitch = ((w + 15) / 16 * 2) * bpp;
1089 unsigned ofsdst, ofssrc, ofsdata, opcode, x;
1094 if (buf_end - buf <= 64)
1097 h = (((w + 15) / 16 * 2) != ((w + 31) / 32 * 4)) ? 1 : 0;
1102 for (k = 0; k < bpp; k++) {
1103 ofssrc = bytestream2_get_be32(&ptrs);
1104 ofsdata = bytestream2_get_be32(&dptrs);
1109 if (ofssrc >= buf_end - buf)
1112 if (ofsdata >= buf_end - buf)
1117 for (j = 0; j < ncolumns; j++) {
1118 ofsdst = (j + k * ncolumns) * 4 - h * (2 * k);
1120 i = bytestream2_get_byte(&gb);
1122 opcode = bytestream2_get_byte(&gb);
1125 opcode = bytestream2_get_byte(&gb);
1126 if (h && (j == (ncolumns - 1))) {
1127 x = bytestream2_get_be16(&dgb);
1130 x = bytestream2_get_be32(&dgb);
1135 if (h && (j == (ncolumns - 1))) {
1136 bytestream2_put_be16(&pb, x);
1138 bytestream2_put_be32(&pb, x);
1143 }
else if (opcode < 0x80) {
1144 ofsdst += opcode * dstpitch;
1150 if (h && (j == (ncolumns - 1))) {
1151 bytestream2_put_be16(&pb, bytestream2_get_be16(&dgb));
1154 bytestream2_put_be32(&pb, bytestream2_get_be32(&dgb));
1168 int w,
int bpp,
int dst_size)
1170 int ncolumns = (w + 15) >> 4;
1171 int dstpitch = ncolumns * bpp * 2;
1172 unsigned ofsdst, ofssrc, opcode, x;
1180 for (k = 0; k < bpp; k++) {
1181 ofssrc = bytestream2_get_be32(&ptrs);
1186 if (ofssrc >= buf_end - buf)
1190 for (j = 0; j < ncolumns; j++) {
1191 ofsdst = (j + k * ncolumns) * 2;
1193 i = bytestream2_get_be16(&gb);
1195 opcode = bytestream2_get_be16(&gb);
1198 opcode = bytestream2_get_be16(&gb);
1199 x = bytestream2_get_be16(&gb);
1203 bytestream2_put_be16(&pb, x);
1207 }
else if (opcode < 0x8000) {
1208 ofsdst += opcode * dstpitch;
1215 bytestream2_put_be16(&pb, bytestream2_get_be16(&gb));
1228 int w,
int bpp,
int dst_size)
1230 int ncolumns = (w + 31) >> 5;
1231 int dstpitch = ((w + 15) / 16 * 2) * bpp;
1232 unsigned ofsdst, ofssrc, opcode, x;
1233 unsigned skip = 0x80000000,
mask = skip - 1;
1238 h = (((w + 15) / 16 * 2) != ((w + 31) / 32 * 4)) ? 1 : 0;
1242 for (k = 0; k < bpp; k++) {
1243 ofssrc = bytestream2_get_be32(&ptrs);
1248 if (ofssrc >= buf_end - buf)
1252 for (j = 0; j < ncolumns; j++) {
1253 ofsdst = (j + k * ncolumns) * 4 - h * (2 * k);
1255 if (h && (j == (ncolumns - 1))) {
1260 i = bytestream2_get_be32(&gb);
1262 opcode = bytestream2_get_be32(&gb);
1265 if (h && (j == ncolumns - 1)) {
1266 opcode = bytestream2_get_be16(&gb);
1267 x = bytestream2_get_be16(&gb);
1269 opcode = bytestream2_get_be32(&gb);
1270 x = bytestream2_get_be32(&gb);
1275 if (h && (j == ncolumns - 1))
1276 bytestream2_put_be16(&pb, x);
1278 bytestream2_put_be32(&pb, x);
1282 }
else if (opcode < skip) {
1283 ofsdst += opcode * dstpitch;
1290 if (h && (j == ncolumns - 1)) {
1291 bytestream2_put_be16(&pb, bytestream2_get_be16(&gb));
1293 bytestream2_put_be32(&pb, bytestream2_get_be32(&gb));
1307 int w,
int flag,
int bpp,
int dst_size)
1309 int planepitch =
FFALIGN(w, 16) >> 3;
1310 int pitch = planepitch * bpp;
1311 int planepitch_byte = (w + 7) / 8;
1312 unsigned entries, ofssrc;
1317 if (buf_end - buf <= 4 * bpp)
1323 for (k = 0; k < bpp; k++) {
1324 ofssrc = bytestream2_get_be32(&ptrs);
1329 if (ofssrc >= buf_end - buf)
1334 entries = bytestream2_get_be32(&gb);
1336 int32_t opcode = bytestream2_get_be32(&gb);
1337 unsigned offset = bytestream2_get_be32(&gb);
1339 bytestream2_seek_p(&pb, (offset / planepitch_byte) * pitch + (offset % planepitch_byte) + k * planepitch, SEEK_SET);
1341 uint32_t x = bytestream2_get_be32(&gb);
1343 bytestream2_put_be32(&pb, x);
1350 bytestream2_put_be32(&pb, bytestream2_get_be32(&gb));
1362 int w,
int flag,
int bpp,
int dst_size)
1364 int planepitch =
FFALIGN(w, 16) >> 3;
1365 int pitch = planepitch * bpp;
1366 int planepitch_byte = (w + 7) / 8;
1367 unsigned entries, ofssrc;
1372 if (buf_end - buf <= 4 * bpp)
1378 for (k = 0; k < bpp; k++) {
1379 ofssrc = bytestream2_get_be32(&ptrs);
1384 if (ofssrc >= buf_end - buf)
1389 entries = bytestream2_get_be16(&gb);
1391 int16_t opcode = bytestream2_get_be16(&gb);
1392 unsigned offset = bytestream2_get_be32(&gb);
1394 bytestream2_seek_p(&pb, (offset / planepitch_byte) * pitch + (offset % planepitch_byte) + k * planepitch, SEEK_SET);
1396 uint16_t x = bytestream2_get_be16(&gb);
1398 bytestream2_put_be16(&pb, x);
1405 bytestream2_put_be16(&pb, bytestream2_get_be16(&gb));
1417 int w,
int flag,
int bpp,
int dst_size)
1421 unsigned poff0, poff1;
1423 int planepitch_byte = (w + 7) / 8;
1424 int planepitch = ((w + 15) / 16) * 2;
1425 int pitch = planepitch * bpp;
1427 if (buf_end - buf <= 64)
1434 dstpitch = flag ? (((w + 7) / 8) * bpp): 2;
1436 for (k = 0; k < bpp; k++) {
1437 poff0 = bytestream2_get_be32(&off0);
1438 poff1 = bytestream2_get_be32(&off1);
1443 if (2LL * poff0 >= buf_end - buf)
1446 if (2LL * poff1 >= buf_end - buf)
1453 uint32_t
offset = bytestream2_get_be16(&ogb);
1454 int16_t cnt = bytestream2_get_be16(&ogb);
1457 offset = ((2 *
offset) / planepitch_byte) * pitch + ((2 *
offset) % planepitch_byte) + k * planepitch;
1463 data = bytestream2_get_be16(&dgb);
1464 for (i = 0; i < cnt; i++) {
1465 bytestream2_put_be16(&pb, data);
1472 for (i = 0; i < cnt; i++) {
1473 data = bytestream2_get_be16(&dgb);
1474 bytestream2_put_be16(&pb, data);
1490 void *
data,
int *got_frame,
1496 int buf_size = avpkt->
size;
1497 const uint8_t *buf_end = buf + buf_size;
1536 for (plane = 0; plane < s->
bpp; plane++) {
1537 for (y = 0; y < avctx->
height && buf < buf_end; y++) {
1543 }
else if (s->
ham) {
1545 for (y = 0; y < avctx->
height; y++) {
1548 for (plane = 0; plane < s->
bpp; plane++) {
1550 if (start >= buf_end)
1561 for (y = 0; y < avctx->
height && buf < buf_end; y++) {
1563 memcpy(row, buf,
FFMIN(raw_width, buf_end - buf));
1566 for (x = 0; x < avctx->
width; x++)
1567 row[4 * x + 3] = row[4 * x + 3] & 0xF0 | (row[4 * x + 3] >> 4);
1575 for (y = 0; y < avctx->
height; y++) {
1577 memset(row, 0, avctx->
width);
1578 for (plane = 0; plane < s->
bpp && buf < buf_end; plane++) {
1583 }
else if (s->
ham) {
1584 for (y = 0; y < avctx->
height; y++) {
1587 for (plane = 0; plane < s->
bpp && buf < buf_end; plane++) {
1594 for (y = 0; y < avctx->
height; y++) {
1596 memset(row, 0, avctx->
width << 2);
1597 for (plane = 0; plane < s->
bpp && buf < buf_end; plane++) {
1606 for (y = 0; y < avctx->
height && buf_end >
buf; y++) {
1608 memcpy(row, buf,
FFMIN(avctx->
width, buf_end - buf));
1611 }
else if (s->
ham) {
1612 for (y = 0; y < avctx->
height && buf_end >
buf; y++) {
1630 for (y = 0; y < avctx->
height; y++) {
1632 memset(row, 0, avctx->
width);
1633 for (plane = 0; plane < s->
bpp; plane++) {
1643 for (y = 0; y < avctx->
height; y++) {
1646 for (plane = 0; plane < s->
bpp; plane++) {
1652 }
else if (s->
ham) {
1654 for (y = 0; y < avctx->
height; y++) {
1657 for (plane = 0; plane < s->
bpp; plane++) {
1668 for (y = 0; y < avctx->
height; y++) {
1670 memset(row, 0, avctx->
width << 2);
1671 for (plane = 0; plane < s->
bpp; plane++) {
1679 for (y = 0; y < avctx->
height; y++) {
1683 }
else if (s->
ham) {
1684 for (y = 0; y < avctx->
height; y++) {
1699 for (plane = 0; plane < s->
bpp; plane++) {
1700 for (y = 0; y < avctx->
height && buf < buf_end; y++) {
1706 }
else if (s->
ham) {
1708 for (y = 0; y < avctx->
height; y++) {
1711 for (plane = 0; plane < s->
bpp; plane++) {
1713 if (start >= buf_end)
1728 for (plane = 0; plane < s->
bpp; plane++) {
1730 for (y = 0; y < avctx->
height; y++) {
1809 for (y = 0; y < avctx->
height; y++) {
1811 memset(row, 0, avctx->
width);
1812 for (plane = 0; plane < s->
bpp; plane++) {
1817 memcpy(frame->
data[1], s->
pal, 256 * 4);
1818 }
else if (s->
ham) {
1822 memset(s->
ham_palbuf, 0, (1 << s->
ham) * 2 *
sizeof(uint32_t));
1823 for (i = 0; i <
count; i++) {
1826 for (i = 0; i <
count; i++) {
1827 uint32_t
tmp = i << (8 - s->
ham);
1828 tmp |= tmp >> s->
ham;
1833 s->
ham_palbuf[(i+count*2)*2+1] = 0xFF000000 | tmp;
1834 s->
ham_palbuf[(i+count*3)*2+1] = 0xFF000000 | tmp << 8;
1837 for (i = 0; i < 8 * (1 << s->
ham); i++)
1840 for (y = 0; y < avctx->
height; y++) {
1843 for (plane = 0; plane < s->
bpp; plane++) {
1871 #if CONFIG_IFF_ILBM_DECODER
#define FF_CODEC_CAP_INIT_CLEANUP
The codec allows calling the close function for deallocation even if the init function returned a fai...
unsigned is_brush
video is in ANBR format
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
static void decodeplane32(uint32_t *dst, const uint8_t *buf, int buf_size, int plane)
Decode interleaved plane buffer up to 24bpp.
unsigned compression
delta compression method used
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
This structure describes decoded (raw) audio or video data.
ptrdiff_t const GLvoid * data
uint32_t * mask_palbuf
masking palette table
#define AV_LOG_WARNING
Something somehow does not look correct.
unsigned masking
TODO: masking method used.
static av_cold int init(AVCodecContext *avctx)
int av_get_bits_per_pixel(const AVPixFmtDescriptor *pixdesc)
Return the number of bits per pixel used by the pixel format described by pixdesc.
unsigned transparency
TODO: transparency color index in palette.
static int cmap_read_palette(AVCodecContext *avctx, uint32_t *pal)
Convert CMAP buffer (stored in extradata) to lavc palette format.
static av_always_inline void bytestream2_init_writer(PutByteContext *p, uint8_t *buf, int buf_size)
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
static av_always_inline void bytestream2_init(GetByteContext *g, const uint8_t *buf, int buf_size)
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_WB64 unsigned int_TMPL AV_WB32 unsigned int_TMPL AV_WB24 unsigned int_TMPL AV_RB16
#define AV_PIX_FMT_RGB444
unsigned flags
1 for EHB, 0 is no extra half darkening
unsigned is_short
short compression method used
static void decode(AVCodecContext *dec_ctx, AVPacket *pkt, AVFrame *frame, FILE *outfile)
static void decode_delta_e(uint8_t *dst, const uint8_t *buf, const uint8_t *buf_end, int w, int flag, int bpp, int dst_size)
static void decodeplane8(uint8_t *dst, const uint8_t *buf, int buf_size, int plane)
Decode interleaved plane buffer up to 8bpp.
uint32_t * mask_buf
temporary buffer for palette indices
void * av_calloc(size_t nmemb, size_t size)
Non-inlined equivalent of av_mallocz_array().
#define DECODE_HAM_PLANE32(x)
static av_cold int decode_end(AVCodecContext *avctx)
void void avpriv_request_sample(void *avc, const char *msg,...) av_printf_format(2
Log a generic warning message about a missing feature.
static void decode_deep_tvdc32(uint8_t *dst, const uint8_t *src, int src_size, int width, int height, int linesize, const int16_t *tvdc)
Decode DEEP TVDC 32-bit buffer.
8 bits with AV_PIX_FMT_RGB32 palette
uint8_t * ham_buf
temporary buffer for planar to chunky conversation
static const OptionGroupDef groups[]
uint8_t * extradata
some codecs need / can use extradata like Huffman tables.
int bits_per_coded_sample
bits per sample/pixel from the demuxer (needed for huffyuv).
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
static av_always_inline unsigned int bytestream2_get_bytes_left_p(PutByteContext *p)
static const uint16_t mask[17]
static av_always_inline void bytestream2_skip(GetByteContext *g, unsigned int size)
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
static av_always_inline unsigned int bytestream2_get_buffer(GetByteContext *g, uint8_t *dst, unsigned int size)
static av_always_inline unsigned int bytestream2_get_bytes_left(GetByteContext *g)
#define AV_PIX_FMT_0BGR32
const char * name
Name of the codec implementation.
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_RL24
static const uint8_t offset[127][2]
unsigned is_interlaced
video is interlaced
int flags
A combination of AV_PKT_FLAG values.
static av_always_inline void bytestream2_skip_p(PutByteContext *p, unsigned int size)
int av_image_check_size(unsigned int w, unsigned int h, int log_offset, void *log_ctx)
Check if the given dimension of an image is valid, meaning that all bytes of the image can be address...
enum AVPictureType pict_type
Picture type of the frame.
static void decode_short_vertical_delta(uint8_t *dst, const uint8_t *buf, const uint8_t *buf_end, int w, int bpp, int dst_size)
int width
picture width / height.
GLsizei GLboolean const GLfloat * value
static void decode_short_horizontal_delta(uint8_t *dst, const uint8_t *buf, const uint8_t *buf_end, int w, int bpp, int dst_size)
static int decode_byterun(uint8_t *dst, int dst_size, GetByteContext *gb)
Decode one complete byterun1 encoded line.
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
static av_always_inline int bytestream2_seek_p(PutByteContext *p, int offset, int whence)
static av_always_inline int bytestream2_tell(GetByteContext *g)
static void decode_long_vertical_delta(uint8_t *dst, const uint8_t *buf, const uint8_t *buf_end, int w, int bpp, int dst_size)
Libavcodec external API header.
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_WB64 unsigned int_TMPL AV_WB32 unsigned int_TMPL AV_RB24
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
AVCodec ff_iff_ilbm_decoder
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
#define DECODE_RGBX_COMMON(type)
main external API structure.
static void decode_short_vertical_delta2(uint8_t *dst, const uint8_t *buf, const uint8_t *buf_end, int w, int bpp, int dst_size)
unsigned int codec_tag
fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A').
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame.
static void decode_delta_j(uint8_t *dst, const uint8_t *buf, const uint8_t *buf_end, int w, int h, int bpp, int dst_size)
static av_always_inline uint32_t gray2rgb(const uint32_t x)
static void decode_rgbn(GetByteContext *gb, uint8_t *dst, int width, int height, int linesize)
Decode RGBN buffer.
static void decode_long_vertical_delta2(uint8_t *dst, const uint8_t *buf, const uint8_t *buf_end, int w, int bpp, int dst_size)
static void decode_delta_l(uint8_t *dst, const uint8_t *buf, const uint8_t *buf_end, int w, int flag, int bpp, int dst_size)
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
static void decode_byte_vertical_delta(uint8_t *dst, const uint8_t *buf, const uint8_t *buf_end, int w, int xor, int bpp, int dst_size)
common internal api header.
unsigned ham
0 if non-HAM or number of hold bits (6 for bpp > 6, 4 otherwise)
static const uint32_t plane32_lut[32][16 *4]
static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
static void decode_delta_d(uint8_t *dst, const uint8_t *buf, const uint8_t *buf_end, int w, int flag, int bpp, int dst_size)
static void decode_rgb8(GetByteContext *gb, uint8_t *dst, int width, int height, int linesize)
Decode RGB8 buffer.
static void decode_ham_plane32(uint32_t *dst, const uint8_t *buf, const uint32_t *const pal, unsigned buf_size)
Converts one line of HAM6/8-encoded chunky buffer to 24bpp.
#define MKBETAG(a, b, c, d)
#define AV_INPUT_BUFFER_PADDING_SIZE
Required number of additionally allocated bytes at the end of the input bitstream for decoding...
static av_cold int decode_init(AVCodecContext *avctx)
static const uint64_t plane8_lut[8][256]
int key_frame
1 -> keyframe, 0-> not
static int decode_byterun2(uint8_t *dst, int height, int line_size, GetByteContext *gb)
#define FFSWAP(type, a, b)
static int extract_header(AVCodecContext *const avctx, const AVPacket *const avpkt)
Extracts the IFF extra context and updates internal decoder structures.
static void lookup_pal_indicies(uint32_t *dst, const uint32_t *buf, const uint32_t *const pal, unsigned width)
int16_t tvdc[16]
TVDC lookup table.
static int unsupported(AVCodecContext *avctx)
#define MKTAG(a, b, c, d)
This structure stores compressed data.
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
uint32_t * ham_palbuf
HAM decode table.
unsigned bpp
bits per plane to decode (differs from bits_per_coded_sample if HAM)
static void decode_deep_rle32(uint8_t *dst, const uint8_t *src, int src_size, int width, int height, int linesize)
Decode DEEP RLE 32-bit buffer.