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.

257 lines
7.3KB

  1. /*
  2. * American Laser Games MM Video Decoder
  3. * Copyright (c) 2006,2008 Peter Ross
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav 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. * Libav 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 Libav; 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. * American Laser Games MM Video Decoder
  24. * by Peter Ross (pross@xvid.org)
  25. *
  26. * The MM format was used by IBM-PC ports of ALG's "arcade shooter" games,
  27. * including Mad Dog McCree and Crime Patrol.
  28. *
  29. * Technical details here:
  30. * http://wiki.multimedia.cx/index.php?title=American_Laser_Games_MM
  31. */
  32. #include "libavutil/intreadwrite.h"
  33. #include "avcodec.h"
  34. #include "bytestream.h"
  35. #include "internal.h"
  36. #define MM_PREAMBLE_SIZE 6
  37. #define MM_TYPE_INTER 0x5
  38. #define MM_TYPE_INTRA 0x8
  39. #define MM_TYPE_INTRA_HH 0xc
  40. #define MM_TYPE_INTER_HH 0xd
  41. #define MM_TYPE_INTRA_HHV 0xe
  42. #define MM_TYPE_INTER_HHV 0xf
  43. #define MM_TYPE_PALETTE 0x31
  44. typedef struct MmContext {
  45. AVCodecContext *avctx;
  46. AVFrame *frame;
  47. int palette[AVPALETTE_COUNT];
  48. GetByteContext gb;
  49. } MmContext;
  50. static av_cold int mm_decode_init(AVCodecContext *avctx)
  51. {
  52. MmContext *s = avctx->priv_data;
  53. s->avctx = avctx;
  54. avctx->pix_fmt = AV_PIX_FMT_PAL8;
  55. if (!avctx->width || !avctx->height ||
  56. (avctx->width & 1) || (avctx->height & 1)) {
  57. av_log(avctx, AV_LOG_ERROR, "Invalid video dimensions: %dx%d\n",
  58. avctx->width, avctx->height);
  59. return AVERROR(EINVAL);
  60. }
  61. s->frame = av_frame_alloc();
  62. if (!s->frame)
  63. return AVERROR(ENOMEM);
  64. return 0;
  65. }
  66. static int mm_decode_pal(MmContext *s)
  67. {
  68. int i;
  69. bytestream2_skip(&s->gb, 4);
  70. for (i = 0; i < 128; i++) {
  71. s->palette[i] = bytestream2_get_be24(&s->gb);
  72. s->palette[i+128] = s->palette[i]<<2;
  73. }
  74. return 0;
  75. }
  76. /**
  77. * @param half_horiz Half horizontal resolution (0 or 1)
  78. * @param half_vert Half vertical resolution (0 or 1)
  79. */
  80. static int mm_decode_intra(MmContext * s, int half_horiz, int half_vert)
  81. {
  82. int x = 0, y = 0;
  83. while (bytestream2_get_bytes_left(&s->gb) > 0) {
  84. int run_length, color;
  85. // writes one more line when half_vert is true
  86. if (y >= s->avctx->height + !!half_vert)
  87. return 0;
  88. color = bytestream2_get_byte(&s->gb);
  89. if (color & 0x80) {
  90. run_length = 1;
  91. }else{
  92. run_length = (color & 0x7f) + 2;
  93. color = bytestream2_get_byte(&s->gb);
  94. }
  95. if (half_horiz)
  96. run_length *=2;
  97. if (s->avctx->width - x < run_length)
  98. return AVERROR_INVALIDDATA;
  99. if (color) {
  100. memset(s->frame->data[0] + y*s->frame->linesize[0] + x, color, run_length);
  101. if (half_vert)
  102. memset(s->frame->data[0] + (y+1)*s->frame->linesize[0] + x, color, run_length);
  103. }
  104. x+= run_length;
  105. if (x >= s->avctx->width) {
  106. x=0;
  107. y += 1 + half_vert;
  108. }
  109. }
  110. return 0;
  111. }
  112. /*
  113. * @param half_horiz Half horizontal resolution (0 or 1)
  114. * @param half_vert Half vertical resolution (0 or 1)
  115. */
  116. static int mm_decode_inter(MmContext * s, int half_horiz, int half_vert)
  117. {
  118. int data_off = bytestream2_get_le16(&s->gb);
  119. int y = 0;
  120. GetByteContext data_ptr;
  121. if (bytestream2_get_bytes_left(&s->gb) < data_off)
  122. return AVERROR_INVALIDDATA;
  123. bytestream2_init(&data_ptr, s->gb.buffer + data_off, bytestream2_get_bytes_left(&s->gb) - data_off);
  124. while (s->gb.buffer < data_ptr.buffer_start) {
  125. int i, j;
  126. int length = bytestream2_get_byte(&s->gb);
  127. int x = bytestream2_get_byte(&s->gb) + ((length & 0x80) << 1);
  128. length &= 0x7F;
  129. if (length==0) {
  130. y += x;
  131. continue;
  132. }
  133. if (y + half_vert >= s->avctx->height)
  134. return 0;
  135. for(i=0; i<length; i++) {
  136. int replace_array = bytestream2_get_byte(&s->gb);
  137. for(j=0; j<8; j++) {
  138. int replace = (replace_array >> (7-j)) & 1;
  139. if (x + half_horiz >= s->avctx->width)
  140. return AVERROR_INVALIDDATA;
  141. if (replace) {
  142. int color = bytestream2_get_byte(&data_ptr);
  143. s->frame->data[0][y*s->frame->linesize[0] + x] = color;
  144. if (half_horiz)
  145. s->frame->data[0][y*s->frame->linesize[0] + x + 1] = color;
  146. if (half_vert) {
  147. s->frame->data[0][(y+1)*s->frame->linesize[0] + x] = color;
  148. if (half_horiz)
  149. s->frame->data[0][(y+1)*s->frame->linesize[0] + x + 1] = color;
  150. }
  151. }
  152. x += 1 + half_horiz;
  153. }
  154. }
  155. y += 1 + half_vert;
  156. }
  157. return 0;
  158. }
  159. static int mm_decode_frame(AVCodecContext *avctx,
  160. void *data, int *got_frame,
  161. AVPacket *avpkt)
  162. {
  163. const uint8_t *buf = avpkt->data;
  164. int buf_size = avpkt->size;
  165. MmContext *s = avctx->priv_data;
  166. int type, res;
  167. if (buf_size < MM_PREAMBLE_SIZE)
  168. return AVERROR_INVALIDDATA;
  169. type = AV_RL16(&buf[0]);
  170. buf += MM_PREAMBLE_SIZE;
  171. buf_size -= MM_PREAMBLE_SIZE;
  172. bytestream2_init(&s->gb, buf, buf_size);
  173. if ((res = ff_reget_buffer(avctx, s->frame)) < 0) {
  174. av_log(avctx, AV_LOG_ERROR, "reget_buffer() failed\n");
  175. return res;
  176. }
  177. switch(type) {
  178. case MM_TYPE_PALETTE : res = mm_decode_pal(s); return buf_size;
  179. case MM_TYPE_INTRA : res = mm_decode_intra(s, 0, 0); break;
  180. case MM_TYPE_INTRA_HH : res = mm_decode_intra(s, 1, 0); break;
  181. case MM_TYPE_INTRA_HHV : res = mm_decode_intra(s, 1, 1); break;
  182. case MM_TYPE_INTER : res = mm_decode_inter(s, 0, 0); break;
  183. case MM_TYPE_INTER_HH : res = mm_decode_inter(s, 1, 0); break;
  184. case MM_TYPE_INTER_HHV : res = mm_decode_inter(s, 1, 1); break;
  185. default:
  186. res = AVERROR_INVALIDDATA;
  187. break;
  188. }
  189. if (res < 0)
  190. return res;
  191. memcpy(s->frame->data[1], s->palette, AVPALETTE_SIZE);
  192. if ((res = av_frame_ref(data, s->frame)) < 0)
  193. return res;
  194. *got_frame = 1;
  195. return buf_size;
  196. }
  197. static av_cold int mm_decode_end(AVCodecContext *avctx)
  198. {
  199. MmContext *s = avctx->priv_data;
  200. av_frame_free(&s->frame);
  201. return 0;
  202. }
  203. AVCodec ff_mmvideo_decoder = {
  204. .name = "mmvideo",
  205. .long_name = NULL_IF_CONFIG_SMALL("American Laser Games MM Video"),
  206. .type = AVMEDIA_TYPE_VIDEO,
  207. .id = AV_CODEC_ID_MMVIDEO,
  208. .priv_data_size = sizeof(MmContext),
  209. .init = mm_decode_init,
  210. .close = mm_decode_end,
  211. .decode = mm_decode_frame,
  212. .capabilities = AV_CODEC_CAP_DR1,
  213. };