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.

245 lines
7.5KB

  1. /*
  2. * Electronic Arts CMV Video Decoder
  3. * Copyright (c) 2007-2008 Peter Ross
  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 St, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. /**
  22. * @file
  23. * Electronic Arts CMV Video Decoder
  24. * by Peter Ross (pross@xvid.org)
  25. *
  26. * Technical details here:
  27. * http://wiki.multimedia.cx/index.php?title=Electronic_Arts_CMV
  28. */
  29. #include "libavutil/common.h"
  30. #include "libavutil/intreadwrite.h"
  31. #include "libavutil/imgutils.h"
  32. #include "avcodec.h"
  33. #include "internal.h"
  34. typedef struct CmvContext {
  35. AVCodecContext *avctx;
  36. AVFrame *last_frame; ///< last
  37. AVFrame *last2_frame; ///< second-last
  38. int width, height;
  39. unsigned int palette[AVPALETTE_COUNT];
  40. } CmvContext;
  41. static av_cold int cmv_decode_init(AVCodecContext *avctx){
  42. CmvContext *s = avctx->priv_data;
  43. s->avctx = avctx;
  44. avctx->pix_fmt = AV_PIX_FMT_PAL8;
  45. s->last_frame = av_frame_alloc();
  46. s->last2_frame = av_frame_alloc();
  47. if (!s->last_frame || !s->last2_frame)
  48. return AVERROR(ENOMEM);
  49. return 0;
  50. }
  51. static void cmv_decode_intra(CmvContext * s, AVFrame *frame,
  52. const uint8_t *buf, const uint8_t *buf_end)
  53. {
  54. unsigned char *dst = frame->data[0];
  55. int i;
  56. for (i=0; i < s->avctx->height && buf_end - buf >= s->avctx->width; i++) {
  57. memcpy(dst, buf, s->avctx->width);
  58. dst += frame->linesize[0];
  59. buf += s->avctx->width;
  60. }
  61. }
  62. static void cmv_motcomp(unsigned char *dst, ptrdiff_t dst_stride,
  63. const unsigned char *src, ptrdiff_t src_stride,
  64. int x, int y,
  65. int xoffset, int yoffset,
  66. int width, int height){
  67. int i,j;
  68. for(j=y;j<y+4;j++)
  69. for(i=x;i<x+4;i++)
  70. {
  71. if (i+xoffset>=0 && i+xoffset<width &&
  72. j+yoffset>=0 && j+yoffset<height) {
  73. dst[j*dst_stride + i] = src[(j+yoffset)*src_stride + i+xoffset];
  74. }else{
  75. dst[j*dst_stride + i] = 0;
  76. }
  77. }
  78. }
  79. static void cmv_decode_inter(CmvContext *s, AVFrame *frame, const uint8_t *buf,
  80. const uint8_t *buf_end)
  81. {
  82. const uint8_t *raw = buf + (s->avctx->width*s->avctx->height/16);
  83. int x,y,i;
  84. i = 0;
  85. for(y=0; y<s->avctx->height/4; y++)
  86. for(x=0; x<s->avctx->width/4 && buf_end - buf > i; x++) {
  87. if (buf[i]==0xFF) {
  88. unsigned char *dst = frame->data[0] + (y*4)*frame->linesize[0] + x*4;
  89. if (raw+16<buf_end && *raw==0xFF) { /* intra */
  90. raw++;
  91. memcpy(dst, raw, 4);
  92. memcpy(dst + frame->linesize[0], raw+4, 4);
  93. memcpy(dst + 2 * frame->linesize[0], raw+8, 4);
  94. memcpy(dst + 3 * frame->linesize[0], raw+12, 4);
  95. raw+=16;
  96. }else if(raw<buf_end) { /* inter using second-last frame as reference */
  97. int xoffset = (*raw & 0xF) - 7;
  98. int yoffset = ((*raw >> 4)) - 7;
  99. if (s->last2_frame->data[0])
  100. cmv_motcomp(frame->data[0], frame->linesize[0],
  101. s->last2_frame->data[0], s->last2_frame->linesize[0],
  102. x*4, y*4, xoffset, yoffset, s->avctx->width, s->avctx->height);
  103. raw++;
  104. }
  105. }else{ /* inter using last frame as reference */
  106. int xoffset = (buf[i] & 0xF) - 7;
  107. int yoffset = ((buf[i] >> 4)) - 7;
  108. if (s->last_frame->data[0])
  109. cmv_motcomp(frame->data[0], frame->linesize[0],
  110. s->last_frame->data[0], s->last_frame->linesize[0],
  111. x*4, y*4, xoffset, yoffset, s->avctx->width, s->avctx->height);
  112. }
  113. i++;
  114. }
  115. }
  116. static int cmv_process_header(CmvContext *s, const uint8_t *buf, const uint8_t *buf_end)
  117. {
  118. int pal_start, pal_count, i, ret, fps;
  119. if(buf_end - buf < 16) {
  120. av_log(s->avctx, AV_LOG_WARNING, "truncated header\n");
  121. return AVERROR_INVALIDDATA;
  122. }
  123. s->width = AV_RL16(&buf[4]);
  124. s->height = AV_RL16(&buf[6]);
  125. if (s->width != s->avctx->width ||
  126. s->height != s->avctx->height) {
  127. av_frame_unref(s->last_frame);
  128. av_frame_unref(s->last2_frame);
  129. }
  130. ret = ff_set_dimensions(s->avctx, s->width, s->height);
  131. if (ret < 0)
  132. return ret;
  133. fps = AV_RL16(&buf[10]);
  134. if (fps > 0)
  135. s->avctx->framerate = (AVRational){ fps, 1 };
  136. pal_start = AV_RL16(&buf[12]);
  137. pal_count = AV_RL16(&buf[14]);
  138. buf += 16;
  139. for (i=pal_start; i<pal_start+pal_count && i<AVPALETTE_COUNT && buf_end - buf >= 3; i++) {
  140. s->palette[i] = 0xFFU << 24 | AV_RB24(buf);
  141. buf += 3;
  142. }
  143. return 0;
  144. }
  145. #define EA_PREAMBLE_SIZE 8
  146. #define MVIh_TAG MKTAG('M', 'V', 'I', 'h')
  147. static int cmv_decode_frame(AVCodecContext *avctx,
  148. void *data, int *got_frame,
  149. AVPacket *avpkt)
  150. {
  151. const uint8_t *buf = avpkt->data;
  152. int buf_size = avpkt->size;
  153. CmvContext *s = avctx->priv_data;
  154. const uint8_t *buf_end = buf + buf_size;
  155. AVFrame *frame = data;
  156. int ret;
  157. if (buf_end - buf < EA_PREAMBLE_SIZE)
  158. return AVERROR_INVALIDDATA;
  159. if (AV_RL32(buf)==MVIh_TAG||AV_RB32(buf)==MVIh_TAG) {
  160. unsigned size = AV_RL32(buf + 4);
  161. ret = cmv_process_header(s, buf+EA_PREAMBLE_SIZE, buf_end);
  162. if (ret < 0)
  163. return ret;
  164. if (size > buf_end - buf - EA_PREAMBLE_SIZE)
  165. return AVERROR_INVALIDDATA;
  166. buf += size;
  167. }
  168. if ((ret = av_image_check_size(s->width, s->height, 0, s->avctx)) < 0)
  169. return ret;
  170. if ((ret = ff_get_buffer(avctx, frame, AV_GET_BUFFER_FLAG_REF)) < 0)
  171. return ret;
  172. memcpy(frame->data[1], s->palette, AVPALETTE_SIZE);
  173. buf += EA_PREAMBLE_SIZE;
  174. if ((buf[0]&1)) { // subtype
  175. cmv_decode_inter(s, frame, buf+2, buf_end);
  176. frame->key_frame = 0;
  177. frame->pict_type = AV_PICTURE_TYPE_P;
  178. }else{
  179. frame->key_frame = 1;
  180. frame->pict_type = AV_PICTURE_TYPE_I;
  181. cmv_decode_intra(s, frame, buf+2, buf_end);
  182. }
  183. av_frame_unref(s->last2_frame);
  184. av_frame_move_ref(s->last2_frame, s->last_frame);
  185. if ((ret = av_frame_ref(s->last_frame, frame)) < 0)
  186. return ret;
  187. *got_frame = 1;
  188. return buf_size;
  189. }
  190. static av_cold int cmv_decode_end(AVCodecContext *avctx){
  191. CmvContext *s = avctx->priv_data;
  192. av_frame_free(&s->last_frame);
  193. av_frame_free(&s->last2_frame);
  194. return 0;
  195. }
  196. AVCodec ff_eacmv_decoder = {
  197. .name = "eacmv",
  198. .long_name = NULL_IF_CONFIG_SMALL("Electronic Arts CMV video"),
  199. .type = AVMEDIA_TYPE_VIDEO,
  200. .id = AV_CODEC_ID_CMV,
  201. .priv_data_size = sizeof(CmvContext),
  202. .init = cmv_decode_init,
  203. .close = cmv_decode_end,
  204. .decode = cmv_decode_frame,
  205. .capabilities = AV_CODEC_CAP_DR1,
  206. .caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
  207. };