43 #define BITSTREAM_READER_LE
53 #define VP8X_FLAG_ANIMATION 0x02
54 #define VP8X_FLAG_XMP_METADATA 0x04
55 #define VP8X_FLAG_EXIF_METADATA 0x08
56 #define VP8X_FLAG_ALPHA 0x10
57 #define VP8X_FLAG_ICC 0x20
59 #define MAX_PALETTE_SIZE 256
60 #define MAX_CACHE_BITS 11
61 #define NUM_CODE_LENGTH_CODES 19
62 #define HUFFMAN_CODES_PER_META_CODE 5
63 #define NUM_LITERAL_CODES 256
64 #define NUM_LENGTH_CODES 24
65 #define NUM_DISTANCE_CODES 40
66 #define NUM_SHORT_DISTANCES 120
67 #define MAX_HUFFMAN_CODE_LENGTH 15
76 17, 18, 0, 1, 2, 3, 4, 5, 16, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15
80 { 0, 1 }, { 1, 0 }, { 1, 1 }, { -1, 1 }, { 0, 2 }, { 2, 0 }, { 1, 2 }, { -1, 2 },
81 { 2, 1 }, { -2, 1 }, { 2, 2 }, { -2, 2 }, { 0, 3 }, { 3, 0 }, { 1, 3 }, { -1, 3 },
82 { 3, 1 }, { -3, 1 }, { 2, 3 }, { -2, 3 }, { 3, 2 }, { -3, 2 }, { 0, 4 }, { 4, 0 },
83 { 1, 4 }, { -1, 4 }, { 4, 1 }, { -4, 1 }, { 3, 3 }, { -3, 3 }, { 2, 4 }, { -2, 4 },
84 { 4, 2 }, { -4, 2 }, { 0, 5 }, { 3, 4 }, { -3, 4 }, { 4, 3 }, { -4, 3 }, { 5, 0 },
85 { 1, 5 }, { -1, 5 }, { 5, 1 }, { -5, 1 }, { 2, 5 }, { -2, 5 }, { 5, 2 }, { -5, 2 },
86 { 4, 4 }, { -4, 4 }, { 3, 5 }, { -3, 5 }, { 5, 3 }, { -5, 3 }, { 0, 6 }, { 6, 0 },
87 { 1, 6 }, { -1, 6 }, { 6, 1 }, { -6, 1 }, { 2, 6 }, { -2, 6 }, { 6, 2 }, { -6, 2 },
88 { 4, 5 }, { -4, 5 }, { 5, 4 }, { -5, 4 }, { 3, 6 }, { -3, 6 }, { 6, 3 }, { -6, 3 },
89 { 0, 7 }, { 7, 0 }, { 1, 7 }, { -1, 7 }, { 5, 5 }, { -5, 5 }, { 7, 1 }, { -7, 1 },
90 { 4, 6 }, { -4, 6 }, { 6, 4 }, { -6, 4 }, { 2, 7 }, { -2, 7 }, { 7, 2 }, { -7, 2 },
91 { 3, 7 }, { -3, 7 }, { 7, 3 }, { -7, 3 }, { 5, 6 }, { -5, 6 }, { 6, 5 }, { -6, 5 },
92 { 8, 0 }, { 4, 7 }, { -4, 7 }, { 7, 4 }, { -7, 4 }, { 8, 1 }, { 8, 2 }, { 6, 6 },
93 { -6, 6 }, { 8, 3 }, { 5, 7 }, { -5, 7 }, { 7, 5 }, { -7, 5 }, { 8, 4 }, { 6, 7 },
94 { -6, 7 }, { 7, 6 }, { -7, 6 }, { 8, 5 }, { 7, 7 }, { -7, 7 }, { 8, 6 }, { 8, 7 }
211 #define GET_PIXEL(frame, x, y) \
212 ((frame)->data[0] + (y) * frame->linesize[0] + 4 * (x))
214 #define GET_PIXEL_COMP(frame, x, y, c) \
215 (*((frame)->data[0] + (y) * frame->linesize[0] + 4 * (x) + c))
231 memset(img, 0,
sizeof(*img));
286 int len = 0, sym, code = 0,
ret;
287 int max_code_length = 0;
291 for (sym = 0; sym < alphabet_size; sym++) {
292 if (code_lengths[sym] > 0) {
306 for (sym = 0; sym < alphabet_size; sym++)
307 max_code_length =
FFMAX(max_code_length, code_lengths[sym]);
318 for (len = 1; len <= max_code_length; len++) {
319 for (sym = 0; sym < alphabet_size; sym++) {
320 if (code_lengths[sym] != len)
333 code_lengths,
sizeof(*code_lengths),
sizeof(*code_lengths),
334 codes,
sizeof(*codes),
sizeof(*codes), 0);
363 HuffReader code_len_hc = { { 0 }, 0, 0, { 0 } };
364 int *code_lengths =
NULL;
366 int i, symbol, max_symbol, prev_code_len,
ret;
372 for (i = 0; i < num_codes; i++)
389 if (max_symbol > alphabet_size) {
391 max_symbol, alphabet_size);
396 max_symbol = alphabet_size;
401 while (symbol < alphabet_size) {
409 code_lengths[symbol++] = code_len;
411 prev_code_len = code_len;
413 int repeat = 0,
length = 0;
433 if (symbol + repeat > alphabet_size) {
435 "invalid symbol %d + repeat %d > alphabet size %d\n",
436 symbol, repeat, alphabet_size);
441 code_lengths[symbol++] =
length;
456 #define PARSE_BLOCK_SIZE(w, h) do { \
457 block_bits = get_bits(&s->gb, 3) + 2; \
458 blocks_w = FFALIGN((w), 1 << block_bits) >> block_bits; \
459 blocks_h = FFALIGN((h), 1 << block_bits) >> block_bits; \
465 int ret, block_bits,
width, blocks_w, blocks_h, x,
y, max;
487 int p = p0 << 8 | p1;
498 int block_bits, blocks_w, blocks_h,
ret;
514 int block_bits, blocks_w, blocks_h,
ret;
531 int width_bits, index_size,
ret, x;
538 else if (index_size <= 4)
540 else if (index_size <= 16)
557 for (x = 4; x < img->
frame->
width * 4; x++, ct++)
574 group = g0 << 8 | g1;
593 img = &s->
image[role];
689 if (prefix_code < 4) {
690 length = prefix_code + 1;
693 int offset = 2 + (prefix_code & 1) << extra_bits;
694 length = offset +
get_bits(&s->
gb, extra_bits) + 1;
697 if (prefix_code > 39) {
699 "distance prefix code too large: %d\n", prefix_code);
702 if (prefix_code < 4) {
703 distance = prefix_code + 1;
706 int offset = 2 + (prefix_code & 1) << extra_bits;
707 distance = offset +
get_bits(&s->
gb, extra_bits) + 1;
714 distance =
FFMAX(1, xi + yi * width);
727 while (distance >= width) {
735 ref_x =
FFMAX(0, ref_x);
736 ref_y =
FFMAX(0, ref_y);
741 for (i = 0; i <
length; i++) {
754 if (ref_x == width) {
772 "color cache index out-of-bounds\n");
826 p[0] = p_t[0] + (p_l[0] + p_tr[0] >> 1) >> 1;
827 p[1] = p_t[1] + (p_l[1] + p_tr[1] >> 1) >> 1;
828 p[2] = p_t[2] + (p_l[2] + p_tr[2] >> 1) >> 1;
829 p[3] = p_t[3] + (p_l[3] + p_tr[3] >> 1) >> 1;
836 p[0] = p_l[0] + p_tl[0] >> 1;
837 p[1] = p_l[1] + p_tl[1] >> 1;
838 p[2] = p_l[2] + p_tl[2] >> 1;
839 p[3] = p_l[3] + p_tl[3] >> 1;
846 p[0] = p_l[0] + p_t[0] >> 1;
847 p[1] = p_l[1] + p_t[1] >> 1;
848 p[2] = p_l[2] + p_t[2] >> 1;
849 p[3] = p_l[3] + p_t[3] >> 1;
856 p[0] = p_tl[0] + p_t[0] >> 1;
857 p[1] = p_tl[1] + p_t[1] >> 1;
858 p[2] = p_tl[2] + p_t[2] >> 1;
859 p[3] = p_tl[3] + p_t[3] >> 1;
866 p[0] = p_t[0] + p_tr[0] >> 1;
867 p[1] = p_t[1] + p_tr[1] >> 1;
868 p[2] = p_t[2] + p_tr[2] >> 1;
869 p[3] = p_t[3] + p_tr[3] >> 1;
876 p[0] = (p_l[0] + p_tl[0] >> 1) + (p_t[0] + p_tr[0] >> 1) >> 1;
877 p[1] = (p_l[1] + p_tl[1] >> 1) + (p_t[1] + p_tr[1] >> 1) >> 1;
878 p[2] = (p_l[2] + p_tl[2] >> 1) + (p_t[2] + p_tr[2] >> 1) >> 1;
879 p[3] = (p_l[3] + p_tl[3] >> 1) + (p_t[3] + p_tr[3] >> 1) >> 1;
887 (
FFABS(p_l[1] - p_tl[1]) -
FFABS(p_t[1] - p_tl[1])) +
888 (
FFABS(p_l[2] - p_tl[2]) -
FFABS(p_t[2] - p_tl[2])) +
889 (
FFABS(p_l[3] - p_tl[3]) -
FFABS(p_t[3] - p_tl[3]));
900 p[0] = av_clip_uint8(p_l[0] + p_t[0] - p_tl[0]);
901 p[1] = av_clip_uint8(p_l[1] + p_t[1] - p_tl[1]);
902 p[2] = av_clip_uint8(p_l[2] + p_t[2] - p_tl[2]);
903 p[3] = av_clip_uint8(p_l[3] + p_t[3] - p_tl[3]);
909 return av_clip_uint8(d + (d - c) / 2);
935 uint8_t *dec, *p_l, *p_tl, *p_t, *p_tr;
942 if (x == frame->
width - 1)
947 inverse_predict[
m](p, p_l, p_tl, p_t, p_tr);
977 "invalid predictor mode: %d\n", m);
1058 p[2] =
get_bits(&gb_g, pixel_bits);
1076 memset(palette + size, 0, 256 * 4 - size);
1103 int *got_frame,
uint8_t *data_start,
1104 unsigned int data_size,
int is_alpha_chunk)
1107 int w, h,
ret, i, used;
1109 if (!is_alpha_chunk) {
1118 if (!is_alpha_chunk) {
1160 if (used & (1 << transform)) {
1164 goto free_and_return;
1168 switch (transform) {
1180 goto free_and_return;
1189 goto free_and_return;
1208 goto free_and_return;
1231 dec = frame->
data[3] + 1;
1232 for (x = 1; x < frame->
width; x++, dec++)
1236 dec = frame->
data[3] + ls;
1237 for (y = 1; y < frame->
height; y++, dec += ls)
1238 *dec += *(dec - ls);
1243 for (y = 1; y < frame->
height; y++) {
1244 dec = frame->
data[3] + y * ls + 1;
1245 for (x = 1; x < frame->
width; x++, dec++)
1250 for (y = 1; y < frame->
height; y++) {
1251 dec = frame->
data[3] + y * ls + 1;
1252 for (x = 1; x < frame->
width; x++, dec++)
1253 *dec += *(dec - ls);
1257 for (y = 1; y < frame->
height; y++) {
1258 dec = frame->
data[3] + y * ls + 1;
1259 for (x = 1; x < frame->
width; x++, dec++)
1260 dec[0] += av_clip_uint8(*(dec - 1) + *(dec - ls) - *(dec - ls - 1));
1268 unsigned int data_size)
1277 for (y = 0; y < s->
height; y++)
1282 int alpha_got_frame = 0;
1289 data_start, data_size, 1);
1294 if (!alpha_got_frame) {
1300 for (y = 0; y < s->
height; y++) {
1303 for (x = 0; x < s->
width; x++) {
1320 int *got_frame,
uint8_t *data_start,
1321 unsigned int data_size)
1335 if (data_size > INT_MAX) {
1341 pkt.
data = data_start;
1342 pkt.
size = data_size;
1361 uint32_t chunk_type, chunk_size;
1375 if (bytestream2_get_le32(&gb) !=
MKTAG(
'R',
'I',
'F',
'F')) {
1380 chunk_size = bytestream2_get_le32(&gb);
1384 if (bytestream2_get_le32(&gb) !=
MKTAG(
'W',
'E',
'B',
'P')) {
1391 char chunk_str[5] = { 0 };
1393 chunk_type = bytestream2_get_le32(&gb);
1394 chunk_size = bytestream2_get_le32(&gb);
1395 if (chunk_size == UINT32_MAX)
1397 chunk_size += chunk_size & 1;
1402 switch (chunk_type) {
1403 case MKTAG(
'V',
'P',
'8',
' '):
1413 case MKTAG(
'V',
'P',
'8',
'L'):
1423 case MKTAG(
'V',
'P',
'8',
'X'):
1424 vp8x_flags = bytestream2_get_byte(&gb);
1426 s->
width = bytestream2_get_le24(&gb) + 1;
1427 s->
height = bytestream2_get_le24(&gb) + 1;
1432 case MKTAG(
'A',
'L',
'P',
'H'): {
1433 int alpha_header, filter_m, compression;
1437 "ALPHA chunk present, but alpha bit not set in the "
1440 if (chunk_size == 0) {
1444 alpha_header = bytestream2_get_byte(&gb);
1449 filter_m = (alpha_header >> 2) & 0x03;
1450 compression = alpha_header & 0x03;
1454 "skipping unsupported ALPHA chunk\n");
1463 case MKTAG(
'E',
'X',
'I',
'F'): {
1473 "EXIF chunk present, but Exif bit not set in the "
1478 avpkt->
size - exif_offset);
1498 case MKTAG(
'I',
'C',
'C',
'P'):
1499 case MKTAG(
'A',
'N',
'I',
'M'):
1500 case MKTAG(
'A',
'N',
'M',
'F'):
1501 case MKTAG(
'X',
'M',
'P',
' '):
1502 AV_WL32(chunk_str, chunk_type);
1508 AV_WL32(chunk_str, chunk_type);