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.

431 lines
14KB

  1. /*
  2. * a64 video encoder - multicolor modes
  3. * Copyright (c) 2009 Tobias Bindhammer
  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. * a64 video encoder - multicolor modes
  24. */
  25. #include "a64colors.h"
  26. #include "a64tables.h"
  27. #include "elbg.h"
  28. #include "internal.h"
  29. #include "libavutil/avassert.h"
  30. #include "libavutil/common.h"
  31. #include "libavutil/intreadwrite.h"
  32. #define DITHERSTEPS 8
  33. #define CHARSET_CHARS 256
  34. #define INTERLACED 1
  35. #define CROP_SCREENS 1
  36. #define C64XRES 320
  37. #define C64YRES 200
  38. typedef struct A64Context {
  39. /* variables for multicolor modes */
  40. AVLFG randctx;
  41. int mc_lifetime;
  42. int mc_use_5col;
  43. unsigned mc_frame_counter;
  44. int *mc_meta_charset;
  45. int *mc_charmap;
  46. int *mc_best_cb;
  47. int mc_luma_vals[5];
  48. uint8_t *mc_charset;
  49. uint8_t *mc_colram;
  50. uint8_t *mc_palette;
  51. int mc_pal_size;
  52. /* pts of the next packet that will be output */
  53. int64_t next_pts;
  54. } A64Context;
  55. /* gray gradient */
  56. static const uint8_t mc_colors[5]={0x0,0xb,0xc,0xf,0x1};
  57. /* other possible gradients - to be tested */
  58. //static const uint8_t mc_colors[5]={0x0,0x8,0xa,0xf,0x7};
  59. //static const uint8_t mc_colors[5]={0x0,0x9,0x8,0xa,0x3};
  60. static void to_meta_with_crop(AVCodecContext *avctx,
  61. const AVFrame *p, int *dest)
  62. {
  63. int blockx, blocky, x, y;
  64. int luma = 0;
  65. int height = FFMIN(avctx->height, C64YRES);
  66. int width = FFMIN(avctx->width , C64XRES);
  67. uint8_t *src = p->data[0];
  68. for (blocky = 0; blocky < C64YRES; blocky += 8) {
  69. for (blockx = 0; blockx < C64XRES; blockx += 8) {
  70. for (y = blocky; y < blocky + 8 && y < C64YRES; y++) {
  71. for (x = blockx; x < blockx + 8 && x < C64XRES; x += 2) {
  72. if(x < width && y < height) {
  73. if (x + 1 < width) {
  74. /* build average over 2 pixels */
  75. luma = (src[(x + 0 + y * p->linesize[0])] +
  76. src[(x + 1 + y * p->linesize[0])]) / 2;
  77. } else {
  78. luma = src[(x + y * p->linesize[0])];
  79. }
  80. /* write blocks as linear data now so they are suitable for elbg */
  81. dest[0] = luma;
  82. }
  83. dest++;
  84. }
  85. }
  86. }
  87. }
  88. }
  89. static void render_charset(AVCodecContext *avctx, uint8_t *charset,
  90. uint8_t *colrammap)
  91. {
  92. A64Context *c = avctx->priv_data;
  93. uint8_t row1, row2;
  94. int charpos, x, y;
  95. int a, b;
  96. uint8_t pix;
  97. int lowdiff, highdiff;
  98. int *best_cb = c->mc_best_cb;
  99. uint8_t index1[256];
  100. uint8_t index2[256];
  101. uint8_t dither[256];
  102. int i;
  103. int distance;
  104. /* Generate lookup-tables for dither and index before looping.
  105. * This code relies on c->mc_luma_vals[c->mc_pal_size - 1] being
  106. * the maximum of all the mc_luma_vals values and on the minimum
  107. * being zero; this ensures that dither is properly initialized. */
  108. i = 0;
  109. for (a=0; a < 256; a++) {
  110. if(i < c->mc_pal_size -1 && a == c->mc_luma_vals[i + 1]) {
  111. distance = c->mc_luma_vals[i + 1] - c->mc_luma_vals[i];
  112. for(b = 0; b <= distance; b++) {
  113. dither[c->mc_luma_vals[i] + b] = b * (DITHERSTEPS - 1) / distance;
  114. }
  115. i++;
  116. }
  117. if(i >= c->mc_pal_size - 1) dither[a] = 0;
  118. index1[a] = i;
  119. index2[a] = FFMIN(i + 1, c->mc_pal_size - 1);
  120. }
  121. /* and render charset */
  122. for (charpos = 0; charpos < CHARSET_CHARS; charpos++) {
  123. lowdiff = 0;
  124. highdiff = 0;
  125. for (y = 0; y < 8; y++) {
  126. row1 = 0; row2 = 0;
  127. for (x = 0; x < 4; x++) {
  128. pix = best_cb[y * 4 + x];
  129. /* accumulate error for brightest/darkest color */
  130. if (index1[pix] >= 3)
  131. highdiff += pix - c->mc_luma_vals[3];
  132. if (index1[pix] < 1)
  133. lowdiff += c->mc_luma_vals[1] - pix;
  134. row1 <<= 2;
  135. if (INTERLACED) {
  136. row2 <<= 2;
  137. if (interlaced_dither_patterns[dither[pix]][(y & 3) * 2 + 0][x & 3])
  138. row1 |= 3-(index2[pix] & 3);
  139. else
  140. row1 |= 3-(index1[pix] & 3);
  141. if (interlaced_dither_patterns[dither[pix]][(y & 3) * 2 + 1][x & 3])
  142. row2 |= 3-(index2[pix] & 3);
  143. else
  144. row2 |= 3-(index1[pix] & 3);
  145. }
  146. else {
  147. if (multi_dither_patterns[dither[pix]][(y & 3)][x & 3])
  148. row1 |= 3-(index2[pix] & 3);
  149. else
  150. row1 |= 3-(index1[pix] & 3);
  151. }
  152. }
  153. charset[y+0x000] = row1;
  154. if (INTERLACED) charset[y+0x800] = row2;
  155. }
  156. /* do we need to adjust pixels? */
  157. if (highdiff > 0 && lowdiff > 0 && c->mc_use_5col) {
  158. if (lowdiff > highdiff) {
  159. for (x = 0; x < 32; x++)
  160. best_cb[x] = FFMIN(c->mc_luma_vals[3], best_cb[x]);
  161. } else {
  162. for (x = 0; x < 32; x++)
  163. best_cb[x] = FFMAX(c->mc_luma_vals[1], best_cb[x]);
  164. }
  165. charpos--; /* redo now adjusted char */
  166. /* no adjustment needed, all fine */
  167. } else {
  168. /* advance pointers */
  169. best_cb += 32;
  170. charset += 8;
  171. /* remember colorram value */
  172. colrammap[charpos] = (highdiff > 0);
  173. }
  174. }
  175. }
  176. static av_cold int a64multi_close_encoder(AVCodecContext *avctx)
  177. {
  178. A64Context *c = avctx->priv_data;
  179. av_freep(&c->mc_meta_charset);
  180. av_freep(&c->mc_best_cb);
  181. av_freep(&c->mc_charset);
  182. av_freep(&c->mc_charmap);
  183. av_freep(&c->mc_colram);
  184. return 0;
  185. }
  186. static av_cold int a64multi_encode_init(AVCodecContext *avctx)
  187. {
  188. A64Context *c = avctx->priv_data;
  189. int a;
  190. av_lfg_init(&c->randctx, 1);
  191. if (avctx->global_quality < 1) {
  192. c->mc_lifetime = 4;
  193. } else {
  194. c->mc_lifetime = avctx->global_quality /= FF_QP2LAMBDA;
  195. }
  196. av_log(avctx, AV_LOG_INFO, "charset lifetime set to %d frame(s)\n", c->mc_lifetime);
  197. c->mc_frame_counter = 0;
  198. c->mc_use_5col = avctx->codec->id == AV_CODEC_ID_A64_MULTI5;
  199. c->mc_pal_size = 4 + c->mc_use_5col;
  200. /* precalc luma values for later use */
  201. for (a = 0; a < c->mc_pal_size; a++) {
  202. c->mc_luma_vals[a]=a64_palette[mc_colors[a]][0] * 0.30 +
  203. a64_palette[mc_colors[a]][1] * 0.59 +
  204. a64_palette[mc_colors[a]][2] * 0.11;
  205. }
  206. if (!(c->mc_meta_charset = av_mallocz_array(c->mc_lifetime, 32000 * sizeof(int))) ||
  207. !(c->mc_best_cb = av_malloc(CHARSET_CHARS * 32 * sizeof(int))) ||
  208. !(c->mc_charmap = av_mallocz_array(c->mc_lifetime, 1000 * sizeof(int))) ||
  209. !(c->mc_colram = av_mallocz(CHARSET_CHARS * sizeof(uint8_t))) ||
  210. !(c->mc_charset = av_malloc(0x800 * (INTERLACED+1) * sizeof(uint8_t)))) {
  211. av_log(avctx, AV_LOG_ERROR, "Failed to allocate buffer memory.\n");
  212. return AVERROR(ENOMEM);
  213. }
  214. /* set up extradata */
  215. if (!(avctx->extradata = av_mallocz(8 * 4 + AV_INPUT_BUFFER_PADDING_SIZE))) {
  216. av_log(avctx, AV_LOG_ERROR, "Failed to allocate memory for extradata.\n");
  217. return AVERROR(ENOMEM);
  218. }
  219. avctx->extradata_size = 8 * 4;
  220. AV_WB32(avctx->extradata, c->mc_lifetime);
  221. AV_WB32(avctx->extradata + 16, INTERLACED);
  222. if (!avctx->codec_tag)
  223. avctx->codec_tag = AV_RL32("a64m");
  224. c->next_pts = AV_NOPTS_VALUE;
  225. return 0;
  226. }
  227. static void a64_compress_colram(unsigned char *buf, int *charmap, uint8_t *colram)
  228. {
  229. int a;
  230. uint8_t temp;
  231. /* only needs to be done in 5col mode */
  232. /* XXX could be squeezed to 0x80 bytes */
  233. for (a = 0; a < 256; a++) {
  234. temp = colram[charmap[a + 0x000]] << 0;
  235. temp |= colram[charmap[a + 0x100]] << 1;
  236. temp |= colram[charmap[a + 0x200]] << 2;
  237. if (a < 0xe8) temp |= colram[charmap[a + 0x300]] << 3;
  238. buf[a] = temp << 2;
  239. }
  240. }
  241. static int a64multi_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
  242. const AVFrame *p, int *got_packet)
  243. {
  244. A64Context *c = avctx->priv_data;
  245. int frame;
  246. int x, y;
  247. int b_height;
  248. int b_width;
  249. int req_size, ret;
  250. uint8_t *buf = NULL;
  251. int *charmap = c->mc_charmap;
  252. uint8_t *colram = c->mc_colram;
  253. uint8_t *charset = c->mc_charset;
  254. int *meta = c->mc_meta_charset;
  255. int *best_cb = c->mc_best_cb;
  256. int charset_size = 0x800 * (INTERLACED + 1);
  257. int colram_size = 0x100 * c->mc_use_5col;
  258. int screen_size;
  259. if(CROP_SCREENS) {
  260. b_height = FFMIN(avctx->height,C64YRES) >> 3;
  261. b_width = FFMIN(avctx->width ,C64XRES) >> 3;
  262. screen_size = b_width * b_height;
  263. } else {
  264. b_height = C64YRES >> 3;
  265. b_width = C64XRES >> 3;
  266. screen_size = 0x400;
  267. }
  268. /* no data, means end encoding asap */
  269. if (!p) {
  270. /* all done, end encoding */
  271. if (!c->mc_lifetime) return 0;
  272. /* no more frames in queue, prepare to flush remaining frames */
  273. if (!c->mc_frame_counter) {
  274. c->mc_lifetime = 0;
  275. }
  276. /* still frames in queue so limit lifetime to remaining frames */
  277. else c->mc_lifetime = c->mc_frame_counter;
  278. /* still new data available */
  279. } else {
  280. /* fill up mc_meta_charset with data until lifetime exceeds */
  281. if (c->mc_frame_counter < c->mc_lifetime) {
  282. to_meta_with_crop(avctx, p, meta + 32000 * c->mc_frame_counter);
  283. c->mc_frame_counter++;
  284. if (c->next_pts == AV_NOPTS_VALUE)
  285. c->next_pts = p->pts;
  286. /* lifetime is not reached so wait for next frame first */
  287. return 0;
  288. }
  289. }
  290. /* lifetime reached so now convert X frames at once */
  291. if (c->mc_frame_counter == c->mc_lifetime) {
  292. req_size = 0;
  293. /* any frames to encode? */
  294. if (c->mc_lifetime) {
  295. int alloc_size = charset_size + c->mc_lifetime*(screen_size + colram_size);
  296. if ((ret = ff_alloc_packet2(avctx, pkt, alloc_size, 0)) < 0)
  297. return ret;
  298. buf = pkt->data;
  299. /* calc optimal new charset + charmaps */
  300. ret = avpriv_init_elbg(meta, 32, 1000 * c->mc_lifetime, best_cb,
  301. CHARSET_CHARS, 50, charmap, &c->randctx);
  302. if (ret < 0)
  303. return ret;
  304. ret = avpriv_do_elbg(meta, 32, 1000 * c->mc_lifetime, best_cb,
  305. CHARSET_CHARS, 50, charmap, &c->randctx);
  306. if (ret < 0)
  307. return ret;
  308. /* create colorram map and a c64 readable charset */
  309. render_charset(avctx, charset, colram);
  310. /* copy charset to buf */
  311. memcpy(buf, charset, charset_size);
  312. /* advance pointers */
  313. buf += charset_size;
  314. req_size += charset_size;
  315. }
  316. /* write x frames to buf */
  317. for (frame = 0; frame < c->mc_lifetime; frame++) {
  318. /* copy charmap to buf. buf is uchar*, charmap is int*, so no memcpy here, sorry */
  319. for (y = 0; y < b_height; y++) {
  320. for (x = 0; x < b_width; x++) {
  321. buf[y * b_width + x] = charmap[y * b_width + x];
  322. }
  323. }
  324. /* advance pointers */
  325. buf += screen_size;
  326. req_size += screen_size;
  327. /* compress and copy colram to buf */
  328. if (c->mc_use_5col) {
  329. a64_compress_colram(buf, charmap, colram);
  330. /* advance pointers */
  331. buf += colram_size;
  332. req_size += colram_size;
  333. }
  334. /* advance to next charmap */
  335. charmap += 1000;
  336. }
  337. AV_WB32(avctx->extradata + 4, c->mc_frame_counter);
  338. AV_WB32(avctx->extradata + 8, charset_size);
  339. AV_WB32(avctx->extradata + 12, screen_size + colram_size);
  340. /* reset counter */
  341. c->mc_frame_counter = 0;
  342. pkt->pts = pkt->dts = c->next_pts;
  343. c->next_pts = AV_NOPTS_VALUE;
  344. av_assert0(pkt->size >= req_size);
  345. pkt->size = req_size;
  346. pkt->flags |= AV_PKT_FLAG_KEY;
  347. *got_packet = !!req_size;
  348. }
  349. return 0;
  350. }
  351. #if CONFIG_A64MULTI_ENCODER
  352. AVCodec ff_a64multi_encoder = {
  353. .name = "a64multi",
  354. .long_name = NULL_IF_CONFIG_SMALL("Multicolor charset for Commodore 64"),
  355. .type = AVMEDIA_TYPE_VIDEO,
  356. .id = AV_CODEC_ID_A64_MULTI,
  357. .priv_data_size = sizeof(A64Context),
  358. .init = a64multi_encode_init,
  359. .encode2 = a64multi_encode_frame,
  360. .close = a64multi_close_encoder,
  361. .pix_fmts = (const enum AVPixelFormat[]) {AV_PIX_FMT_GRAY8, AV_PIX_FMT_NONE},
  362. .capabilities = AV_CODEC_CAP_DELAY,
  363. .caps_internal = FF_CODEC_CAP_INIT_CLEANUP | FF_CODEC_CAP_INIT_THREADSAFE,
  364. };
  365. #endif
  366. #if CONFIG_A64MULTI5_ENCODER
  367. AVCodec ff_a64multi5_encoder = {
  368. .name = "a64multi5",
  369. .long_name = NULL_IF_CONFIG_SMALL("Multicolor charset for Commodore 64, extended with 5th color (colram)"),
  370. .type = AVMEDIA_TYPE_VIDEO,
  371. .id = AV_CODEC_ID_A64_MULTI5,
  372. .priv_data_size = sizeof(A64Context),
  373. .init = a64multi_encode_init,
  374. .encode2 = a64multi_encode_frame,
  375. .close = a64multi_close_encoder,
  376. .pix_fmts = (const enum AVPixelFormat[]) {AV_PIX_FMT_GRAY8, AV_PIX_FMT_NONE},
  377. .capabilities = AV_CODEC_CAP_DELAY,
  378. .caps_internal = FF_CODEC_CAP_INIT_CLEANUP | FF_CODEC_CAP_INIT_THREADSAFE,
  379. };
  380. #endif