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.

205 lines
6.5KB

  1. /*
  2. * Gryphon's Anim Compressor decoder
  3. * Copyright (c) 2019 Paul B Mahol
  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. #include <stdio.h>
  22. #include <stdlib.h>
  23. #include <string.h>
  24. #include "libavutil/imgutils.h"
  25. #include "libavutil/internal.h"
  26. #include "libavutil/intreadwrite.h"
  27. #include "libavutil/mem.h"
  28. #include "avcodec.h"
  29. #include "bytestream.h"
  30. #include "internal.h"
  31. typedef struct ARBCContext {
  32. GetByteContext gb;
  33. AVFrame *prev_frame;
  34. } ARBCContext;
  35. static void fill_tile4(AVCodecContext *avctx, uint8_t *color, AVFrame *frame)
  36. {
  37. ARBCContext *s = avctx->priv_data;
  38. GetByteContext *gb = &s->gb;
  39. int nb_tiles = bytestream2_get_le16(gb);
  40. int h = avctx->height - 1;
  41. for (int i = 0; i < nb_tiles; i++) {
  42. int y = bytestream2_get_byte(gb);
  43. int x = bytestream2_get_byte(gb);
  44. uint16_t mask = bytestream2_get_le16(gb);
  45. int start_y = y * 4, start_x = x * 4;
  46. int end_y = start_y + 4, end_x = start_x + 4;
  47. for (int j = start_y; j < end_y; j++) {
  48. for (int k = start_x; k < end_x; k++) {
  49. if (mask & 0x8000) {
  50. if (j >= avctx->height || k >= avctx->width) {
  51. mask = mask << 1;
  52. continue;
  53. }
  54. frame->data[0][frame->linesize[0] * (h - j) + 3 * k + 0] = color[0];
  55. frame->data[0][frame->linesize[0] * (h - j) + 3 * k + 1] = color[1];
  56. frame->data[0][frame->linesize[0] * (h - j) + 3 * k + 2] = color[2];
  57. }
  58. mask = mask << 1;
  59. }
  60. }
  61. }
  62. }
  63. static void fill_tileX(AVCodecContext *avctx, int tile_width, int tile_height,
  64. uint8_t *color, AVFrame *frame)
  65. {
  66. ARBCContext *s = avctx->priv_data;
  67. GetByteContext *gb = &s->gb;
  68. const int step_h = tile_height / 4;
  69. const int step_w = tile_width / 4;
  70. int nb_tiles = bytestream2_get_le16(gb);
  71. int h = avctx->height - 1;
  72. for (int i = 0; i < nb_tiles; i++) {
  73. int y = bytestream2_get_byte(gb);
  74. int x = bytestream2_get_byte(gb);
  75. uint16_t mask = bytestream2_get_le16(gb);
  76. int start_y = y * tile_height, start_x = x * tile_width;
  77. int end_y = start_y + tile_height, end_x = start_x + tile_width;
  78. for (int j = start_y; j < end_y; j += step_h) {
  79. for (int k = start_x; k < end_x; k += step_w) {
  80. if (mask & 0x8000U) {
  81. for (int m = 0; m < step_h; m++) {
  82. for (int n = 0; n < step_w; n++) {
  83. if (j + m >= avctx->height || k + n >= avctx->width)
  84. continue;
  85. frame->data[0][frame->linesize[0] * (h - (j + m)) + 3 * (k + n) + 0] = color[0];
  86. frame->data[0][frame->linesize[0] * (h - (j + m)) + 3 * (k + n) + 1] = color[1];
  87. frame->data[0][frame->linesize[0] * (h - (j + m)) + 3 * (k + n) + 2] = color[2];
  88. }
  89. }
  90. }
  91. mask = mask << 1;
  92. }
  93. }
  94. }
  95. }
  96. static int decode_frame(AVCodecContext *avctx, void *data,
  97. int *got_frame, AVPacket *avpkt)
  98. {
  99. ARBCContext *s = avctx->priv_data;
  100. AVFrame *frame = data;
  101. int ret, nb_segments, keyframe = 1;
  102. if (avpkt->size < 10)
  103. return AVERROR_INVALIDDATA;
  104. if ((ret = ff_get_buffer(avctx, frame, AV_GET_BUFFER_FLAG_REF)) < 0)
  105. return ret;
  106. if (s->prev_frame->data[0]) {
  107. ret = av_frame_copy(frame, s->prev_frame);
  108. if (ret < 0)
  109. return ret;
  110. }
  111. bytestream2_init(&s->gb, avpkt->data, avpkt->size);
  112. bytestream2_skip(&s->gb, 8);
  113. nb_segments = bytestream2_get_le16(&s->gb);
  114. if (nb_segments == 0)
  115. keyframe = 0;
  116. for (int i = 0; i < nb_segments; i++) {
  117. int resolution_flag;
  118. uint8_t fill[3];
  119. if (bytestream2_get_bytes_left(&s->gb) <= 0)
  120. return AVERROR_INVALIDDATA;
  121. fill[0] = bytestream2_get_byte(&s->gb);
  122. bytestream2_skip(&s->gb, 1);
  123. fill[1] = bytestream2_get_byte(&s->gb);
  124. bytestream2_skip(&s->gb, 1);
  125. fill[2] = bytestream2_get_byte(&s->gb);
  126. bytestream2_skip(&s->gb, 1);
  127. resolution_flag = bytestream2_get_byte(&s->gb);
  128. if (resolution_flag & 0x10)
  129. fill_tileX(avctx, 1024, 1024, fill, frame);
  130. if (resolution_flag & 0x08)
  131. fill_tileX(avctx, 256, 256, fill, frame);
  132. if (resolution_flag & 0x04)
  133. fill_tileX(avctx, 64, 64, fill, frame);
  134. if (resolution_flag & 0x02)
  135. fill_tileX(avctx, 16, 16, fill, frame);
  136. if (resolution_flag & 0x01)
  137. fill_tile4(avctx, fill, frame);
  138. }
  139. av_frame_unref(s->prev_frame);
  140. if ((ret = av_frame_ref(s->prev_frame, frame)) < 0)
  141. return ret;
  142. frame->pict_type = keyframe ? AV_PICTURE_TYPE_I : AV_PICTURE_TYPE_P;
  143. frame->key_frame = keyframe;
  144. *got_frame = 1;
  145. return avpkt->size;
  146. }
  147. static av_cold int decode_init(AVCodecContext *avctx)
  148. {
  149. ARBCContext *s = avctx->priv_data;
  150. avctx->pix_fmt = AV_PIX_FMT_RGB24;
  151. s->prev_frame = av_frame_alloc();
  152. if (!s->prev_frame)
  153. return AVERROR(ENOMEM);
  154. return 0;
  155. }
  156. static av_cold int decode_close(AVCodecContext *avctx)
  157. {
  158. ARBCContext *s = avctx->priv_data;
  159. av_frame_free(&s->prev_frame);
  160. return 0;
  161. }
  162. AVCodec ff_arbc_decoder = {
  163. .name = "arbc",
  164. .long_name = NULL_IF_CONFIG_SMALL("Gryphon's Anim Compressor"),
  165. .type = AVMEDIA_TYPE_VIDEO,
  166. .id = AV_CODEC_ID_ARBC,
  167. .priv_data_size = sizeof(ARBCContext),
  168. .init = decode_init,
  169. .decode = decode_frame,
  170. .close = decode_close,
  171. .capabilities = AV_CODEC_CAP_DR1,
  172. .caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
  173. };