You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

914 lines
28KB

  1. /*
  2. * Flash Screen Video Version 2 encoder
  3. * Copyright (C) 2009 Joshua Warner
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. /**
  22. * @file
  23. * Flash Screen Video Version 2 encoder
  24. * @author Joshua Warner
  25. */
  26. /* Differences from version 1 stream:
  27. * NOTE: Currently, the only player that supports version 2 streams is Adobe Flash Player itself.
  28. * * Supports sending only a range of scanlines in a block,
  29. * indicating a difference from the corresponding block in the last keyframe.
  30. * * Supports initializing the zlib dictionary with data from the corresponding
  31. * block in the last keyframe, to improve compression.
  32. * * Supports a hybrid 15-bit rgb / 7-bit palette color space.
  33. */
  34. /* TODO:
  35. * Don't keep Block structures for both current frame and keyframe.
  36. * Make better heuristics for deciding stream parameters (optimum_* functions). Currently these return constants.
  37. * Figure out how to encode palette information in the stream, choose an optimum palette at each keyframe.
  38. * Figure out how the zlibPrimeCompressCurrent flag works, implement support.
  39. * Find other sample files (that weren't generated here), develop a decoder.
  40. */
  41. #include <stdio.h>
  42. #include <stdlib.h>
  43. #include <zlib.h>
  44. #include "libavutil/imgutils.h"
  45. #include "avcodec.h"
  46. #include "internal.h"
  47. #include "put_bits.h"
  48. #include "bytestream.h"
  49. #define HAS_IFRAME_IMAGE 0x02
  50. #define HAS_PALLET_INFO 0x01
  51. #define COLORSPACE_BGR 0x00
  52. #define COLORSPACE_15_7 0x10
  53. #define HAS_DIFF_BLOCKS 0x04
  54. #define ZLIB_PRIME_COMPRESS_CURRENT 0x02
  55. #define ZLIB_PRIME_COMPRESS_PREVIOUS 0x01
  56. // Disables experimental "smart" parameter-choosing code, as well as the statistics that it depends on.
  57. // At the moment, the "smart" code is a great example of how the parameters *shouldn't* be chosen.
  58. #define FLASHSV2_DUMB
  59. typedef struct Block {
  60. uint8_t *enc;
  61. uint8_t *sl_begin, *sl_end;
  62. int enc_size;
  63. uint8_t *data;
  64. unsigned long data_size;
  65. uint8_t start, len;
  66. uint8_t dirty;
  67. uint8_t col, row, width, height;
  68. uint8_t flags;
  69. } Block;
  70. typedef struct Palette {
  71. unsigned colors[128];
  72. uint8_t index[1 << 15];
  73. } Palette;
  74. typedef struct FlashSV2Context {
  75. AVCodecContext *avctx;
  76. uint8_t *current_frame;
  77. uint8_t *key_frame;
  78. AVFrame frame;
  79. uint8_t *encbuffer;
  80. uint8_t *keybuffer;
  81. uint8_t *databuffer;
  82. Block *frame_blocks;
  83. Block *key_blocks;
  84. int frame_size;
  85. int blocks_size;
  86. int use15_7, dist, comp;
  87. int rows, cols;
  88. int last_key_frame;
  89. int image_width, image_height;
  90. int block_width, block_height;
  91. uint8_t flags;
  92. uint8_t use_custom_palette;
  93. uint8_t palette_type; ///< 0=>default, 1=>custom - changed when palette regenerated.
  94. Palette palette;
  95. #ifndef FLASHSV2_DUMB
  96. double tot_blocks; ///< blocks encoded since last keyframe
  97. double diff_blocks; ///< blocks that were different since last keyframe
  98. double tot_lines; ///< total scanlines in image since last keyframe
  99. double diff_lines; ///< scanlines that were different since last keyframe
  100. double raw_size; ///< size of raw frames since last keyframe
  101. double comp_size; ///< size of compressed data since last keyframe
  102. double uncomp_size; ///< size of uncompressed data since last keyframe
  103. double total_bits; ///< total bits written to stream so far
  104. #endif
  105. } FlashSV2Context;
  106. static av_cold void cleanup(FlashSV2Context * s)
  107. {
  108. av_freep(&s->encbuffer);
  109. av_freep(&s->keybuffer);
  110. av_freep(&s->databuffer);
  111. av_freep(&s->current_frame);
  112. av_freep(&s->key_frame);
  113. av_freep(&s->frame_blocks);
  114. av_freep(&s->key_blocks);
  115. }
  116. static void init_blocks(FlashSV2Context * s, Block * blocks,
  117. uint8_t * encbuf, uint8_t * databuf)
  118. {
  119. int row, col;
  120. Block *b;
  121. for (col = 0; col < s->cols; col++) {
  122. for (row = 0; row < s->rows; row++) {
  123. b = blocks + (col + row * s->cols);
  124. b->width = (col < s->cols - 1) ?
  125. s->block_width :
  126. s->image_width - col * s->block_width;
  127. b->height = (row < s->rows - 1) ?
  128. s->block_height :
  129. s->image_height - row * s->block_height;
  130. b->row = row;
  131. b->col = col;
  132. b->enc = encbuf;
  133. b->data = databuf;
  134. encbuf += b->width * b->height * 3;
  135. databuf += !databuf ? 0 : b->width * b->height * 6;
  136. }
  137. }
  138. }
  139. static void reset_stats(FlashSV2Context * s)
  140. {
  141. #ifndef FLASHSV2_DUMB
  142. s->diff_blocks = 0.1;
  143. s->tot_blocks = 1;
  144. s->diff_lines = 0.1;
  145. s->tot_lines = 1;
  146. s->raw_size = s->comp_size = s->uncomp_size = 10;
  147. #endif
  148. }
  149. static av_cold int flashsv2_encode_init(AVCodecContext * avctx)
  150. {
  151. FlashSV2Context *s = avctx->priv_data;
  152. s->avctx = avctx;
  153. s->comp = avctx->compression_level;
  154. if (s->comp == -1)
  155. s->comp = 9;
  156. if (s->comp < 0 || s->comp > 9) {
  157. av_log(avctx, AV_LOG_ERROR,
  158. "Compression level should be 0-9, not %d\n", s->comp);
  159. return -1;
  160. }
  161. if ((avctx->width > 4095) || (avctx->height > 4095)) {
  162. av_log(avctx, AV_LOG_ERROR,
  163. "Input dimensions too large, input must be max 4096x4096 !\n");
  164. return -1;
  165. }
  166. if (av_image_check_size(avctx->width, avctx->height, 0, avctx) < 0)
  167. return -1;
  168. s->last_key_frame = 0;
  169. s->image_width = avctx->width;
  170. s->image_height = avctx->height;
  171. s->block_width = (s->image_width / 12) & ~15;
  172. s->block_height = (s->image_height / 12) & ~15;
  173. if(!s->block_width)
  174. s->block_width = 1;
  175. if(!s->block_height)
  176. s->block_height = 1;
  177. s->rows = (s->image_height + s->block_height - 1) / s->block_height;
  178. s->cols = (s->image_width + s->block_width - 1) / s->block_width;
  179. s->frame_size = s->image_width * s->image_height * 3;
  180. s->blocks_size = s->rows * s->cols * sizeof(Block);
  181. s->encbuffer = av_mallocz(s->frame_size);
  182. s->keybuffer = av_mallocz(s->frame_size);
  183. s->databuffer = av_mallocz(s->frame_size * 6);
  184. s->current_frame = av_mallocz(s->frame_size);
  185. s->key_frame = av_mallocz(s->frame_size);
  186. s->frame_blocks = av_mallocz(s->blocks_size);
  187. s->key_blocks = av_mallocz(s->blocks_size);
  188. init_blocks(s, s->frame_blocks, s->encbuffer, s->databuffer);
  189. init_blocks(s, s->key_blocks, s->keybuffer, 0);
  190. reset_stats(s);
  191. #ifndef FLASHSV2_DUMB
  192. s->total_bits = 1;
  193. #endif
  194. s->use_custom_palette = 0;
  195. s->palette_type = -1; // so that the palette will be generated in reconfigure_at_keyframe
  196. if (!s->encbuffer || !s->keybuffer || !s->databuffer
  197. || !s->current_frame || !s->key_frame || !s->key_blocks
  198. || !s->frame_blocks) {
  199. av_log(avctx, AV_LOG_ERROR, "Memory allocation failed.\n");
  200. cleanup(s);
  201. return -1;
  202. }
  203. return 0;
  204. }
  205. static int new_key_frame(FlashSV2Context * s)
  206. {
  207. int i;
  208. memcpy(s->key_blocks, s->frame_blocks, s->blocks_size);
  209. memcpy(s->key_frame, s->current_frame, s->frame_size);
  210. for (i = 0; i < s->rows * s->cols; i++) {
  211. s->key_blocks[i].enc += (s->keybuffer - s->encbuffer);
  212. s->key_blocks[i].sl_begin = 0;
  213. s->key_blocks[i].sl_end = 0;
  214. s->key_blocks[i].data = 0;
  215. }
  216. FFSWAP(uint8_t * , s->keybuffer, s->encbuffer);
  217. return 0;
  218. }
  219. static int write_palette(FlashSV2Context * s, uint8_t * buf, int buf_size)
  220. {
  221. //this isn't implemented yet! Default palette only!
  222. return -1;
  223. }
  224. static int write_header(FlashSV2Context * s, uint8_t * buf, int buf_size)
  225. {
  226. PutBitContext pb;
  227. int buf_pos, len;
  228. if (buf_size < 5)
  229. return -1;
  230. init_put_bits(&pb, buf, buf_size * 8);
  231. put_bits(&pb, 4, (s->block_width >> 4) - 1);
  232. put_bits(&pb, 12, s->image_width);
  233. put_bits(&pb, 4, (s->block_height >> 4) - 1);
  234. put_bits(&pb, 12, s->image_height);
  235. flush_put_bits(&pb);
  236. buf_pos = 4;
  237. buf[buf_pos++] = s->flags;
  238. if (s->flags & HAS_PALLET_INFO) {
  239. len = write_palette(s, buf + buf_pos, buf_size - buf_pos);
  240. if (len < 0)
  241. return -1;
  242. buf_pos += len;
  243. }
  244. return buf_pos;
  245. }
  246. static int write_block(Block * b, uint8_t * buf, int buf_size)
  247. {
  248. int buf_pos = 0;
  249. unsigned block_size = b->data_size;
  250. if (b->flags & HAS_DIFF_BLOCKS)
  251. block_size += 2;
  252. if (b->flags & ZLIB_PRIME_COMPRESS_CURRENT)
  253. block_size += 2;
  254. if (block_size > 0)
  255. block_size += 1;
  256. if (buf_size < block_size + 2)
  257. return -1;
  258. buf[buf_pos++] = block_size >> 8;
  259. buf[buf_pos++] = block_size;
  260. if (block_size == 0)
  261. return buf_pos;
  262. buf[buf_pos++] = b->flags;
  263. if (b->flags & HAS_DIFF_BLOCKS) {
  264. buf[buf_pos++] = (b->start);
  265. buf[buf_pos++] = (b->len);
  266. }
  267. if (b->flags & ZLIB_PRIME_COMPRESS_CURRENT) {
  268. //This feature of the format is poorly understood, and as of now, unused.
  269. buf[buf_pos++] = (b->col);
  270. buf[buf_pos++] = (b->row);
  271. }
  272. memcpy(buf + buf_pos, b->data, b->data_size);
  273. buf_pos += b->data_size;
  274. return buf_pos;
  275. }
  276. static int encode_zlib(Block * b, uint8_t * buf, unsigned long *buf_size, int comp)
  277. {
  278. int res = compress2(buf, buf_size, b->sl_begin, b->sl_end - b->sl_begin, comp);
  279. return res == Z_OK ? 0 : -1;
  280. }
  281. static int encode_zlibprime(Block * b, Block * prime, uint8_t * buf,
  282. int *buf_size, int comp)
  283. {
  284. z_stream s;
  285. int res;
  286. s.zalloc = NULL;
  287. s.zfree = NULL;
  288. s.opaque = NULL;
  289. res = deflateInit(&s, comp);
  290. if (res < 0)
  291. return -1;
  292. s.next_in = prime->enc;
  293. s.avail_in = prime->enc_size;
  294. while (s.avail_in > 0) {
  295. s.next_out = buf;
  296. s.avail_out = *buf_size;
  297. res = deflate(&s, Z_SYNC_FLUSH);
  298. if (res < 0)
  299. return -1;
  300. }
  301. s.next_in = b->sl_begin;
  302. s.avail_in = b->sl_end - b->sl_begin;
  303. s.next_out = buf;
  304. s.avail_out = *buf_size;
  305. res = deflate(&s, Z_FINISH);
  306. deflateEnd(&s);
  307. *buf_size -= s.avail_out;
  308. if (res != Z_STREAM_END)
  309. return -1;
  310. return 0;
  311. }
  312. static int encode_bgr(Block * b, const uint8_t * src, int stride)
  313. {
  314. int i;
  315. uint8_t *ptr = b->enc;
  316. for (i = 0; i < b->start; i++)
  317. memcpy(ptr + i * b->width * 3, src + i * stride, b->width * 3);
  318. b->sl_begin = ptr + i * b->width * 3;
  319. for (; i < b->start + b->len; i++)
  320. memcpy(ptr + i * b->width * 3, src + i * stride, b->width * 3);
  321. b->sl_end = ptr + i * b->width * 3;
  322. for (; i < b->height; i++)
  323. memcpy(ptr + i * b->width * 3, src + i * stride, b->width * 3);
  324. b->enc_size = ptr + i * b->width * 3 - b->enc;
  325. return b->enc_size;
  326. }
  327. static inline unsigned pixel_color15(const uint8_t * src)
  328. {
  329. return (src[0] >> 3) | ((src[1] & 0xf8) << 2) | ((src[2] & 0xf8) << 7);
  330. }
  331. static inline unsigned int chroma_diff(unsigned int c1, unsigned int c2)
  332. {
  333. unsigned int t1 = (c1 & 0x000000ff) + ((c1 & 0x0000ff00) >> 8) + ((c1 & 0x00ff0000) >> 16);
  334. unsigned int t2 = (c2 & 0x000000ff) + ((c2 & 0x0000ff00) >> 8) + ((c2 & 0x00ff0000) >> 16);
  335. return abs(t1 - t2) + abs((c1 & 0x000000ff) - (c2 & 0x000000ff)) +
  336. abs(((c1 & 0x0000ff00) >> 8) - ((c2 & 0x0000ff00) >> 8)) +
  337. abs(((c1 & 0x00ff0000) >> 16) - ((c2 & 0x00ff0000) >> 16));
  338. }
  339. static inline int pixel_color7_fast(Palette * palette, unsigned c15)
  340. {
  341. return palette->index[c15];
  342. }
  343. static int pixel_color7_slow(Palette * palette, unsigned color)
  344. {
  345. int i, min = 0x7fffffff;
  346. int minc = -1;
  347. for (i = 0; i < 128; i++) {
  348. int c1 = palette->colors[i];
  349. int diff = chroma_diff(c1, color);
  350. if (diff < min) {
  351. min = diff;
  352. minc = i;
  353. }
  354. }
  355. return minc;
  356. }
  357. static inline unsigned pixel_bgr(const uint8_t * src)
  358. {
  359. return (src[0]) | (src[1] << 8) | (src[2] << 16);
  360. }
  361. static int write_pixel_15_7(Palette * palette, uint8_t * dest, const uint8_t * src,
  362. int dist)
  363. {
  364. unsigned c15 = pixel_color15(src);
  365. unsigned color = pixel_bgr(src);
  366. int d15 = chroma_diff(color, color & 0x00f8f8f8);
  367. int c7 = pixel_color7_fast(palette, c15);
  368. int d7 = chroma_diff(color, palette->colors[c7]);
  369. if (dist + d15 >= d7) {
  370. dest[0] = c7;
  371. return 1;
  372. } else {
  373. dest[0] = 0x80 | (c15 >> 8);
  374. dest[1] = c15 & 0xff;
  375. return 2;
  376. }
  377. }
  378. static int update_palette_index(Palette * palette)
  379. {
  380. int r, g, b;
  381. unsigned int bgr, c15, index;
  382. for (r = 4; r < 256; r += 8) {
  383. for (g = 4; g < 256; g += 8) {
  384. for (b = 4; b < 256; b += 8) {
  385. bgr = b | (g << 8) | (r << 16);
  386. c15 = (b >> 3) | ((g & 0xf8) << 2) | ((r & 0xf8) << 7);
  387. index = pixel_color7_slow(palette, bgr);
  388. palette->index[c15] = index;
  389. }
  390. }
  391. }
  392. return 0;
  393. }
  394. static const unsigned int default_screen_video_v2_palette[128] = {
  395. 0x00000000, 0x00333333, 0x00666666, 0x00999999, 0x00CCCCCC, 0x00FFFFFF,
  396. 0x00330000, 0x00660000, 0x00990000, 0x00CC0000, 0x00FF0000, 0x00003300,
  397. 0x00006600, 0x00009900, 0x0000CC00, 0x0000FF00, 0x00000033, 0x00000066,
  398. 0x00000099, 0x000000CC, 0x000000FF, 0x00333300, 0x00666600, 0x00999900,
  399. 0x00CCCC00, 0x00FFFF00, 0x00003333, 0x00006666, 0x00009999, 0x0000CCCC,
  400. 0x0000FFFF, 0x00330033, 0x00660066, 0x00990099, 0x00CC00CC, 0x00FF00FF,
  401. 0x00FFFF33, 0x00FFFF66, 0x00FFFF99, 0x00FFFFCC, 0x00FF33FF, 0x00FF66FF,
  402. 0x00FF99FF, 0x00FFCCFF, 0x0033FFFF, 0x0066FFFF, 0x0099FFFF, 0x00CCFFFF,
  403. 0x00CCCC33, 0x00CCCC66, 0x00CCCC99, 0x00CCCCFF, 0x00CC33CC, 0x00CC66CC,
  404. 0x00CC99CC, 0x00CCFFCC, 0x0033CCCC, 0x0066CCCC, 0x0099CCCC, 0x00FFCCCC,
  405. 0x00999933, 0x00999966, 0x009999CC, 0x009999FF, 0x00993399, 0x00996699,
  406. 0x0099CC99, 0x0099FF99, 0x00339999, 0x00669999, 0x00CC9999, 0x00FF9999,
  407. 0x00666633, 0x00666699, 0x006666CC, 0x006666FF, 0x00663366, 0x00669966,
  408. 0x0066CC66, 0x0066FF66, 0x00336666, 0x00996666, 0x00CC6666, 0x00FF6666,
  409. 0x00333366, 0x00333399, 0x003333CC, 0x003333FF, 0x00336633, 0x00339933,
  410. 0x0033CC33, 0x0033FF33, 0x00663333, 0x00993333, 0x00CC3333, 0x00FF3333,
  411. 0x00003366, 0x00336600, 0x00660033, 0x00006633, 0x00330066, 0x00663300,
  412. 0x00336699, 0x00669933, 0x00993366, 0x00339966, 0x00663399, 0x00996633,
  413. 0x006699CC, 0x0099CC66, 0x00CC6699, 0x0066CC99, 0x009966CC, 0x00CC9966,
  414. 0x0099CCFF, 0x00CCFF99, 0x00FF99CC, 0x0099FFCC, 0x00CC99FF, 0x00FFCC99,
  415. 0x00111111, 0x00222222, 0x00444444, 0x00555555, 0x00AAAAAA, 0x00BBBBBB,
  416. 0x00DDDDDD, 0x00EEEEEE
  417. };
  418. static int generate_default_palette(Palette * palette)
  419. {
  420. memcpy(palette->colors, default_screen_video_v2_palette,
  421. sizeof(default_screen_video_v2_palette));
  422. return update_palette_index(palette);
  423. }
  424. static int generate_optimum_palette(Palette * palette, const uint8_t * image,
  425. int width, int height, int stride)
  426. {
  427. //this isn't implemented yet! Default palette only!
  428. return -1;
  429. }
  430. static inline int encode_15_7_sl(Palette * palette, uint8_t * dest,
  431. const uint8_t * src, int width, int dist)
  432. {
  433. int len = 0, x;
  434. for (x = 0; x < width; x++) {
  435. len += write_pixel_15_7(palette, dest + len, src + 3 * x, dist);
  436. }
  437. return len;
  438. }
  439. static int encode_15_7(Palette * palette, Block * b, const uint8_t * src,
  440. int stride, int dist)
  441. {
  442. int i;
  443. uint8_t *ptr = b->enc;
  444. for (i = 0; i < b->start; i++)
  445. ptr += encode_15_7_sl(palette, ptr, src + i * stride, b->width, dist);
  446. b->sl_begin = ptr;
  447. for (; i < b->start + b->len; i++)
  448. ptr += encode_15_7_sl(palette, ptr, src + i * stride, b->width, dist);
  449. b->sl_end = ptr;
  450. for (; i < b->height; i++)
  451. ptr += encode_15_7_sl(palette, ptr, src + i * stride, b->width, dist);
  452. b->enc_size = ptr - b->enc;
  453. return b->enc_size;
  454. }
  455. static int encode_block(Palette * palette, Block * b, Block * prev,
  456. const uint8_t * src, int stride, int comp, int dist,
  457. int keyframe)
  458. {
  459. unsigned buf_size = b->width * b->height * 6;
  460. uint8_t buf[buf_size];
  461. int res;
  462. if (b->flags & COLORSPACE_15_7) {
  463. encode_15_7(palette, b, src, stride, dist);
  464. } else {
  465. encode_bgr(b, src, stride);
  466. }
  467. if (b->len > 0) {
  468. b->data_size = buf_size;
  469. res = encode_zlib(b, b->data, &b->data_size, comp);
  470. if (res)
  471. return res;
  472. if (!keyframe) {
  473. res = encode_zlibprime(b, prev, buf, &buf_size, comp);
  474. if (res)
  475. return res;
  476. if (buf_size < b->data_size) {
  477. b->data_size = buf_size;
  478. memcpy(b->data, buf, buf_size);
  479. b->flags |= ZLIB_PRIME_COMPRESS_PREVIOUS;
  480. }
  481. }
  482. } else {
  483. b->data_size = 0;
  484. }
  485. return 0;
  486. }
  487. static int compare_sl(FlashSV2Context * s, Block * b, const uint8_t * src,
  488. uint8_t * frame, uint8_t * key, int y, int keyframe)
  489. {
  490. if (memcmp(src, frame, b->width * 3) != 0) {
  491. b->dirty = 1;
  492. memcpy(frame, src, b->width * 3);
  493. #ifndef FLASHSV2_DUMB
  494. s->diff_lines++;
  495. #endif
  496. }
  497. if (memcmp(src, key, b->width * 3) != 0) {
  498. if (b->len == 0)
  499. b->start = y;
  500. b->len = y + 1 - b->start;
  501. }
  502. return 0;
  503. }
  504. static int mark_all_blocks(FlashSV2Context * s, const uint8_t * src, int stride,
  505. int keyframe)
  506. {
  507. int sl, rsl, col, pos, possl;
  508. Block *b;
  509. for (sl = s->image_height - 1; sl >= 0; sl--) {
  510. for (col = 0; col < s->cols; col++) {
  511. rsl = s->image_height - sl - 1;
  512. b = s->frame_blocks + col + rsl / s->block_height * s->cols;
  513. possl = stride * sl + col * s->block_width * 3;
  514. pos = s->image_width * rsl * 3 + col * s->block_width * 3;
  515. compare_sl(s, b, src + possl, s->current_frame + pos,
  516. s->key_frame + pos, rsl % s->block_height, keyframe);
  517. }
  518. }
  519. #ifndef FLASHSV2_DUMB
  520. s->tot_lines += s->image_height * s->cols;
  521. #endif
  522. return 0;
  523. }
  524. static int encode_all_blocks(FlashSV2Context * s, int keyframe)
  525. {
  526. int row, col, res;
  527. uint8_t *data;
  528. Block *b, *prev;
  529. for (row = 0; row < s->rows; row++) {
  530. for (col = 0; col < s->cols; col++) {
  531. b = s->frame_blocks + (row * s->cols + col);
  532. prev = s->key_blocks + (row * s->cols + col);
  533. if (keyframe) {
  534. b->start = 0;
  535. b->len = b->height;
  536. b->flags = s->use15_7 ? COLORSPACE_15_7 : 0;
  537. } else if (!b->dirty) {
  538. b->start = 0;
  539. b->len = 0;
  540. b->data_size = 0;
  541. b->flags = s->use15_7 ? COLORSPACE_15_7 : 0;
  542. continue;
  543. } else {
  544. b->flags = s->use15_7 ? COLORSPACE_15_7 | HAS_DIFF_BLOCKS : HAS_DIFF_BLOCKS;
  545. }
  546. data = s->current_frame + s->image_width * 3 * s->block_height * row + s->block_width * col * 3;
  547. res = encode_block(&s->palette, b, prev, data, s->image_width * 3, s->comp, s->dist, keyframe);
  548. #ifndef FLASHSV2_DUMB
  549. if (b->dirty)
  550. s->diff_blocks++;
  551. s->comp_size += b->data_size;
  552. s->uncomp_size += b->enc_size;
  553. #endif
  554. if (res)
  555. return res;
  556. }
  557. }
  558. #ifndef FLASHSV2_DUMB
  559. s->raw_size += s->image_width * s->image_height * 3;
  560. s->tot_blocks += s->rows * s->cols;
  561. #endif
  562. return 0;
  563. }
  564. static int write_all_blocks(FlashSV2Context * s, uint8_t * buf,
  565. int buf_size)
  566. {
  567. int row, col, buf_pos = 0, len;
  568. Block *b;
  569. for (row = 0; row < s->rows; row++) {
  570. for (col = 0; col < s->cols; col++) {
  571. b = s->frame_blocks + row * s->cols + col;
  572. len = write_block(b, buf + buf_pos, buf_size - buf_pos);
  573. b->start = b->len = b->dirty = 0;
  574. if (len < 0)
  575. return len;
  576. buf_pos += len;
  577. }
  578. }
  579. return buf_pos;
  580. }
  581. static int write_bitstream(FlashSV2Context * s, const uint8_t * src, int stride,
  582. uint8_t * buf, int buf_size, int keyframe)
  583. {
  584. int buf_pos, res;
  585. res = mark_all_blocks(s, src, stride, keyframe);
  586. if (res)
  587. return res;
  588. res = encode_all_blocks(s, keyframe);
  589. if (res)
  590. return res;
  591. res = write_header(s, buf, buf_size);
  592. if (res < 0) {
  593. return res;
  594. } else {
  595. buf_pos = res;
  596. }
  597. res = write_all_blocks(s, buf + buf_pos, buf_size - buf_pos);
  598. if (res < 0)
  599. return res;
  600. buf_pos += res;
  601. #ifndef FLASHSV2_DUMB
  602. s->total_bits += ((double) buf_pos) * 8.0;
  603. #endif
  604. return buf_pos;
  605. }
  606. static void recommend_keyframe(FlashSV2Context * s, int *keyframe)
  607. {
  608. #ifndef FLASHSV2_DUMB
  609. double block_ratio, line_ratio, enc_ratio, comp_ratio, data_ratio;
  610. if (s->avctx->gop_size > 0) {
  611. block_ratio = s->diff_blocks / s->tot_blocks;
  612. line_ratio = s->diff_lines / s->tot_lines;
  613. enc_ratio = s->uncomp_size / s->raw_size;
  614. comp_ratio = s->comp_size / s->uncomp_size;
  615. data_ratio = s->comp_size / s->raw_size;
  616. if ((block_ratio >= 0.5 && line_ratio / block_ratio <= 0.5) || line_ratio >= 0.95) {
  617. *keyframe = 1;
  618. return;
  619. }
  620. }
  621. #else
  622. return;
  623. #endif
  624. }
  625. static const double block_size_fraction = 1.0 / 300;
  626. static int optimum_block_width(FlashSV2Context * s)
  627. {
  628. #ifndef FLASHSV2_DUMB
  629. double save = (1-pow(s->diff_lines/s->diff_blocks/s->block_height, 0.5)) * s->comp_size/s->tot_blocks;
  630. double width = block_size_fraction * sqrt(0.5 * save * s->rows * s->cols) * s->image_width;
  631. int pwidth = ((int) width);
  632. return FFCLIP(pwidth & ~15, 256, 16);
  633. #else
  634. return 64;
  635. #endif
  636. }
  637. static int optimum_block_height(FlashSV2Context * s)
  638. {
  639. #ifndef FLASHSV2_DUMB
  640. double save = (1-pow(s->diff_lines/s->diff_blocks/s->block_height, 0.5)) * s->comp_size/s->tot_blocks;
  641. double height = block_size_fraction * sqrt(0.5 * save * s->rows * s->cols) * s->image_height;
  642. int pheight = ((int) height);
  643. return FFCLIP(pheight & ~15, 256, 16);
  644. #else
  645. return 64;
  646. #endif
  647. }
  648. static const double use15_7_threshold = 8192;
  649. static int optimum_use15_7(FlashSV2Context * s)
  650. {
  651. #ifndef FLASHSV2_DUMB
  652. double ideal = ((double)(s->avctx->bit_rate * s->avctx->time_base.den * s->avctx->ticks_per_frame)) /
  653. ((double) s->avctx->time_base.num) * s->avctx->frame_number;
  654. if (ideal + use15_7_threshold < s->total_bits) {
  655. return 1;
  656. } else {
  657. return 0;
  658. }
  659. #else
  660. return s->avctx->global_quality == 0;
  661. #endif
  662. }
  663. static const double color15_7_factor = 100;
  664. static int optimum_dist(FlashSV2Context * s)
  665. {
  666. #ifndef FLASHSV2_DUMB
  667. double ideal =
  668. s->avctx->bit_rate * s->avctx->time_base.den *
  669. s->avctx->ticks_per_frame;
  670. int dist = pow((s->total_bits / ideal) * color15_7_factor, 3);
  671. av_log(s->avctx, AV_LOG_DEBUG, "dist: %d\n", dist);
  672. return dist;
  673. #else
  674. return 15;
  675. #endif
  676. }
  677. static int reconfigure_at_keyframe(FlashSV2Context * s, const uint8_t * image,
  678. int stride)
  679. {
  680. int update_palette = 0;
  681. int res;
  682. s->block_width = optimum_block_width(s);
  683. s->block_height = optimum_block_height(s);
  684. s->rows = (s->image_height + s->block_height - 1) / s->block_height;
  685. s->cols = (s->image_width + s->block_width - 1) / s->block_width;
  686. if (s->rows * s->cols != s->blocks_size / sizeof(Block)) {
  687. if (s->rows * s->cols > s->blocks_size / sizeof(Block)) {
  688. s->frame_blocks = av_realloc(s->frame_blocks, s->rows * s->cols * sizeof(Block));
  689. s->key_blocks = av_realloc(s->key_blocks, s->cols * s->rows * sizeof(Block));
  690. if (!s->frame_blocks || !s->key_blocks) {
  691. av_log(s->avctx, AV_LOG_ERROR, "Memory allocation failed.\n");
  692. return -1;
  693. }
  694. s->blocks_size = s->rows * s->cols * sizeof(Block);
  695. }
  696. init_blocks(s, s->frame_blocks, s->encbuffer, s->databuffer);
  697. init_blocks(s, s->key_blocks, s->keybuffer, 0);
  698. }
  699. s->use15_7 = optimum_use15_7(s);
  700. if (s->use15_7) {
  701. if ((s->use_custom_palette && s->palette_type != 1) || update_palette) {
  702. res = generate_optimum_palette(&s->palette, image, s->image_width, s->image_height, stride);
  703. if (res)
  704. return res;
  705. s->palette_type = 1;
  706. av_log(s->avctx, AV_LOG_DEBUG, "Generated optimum palette\n");
  707. } else if (!s->use_custom_palette && s->palette_type != 0) {
  708. res = generate_default_palette(&s->palette);
  709. if (res)
  710. return res;
  711. s->palette_type = 0;
  712. av_log(s->avctx, AV_LOG_DEBUG, "Generated default palette\n");
  713. }
  714. }
  715. reset_stats(s);
  716. return 0;
  717. }
  718. static int flashsv2_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
  719. const AVFrame *pict, int *got_packet)
  720. {
  721. FlashSV2Context *const s = avctx->priv_data;
  722. AVFrame *const p = &s->frame;
  723. int res;
  724. int keyframe = 0;
  725. *p = *pict;
  726. if ((res = ff_alloc_packet2(avctx, pkt, s->frame_size + FF_MIN_BUFFER_SIZE)) < 0)
  727. return res;
  728. /* First frame needs to be a keyframe */
  729. if (avctx->frame_number == 0)
  730. keyframe = 1;
  731. /* Check the placement of keyframes */
  732. if (avctx->gop_size > 0) {
  733. if (avctx->frame_number >= s->last_key_frame + avctx->gop_size)
  734. keyframe = 1;
  735. }
  736. if (!keyframe
  737. && avctx->frame_number > s->last_key_frame + avctx->keyint_min) {
  738. recommend_keyframe(s, &keyframe);
  739. if (keyframe)
  740. av_log(avctx, AV_LOG_DEBUG, "Recommending key frame at frame %d\n", avctx->frame_number);
  741. }
  742. if (keyframe) {
  743. res = reconfigure_at_keyframe(s, p->data[0], p->linesize[0]);
  744. if (res)
  745. return res;
  746. }
  747. if (s->use15_7)
  748. s->dist = optimum_dist(s);
  749. res = write_bitstream(s, p->data[0], p->linesize[0], pkt->data, pkt->size, keyframe);
  750. if (keyframe) {
  751. new_key_frame(s);
  752. p->pict_type = AV_PICTURE_TYPE_I;
  753. p->key_frame = 1;
  754. s->last_key_frame = avctx->frame_number;
  755. pkt->flags |= AV_PKT_FLAG_KEY;
  756. av_log(avctx, AV_LOG_DEBUG, "Inserting key frame at frame %d\n", avctx->frame_number);
  757. } else {
  758. p->pict_type = AV_PICTURE_TYPE_P;
  759. p->key_frame = 0;
  760. }
  761. avctx->coded_frame = p;
  762. pkt->size = res;
  763. *got_packet = 1;
  764. return 0;
  765. }
  766. static av_cold int flashsv2_encode_end(AVCodecContext * avctx)
  767. {
  768. FlashSV2Context *s = avctx->priv_data;
  769. cleanup(s);
  770. return 0;
  771. }
  772. AVCodec ff_flashsv2_encoder = {
  773. .name = "flashsv2",
  774. .type = AVMEDIA_TYPE_VIDEO,
  775. .id = CODEC_ID_FLASHSV2,
  776. .priv_data_size = sizeof(FlashSV2Context),
  777. .init = flashsv2_encode_init,
  778. .encode2 = flashsv2_encode_frame,
  779. .close = flashsv2_encode_end,
  780. .pix_fmts = (enum PixelFormat[]) {PIX_FMT_BGR24, PIX_FMT_NONE},
  781. .long_name = NULL_IF_CONFIG_SMALL("Flash Screen Video Version 2"),
  782. .capabilities = CODEC_CAP_EXPERIMENTAL,
  783. };