55 #define HAS_IFRAME_IMAGE 0x02
56 #define HAS_PALLET_INFO 0x01
58 #define COLORSPACE_BGR 0x00
59 #define COLORSPACE_15_7 0x10
60 #define HAS_DIFF_BLOCKS 0x04
61 #define ZLIB_PRIME_COMPRESS_CURRENT 0x02
62 #define ZLIB_PRIME_COMPRESS_PREVIOUS 0x01
114 #ifndef FLASHSV2_DUMB
145 for (col = 0; col < s->
cols; col++) {
146 for (row = 0; row < s->
rows; row++) {
147 b = blocks + (col + row * s->
cols);
152 b->
height = (row < s->rows - 1) ?
161 databuf += !databuf ? 0 : b->
width * b->
height * 6;
168 #ifndef FLASHSV2_DUMB
169 s->diff_blocks = 0.1;
173 s->raw_size = s->comp_size = s->uncomp_size = 10;
188 "Compression level should be 0-9, not %d\n", s->
comp);
193 if ((avctx->
width > 4095) || (avctx->
height > 4095)) {
195 "Input dimensions too large, input must be max 4096x4096 !\n");
200 "Input dimensions too small, input must be at least 16x16 !\n");
241 #ifndef FLASHSV2_DUMB
265 for (i = 0; i < s->
rows * s->
cols; i++) {
300 buf[buf_pos++] = s->
flags;
323 if (buf_size < block_size + 2)
326 buf[buf_pos++] = block_size >> 8;
327 buf[buf_pos++] = block_size;
332 buf[buf_pos++] = b->
flags;
335 buf[buf_pos++] = (b->
start);
336 buf[buf_pos++] = (b->
len);
341 buf[buf_pos++] = (b->
col);
342 buf[buf_pos++] = (b->
row);
355 return res == Z_OK ? 0 : -1;
359 int *buf_size,
int comp)
366 res = deflateInit(&s, comp);
370 s.next_in = prime->
enc;
372 while (s.avail_in > 0) {
374 s.avail_out = *buf_size;
375 res = deflate(&s, Z_SYNC_FLUSH);
383 s.avail_out = *buf_size;
384 res = deflate(&s, Z_FINISH);
386 *buf_size -= s.avail_out;
387 if (res != Z_STREAM_END)
396 for (i = 0; i < b->
start; i++)
397 memcpy(ptr + i * b->
width * 3, src + i * stride, b->
width * 3);
400 memcpy(ptr + i * b->
width * 3, src + i * stride, b->
width * 3);
402 for (; i < b->
height; i++)
403 memcpy(ptr + i * b->
width * 3, src + i * stride, b->
width * 3);
410 return (src[0] >> 3) | ((src[1] & 0xf8) << 2) | ((src[2] & 0xf8) << 7);
415 unsigned int t1 = (c1 & 0x000000ff) + ((c1 & 0x0000ff00) >> 8) + ((c1 & 0x00ff0000) >> 16);
416 unsigned int t2 = (c2 & 0x000000ff) + ((c2 & 0x0000ff00) >> 8) + ((c2 & 0x00ff0000) >> 16);
418 return abs(t1 - t2) + abs((c1 & 0x000000ff) - (c2 & 0x000000ff)) +
419 abs(((c1 & 0x0000ff00) >> 8) - ((c2 & 0x0000ff00) >> 8)) +
420 abs(((c1 & 0x00ff0000) >> 16) - ((c2 & 0x00ff0000) >> 16));
425 return palette->
index[c15];
430 int i,
min = 0x7fffffff;
432 for (i = 0; i < 128; i++) {
445 return (src[0]) | (src[1] << 8) | (src[2] << 16);
456 if (dist + d15 >= d7) {
460 dest[0] = 0x80 | (c15 >> 8);
461 dest[1] = c15 & 0xff;
469 unsigned int bgr, c15,
index;
470 for (r = 4; r < 256; r += 8) {
471 for (g = 4; g < 256; g += 8) {
472 for (b = 4; b < 256; b += 8) {
473 bgr = b | (g << 8) | (r << 16);
474 c15 = (b >> 3) | ((g & 0xf8) << 2) | ((r & 0xf8) << 7);
485 0x00000000, 0x00333333, 0x00666666, 0x00999999, 0x00CCCCCC, 0x00FFFFFF,
486 0x00330000, 0x00660000, 0x00990000, 0x00CC0000, 0x00FF0000, 0x00003300,
487 0x00006600, 0x00009900, 0x0000CC00, 0x0000FF00, 0x00000033, 0x00000066,
488 0x00000099, 0x000000CC, 0x000000FF, 0x00333300, 0x00666600, 0x00999900,
489 0x00CCCC00, 0x00FFFF00, 0x00003333, 0x00006666, 0x00009999, 0x0000CCCC,
490 0x0000FFFF, 0x00330033, 0x00660066, 0x00990099, 0x00CC00CC, 0x00FF00FF,
491 0x00FFFF33, 0x00FFFF66, 0x00FFFF99, 0x00FFFFCC, 0x00FF33FF, 0x00FF66FF,
492 0x00FF99FF, 0x00FFCCFF, 0x0033FFFF, 0x0066FFFF, 0x0099FFFF, 0x00CCFFFF,
493 0x00CCCC33, 0x00CCCC66, 0x00CCCC99, 0x00CCCCFF, 0x00CC33CC, 0x00CC66CC,
494 0x00CC99CC, 0x00CCFFCC, 0x0033CCCC, 0x0066CCCC, 0x0099CCCC, 0x00FFCCCC,
495 0x00999933, 0x00999966, 0x009999CC, 0x009999FF, 0x00993399, 0x00996699,
496 0x0099CC99, 0x0099FF99, 0x00339999, 0x00669999, 0x00CC9999, 0x00FF9999,
497 0x00666633, 0x00666699, 0x006666CC, 0x006666FF, 0x00663366, 0x00669966,
498 0x0066CC66, 0x0066FF66, 0x00336666, 0x00996666, 0x00CC6666, 0x00FF6666,
499 0x00333366, 0x00333399, 0x003333CC, 0x003333FF, 0x00336633, 0x00339933,
500 0x0033CC33, 0x0033FF33, 0x00663333, 0x00993333, 0x00CC3333, 0x00FF3333,
501 0x00003366, 0x00336600, 0x00660033, 0x00006633, 0x00330066, 0x00663300,
502 0x00336699, 0x00669933, 0x00993366, 0x00339966, 0x00663399, 0x00996633,
503 0x006699CC, 0x0099CC66, 0x00CC6699, 0x0066CC99, 0x009966CC, 0x00CC9966,
504 0x0099CCFF, 0x00CCFF99, 0x00FF99CC, 0x0099FFCC, 0x00CC99FF, 0x00FFCC99,
505 0x00111111, 0x00222222, 0x00444444, 0x00555555, 0x00AAAAAA, 0x00BBBBBB,
506 0x00DDDDDD, 0x00EEEEEE
528 for (x = 0; x <
width; x++) {
539 for (i = 0; i < b->
start; i++)
545 for (; i < b->
height; i++)
553 int dist,
int keyframe)
576 if (buf_size < b->data_size) {
578 memcpy(b->
data, buf, buf_size);
591 if (memcmp(src, frame, b->
width * 3) != 0) {
593 memcpy(frame, src, b->
width * 3);
594 #ifndef FLASHSV2_DUMB
598 if (memcmp(src, key, b->
width * 3) != 0) {
609 int sl, rsl, col, pos, possl;
612 for (col = 0; col < s->
cols; col++) {
621 #ifndef FLASHSV2_DUMB
632 for (row = 0; row < s->
rows; row++) {
633 for (col = 0; col < s->
cols; col++) {
640 }
else if (!b->
dirty) {
650 #ifndef FLASHSV2_DUMB
660 #ifndef FLASHSV2_DUMB
670 int row, col, buf_pos = 0,
len;
672 for (row = 0; row < s->
rows; row++) {
673 for (col = 0; col < s->
cols; col++) {
707 #ifndef FLASHSV2_DUMB
708 s->total_bits += ((double) buf_pos) * 8.0;
716 #ifndef FLASHSV2_DUMB
717 double block_ratio, line_ratio, enc_ratio, comp_ratio, data_ratio;
719 block_ratio = s->diff_blocks / s->tot_blocks;
720 line_ratio = s->diff_lines / s->tot_lines;
721 enc_ratio = s->uncomp_size / s->raw_size;
722 comp_ratio = s->comp_size / s->uncomp_size;
723 data_ratio = s->comp_size / s->raw_size;
725 if ((block_ratio >= 0.5 && line_ratio / block_ratio <= 0.5) || line_ratio >= 0.95) {
738 #ifndef FLASHSV2_DUMB
739 double save = (1-pow(s->diff_lines/s->diff_blocks/s->
block_height, 0.5)) * s->comp_size/s->tot_blocks;
741 int pwidth = ((int)
width);
742 return FFCLIP(pwidth & ~15, 256, 16);
750 #ifndef FLASHSV2_DUMB
751 double save = (1-pow(s->diff_lines/s->diff_blocks/s->
block_height, 0.5)) * s->comp_size/s->tot_blocks;
753 int pheight = ((int)
height);
754 return FFCLIP(pheight & ~15, 256, 16);
764 #ifndef FLASHSV2_DUMB
767 if (ideal + use15_7_threshold < s->total_bits) {
781 #ifndef FLASHSV2_DUMB
797 int update_palette = 0;
851 const AVFrame *p,
int *got_packet)