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.

215 lines
6.7KB

  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 eacmv.c
  23. * Electronic Arts CMV Video Decoder
  24. * by Peter Ross (suxen_drol at hotmail dot com)
  25. *
  26. * Technical details here:
  27. * http://wiki.multimedia.cx/index.php?title=Electronic_Arts_CMV
  28. */
  29. #include "avcodec.h"
  30. typedef struct CmvContext {
  31. AVCodecContext *avctx;
  32. AVFrame frame; ///< current
  33. AVFrame last_frame; ///< last
  34. AVFrame last2_frame; ///< second-last
  35. int width, height;
  36. unsigned int palette[AVPALETTE_COUNT];
  37. } CmvContext;
  38. static av_cold int cmv_decode_init(AVCodecContext *avctx){
  39. CmvContext *s = avctx->priv_data;
  40. s->avctx = avctx;
  41. avctx->pix_fmt = PIX_FMT_PAL8;
  42. return 0;
  43. }
  44. static void cmv_decode_intra(CmvContext * s, const uint8_t *buf, const uint8_t *buf_end){
  45. unsigned char *dst = s->frame.data[0];
  46. int i;
  47. for (i=0; i < s->avctx->height && buf+s->avctx->width<=buf_end; i++) {
  48. memcpy(dst, buf, s->avctx->width);
  49. dst += s->frame.linesize[0];
  50. buf += s->avctx->width;
  51. }
  52. }
  53. static void cmv_motcomp(unsigned char *dst, int dst_stride,
  54. const unsigned char *src, int src_stride,
  55. int x, int y,
  56. int xoffset, int yoffset,
  57. int width, int height){
  58. int i,j;
  59. for(j=y;j<y+4;j++)
  60. for(i=x;i<x+4;i++)
  61. {
  62. if (i+xoffset>=0 && i+xoffset<width &&
  63. j+yoffset>=0 && j+yoffset<height) {
  64. dst[j*dst_stride + i] = src[(j+yoffset)*src_stride + i+xoffset];
  65. }else{
  66. dst[j*dst_stride + i] = 0;
  67. }
  68. }
  69. }
  70. static void cmv_decode_inter(CmvContext * s, const uint8_t *buf, const uint8_t *buf_end){
  71. const uint8_t *raw = buf + (s->avctx->width*s->avctx->height/16);
  72. int x,y,i;
  73. i = 0;
  74. for(y=0; y<s->avctx->height/4; y++)
  75. for(x=0; x<s->avctx->width/4 && buf+i<buf_end; x++) {
  76. if (buf[i]==0xFF) {
  77. unsigned char *dst = s->frame.data[0] + (y*4)*s->frame.linesize[0] + x*4;
  78. if (raw+16<buf_end && *raw==0xFF) { /* intra */
  79. raw++;
  80. memcpy(dst, raw, 4);
  81. memcpy(dst+s->frame.linesize[0], raw+4, 4);
  82. memcpy(dst+2*s->frame.linesize[0], raw+8, 4);
  83. memcpy(dst+3*s->frame.linesize[0], raw+12, 4);
  84. raw+=16;
  85. }else if(raw<buf_end) { /* inter using second-last frame as reference */
  86. int xoffset = (*raw & 0xF) - 7;
  87. int yoffset = ((*raw >> 4)) - 7;
  88. cmv_motcomp(s->frame.data[0], s->frame.linesize[0],
  89. s->last2_frame.data[0], s->last2_frame.linesize[0],
  90. x*4, y*4, xoffset, yoffset, s->avctx->width, s->avctx->height);
  91. raw++;
  92. }
  93. }else{ /* inter using last frame as reference */
  94. int xoffset = (buf[i] & 0xF) - 7;
  95. int yoffset = ((buf[i] >> 4)) - 7;
  96. cmv_motcomp(s->frame.data[0], s->frame.linesize[0],
  97. s->last_frame.data[0], s->last_frame.linesize[0],
  98. x*4, y*4, xoffset, yoffset, s->avctx->width, s->avctx->height);
  99. }
  100. i++;
  101. }
  102. }
  103. static void cmv_process_header(CmvContext *s, const uint8_t *buf, const uint8_t *buf_end)
  104. {
  105. int pal_start, pal_count, i;
  106. if(buf+16>=buf_end) {
  107. av_log(s->avctx, AV_LOG_WARNING, "truncated header\n");
  108. return;
  109. }
  110. s->width = AV_RL16(&buf[4]);
  111. s->height = AV_RL16(&buf[6]);
  112. if (s->avctx->width!=s->width || s->avctx->height!=s->height)
  113. avcodec_set_dimensions(s->avctx, s->width, s->height);
  114. s->avctx->time_base.num = 1;
  115. s->avctx->time_base.den = AV_RL16(&buf[10]);
  116. pal_start = AV_RL16(&buf[12]);
  117. pal_count = AV_RL16(&buf[14]);
  118. buf += 16;
  119. for (i=pal_start; i<pal_start+pal_count && i<AVPALETTE_COUNT && buf+2<buf_end; i++) {
  120. s->palette[i] = AV_RB24(buf);
  121. buf += 3;
  122. }
  123. }
  124. #define EA_PREAMBLE_SIZE 8
  125. #define MVIh_TAG MKTAG('M', 'V', 'I', 'h')
  126. static int cmv_decode_frame(AVCodecContext *avctx,
  127. void *data, int *data_size,
  128. const uint8_t *buf, int buf_size)
  129. {
  130. CmvContext *s = avctx->priv_data;
  131. const uint8_t *buf_end = buf + buf_size;
  132. if (AV_RL32(buf)==MVIh_TAG||AV_RB32(buf)==MVIh_TAG) {
  133. cmv_process_header(s, buf+EA_PREAMBLE_SIZE, buf_end);
  134. return buf_size;
  135. }
  136. if (avcodec_check_dimensions(s->avctx, s->width, s->height))
  137. return -1;
  138. /* shuffle */
  139. if (s->last2_frame.data[0])
  140. avctx->release_buffer(avctx, &s->last2_frame);
  141. FFSWAP(AVFrame, s->last_frame, s->last2_frame);
  142. FFSWAP(AVFrame, s->frame, s->last_frame);
  143. s->frame.reference = 1;
  144. s->frame.buffer_hints = FF_BUFFER_HINTS_VALID;
  145. if (avctx->get_buffer(avctx, &s->frame)<0) {
  146. av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  147. return -1;
  148. }
  149. memcpy(s->frame.data[1], s->palette, AVPALETTE_SIZE);
  150. buf += EA_PREAMBLE_SIZE;
  151. if ((buf[0]&1)) { // subtype
  152. cmv_decode_inter(s, buf+2, buf_end);
  153. s->frame.key_frame = 0;
  154. s->frame.pict_type = FF_P_TYPE;
  155. }else{
  156. s->frame.key_frame = 1;
  157. s->frame.pict_type = FF_I_TYPE;
  158. cmv_decode_intra(s, buf+2, buf_end);
  159. }
  160. *data_size = sizeof(AVFrame);
  161. *(AVFrame*)data = s->frame;
  162. return buf_size;
  163. }
  164. static av_cold int cmv_decode_end(AVCodecContext *avctx){
  165. CmvContext *s = avctx->priv_data;
  166. if (s->frame.data[0])
  167. s->avctx->release_buffer(avctx, &s->frame);
  168. if (s->last_frame.data[0])
  169. s->avctx->release_buffer(avctx, &s->last_frame);
  170. if (s->last2_frame.data[0])
  171. s->avctx->release_buffer(avctx, &s->last2_frame);
  172. return 0;
  173. }
  174. AVCodec eacmv_decoder = {
  175. "eacmv",
  176. CODEC_TYPE_VIDEO,
  177. CODEC_ID_CMV,
  178. sizeof(CmvContext),
  179. cmv_decode_init,
  180. NULL,
  181. cmv_decode_end,
  182. cmv_decode_frame,
  183. CODEC_CAP_DR1,
  184. .long_name = NULL_IF_CONFIG_SMALL("Electronic Arts CMV Video"),
  185. };