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.

239 lines
7.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
  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 frame; ///< current
  37. AVFrame last_frame; ///< last
  38. AVFrame last2_frame; ///< second-last
  39. int width, height;
  40. unsigned int palette[AVPALETTE_COUNT];
  41. } CmvContext;
  42. static av_cold int cmv_decode_init(AVCodecContext *avctx){
  43. CmvContext *s = avctx->priv_data;
  44. avcodec_get_frame_defaults(&s->frame);
  45. avcodec_get_frame_defaults(&s->last_frame);
  46. avcodec_get_frame_defaults(&s->last2_frame);
  47. s->avctx = avctx;
  48. avctx->pix_fmt = AV_PIX_FMT_PAL8;
  49. return 0;
  50. }
  51. static void cmv_decode_intra(CmvContext * s, const uint8_t *buf, const uint8_t *buf_end){
  52. unsigned char *dst = s->frame.data[0];
  53. int i;
  54. for (i=0; i < s->avctx->height && buf_end - buf >= s->avctx->width; i++) {
  55. memcpy(dst, buf, s->avctx->width);
  56. dst += s->frame.linesize[0];
  57. buf += s->avctx->width;
  58. }
  59. }
  60. static void cmv_motcomp(unsigned char *dst, int dst_stride,
  61. const unsigned char *src, int src_stride,
  62. int x, int y,
  63. int xoffset, int yoffset,
  64. int width, int height){
  65. int i,j;
  66. for(j=y;j<y+4;j++)
  67. for(i=x;i<x+4;i++)
  68. {
  69. if (i+xoffset>=0 && i+xoffset<width &&
  70. j+yoffset>=0 && j+yoffset<height) {
  71. dst[j*dst_stride + i] = src[(j+yoffset)*src_stride + i+xoffset];
  72. }else{
  73. dst[j*dst_stride + i] = 0;
  74. }
  75. }
  76. }
  77. static void cmv_decode_inter(CmvContext * s, const uint8_t *buf, const uint8_t *buf_end){
  78. const uint8_t *raw = buf + (s->avctx->width*s->avctx->height/16);
  79. int x,y,i;
  80. i = 0;
  81. for(y=0; y<s->avctx->height/4; y++)
  82. for(x=0; x<s->avctx->width/4 && buf_end - buf > i; x++) {
  83. if (buf[i]==0xFF) {
  84. unsigned char *dst = s->frame.data[0] + (y*4)*s->frame.linesize[0] + x*4;
  85. if (raw+16<buf_end && *raw==0xFF) { /* intra */
  86. raw++;
  87. memcpy(dst, raw, 4);
  88. memcpy(dst+s->frame.linesize[0], raw+4, 4);
  89. memcpy(dst+2*s->frame.linesize[0], raw+8, 4);
  90. memcpy(dst+3*s->frame.linesize[0], raw+12, 4);
  91. raw+=16;
  92. }else if(raw<buf_end) { /* inter using second-last frame as reference */
  93. int xoffset = (*raw & 0xF) - 7;
  94. int yoffset = ((*raw >> 4)) - 7;
  95. if (s->last2_frame.data[0])
  96. cmv_motcomp(s->frame.data[0], s->frame.linesize[0],
  97. s->last2_frame.data[0], s->last2_frame.linesize[0],
  98. x*4, y*4, xoffset, yoffset, s->avctx->width, s->avctx->height);
  99. raw++;
  100. }
  101. }else{ /* inter using last frame as reference */
  102. int xoffset = (buf[i] & 0xF) - 7;
  103. int yoffset = ((buf[i] >> 4)) - 7;
  104. if (s->last_frame.data[0])
  105. cmv_motcomp(s->frame.data[0], s->frame.linesize[0],
  106. s->last_frame.data[0], s->last_frame.linesize[0],
  107. x*4, y*4, xoffset, yoffset, s->avctx->width, s->avctx->height);
  108. }
  109. i++;
  110. }
  111. }
  112. static void cmv_process_header(CmvContext *s, const uint8_t *buf, const uint8_t *buf_end)
  113. {
  114. int pal_start, pal_count, i;
  115. if(buf_end - buf < 16) {
  116. av_log(s->avctx, AV_LOG_WARNING, "truncated header\n");
  117. return;
  118. }
  119. s->width = AV_RL16(&buf[4]);
  120. s->height = AV_RL16(&buf[6]);
  121. if (s->avctx->width!=s->width || s->avctx->height!=s->height) {
  122. avcodec_set_dimensions(s->avctx, s->width, s->height);
  123. if (s->frame.data[0])
  124. s->avctx->release_buffer(s->avctx, &s->frame);
  125. if (s->last_frame.data[0])
  126. s->avctx->release_buffer(s->avctx, &s->last_frame);
  127. }
  128. s->avctx->time_base.num = 1;
  129. s->avctx->time_base.den = AV_RL16(&buf[10]);
  130. pal_start = AV_RL16(&buf[12]);
  131. pal_count = AV_RL16(&buf[14]);
  132. buf += 16;
  133. for (i=pal_start; i<pal_start+pal_count && i<AVPALETTE_COUNT && buf_end - buf >= 3; i++) {
  134. s->palette[i] = 0xFFU << 24 | AV_RB24(buf);
  135. buf += 3;
  136. }
  137. }
  138. #define EA_PREAMBLE_SIZE 8
  139. #define MVIh_TAG MKTAG('M', 'V', 'I', 'h')
  140. static int cmv_decode_frame(AVCodecContext *avctx,
  141. void *data, int *got_frame,
  142. AVPacket *avpkt)
  143. {
  144. const uint8_t *buf = avpkt->data;
  145. int buf_size = avpkt->size;
  146. CmvContext *s = avctx->priv_data;
  147. const uint8_t *buf_end = buf + buf_size;
  148. if (buf_end - buf < EA_PREAMBLE_SIZE)
  149. return AVERROR_INVALIDDATA;
  150. if (AV_RL32(buf)==MVIh_TAG||AV_RB32(buf)==MVIh_TAG) {
  151. unsigned size = AV_RL32(buf + 4);
  152. cmv_process_header(s, buf+EA_PREAMBLE_SIZE, buf_end);
  153. if (size > buf_end - buf - EA_PREAMBLE_SIZE)
  154. return -1;
  155. buf += size;
  156. }
  157. if (av_image_check_size(s->width, s->height, 0, s->avctx))
  158. return -1;
  159. /* shuffle */
  160. if (s->last2_frame.data[0])
  161. avctx->release_buffer(avctx, &s->last2_frame);
  162. FFSWAP(AVFrame, s->last_frame, s->last2_frame);
  163. FFSWAP(AVFrame, s->frame, s->last_frame);
  164. s->frame.reference = 3;
  165. s->frame.buffer_hints = FF_BUFFER_HINTS_VALID |
  166. FF_BUFFER_HINTS_READABLE |
  167. FF_BUFFER_HINTS_PRESERVE;
  168. if (ff_get_buffer(avctx, &s->frame)<0) {
  169. av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  170. return -1;
  171. }
  172. memcpy(s->frame.data[1], s->palette, AVPALETTE_SIZE);
  173. buf += EA_PREAMBLE_SIZE;
  174. if ((buf[0]&1)) { // subtype
  175. cmv_decode_inter(s, buf+2, buf_end);
  176. s->frame.key_frame = 0;
  177. s->frame.pict_type = AV_PICTURE_TYPE_P;
  178. }else{
  179. s->frame.key_frame = 1;
  180. s->frame.pict_type = AV_PICTURE_TYPE_I;
  181. cmv_decode_intra(s, buf+2, buf_end);
  182. }
  183. *got_frame = 1;
  184. *(AVFrame*)data = s->frame;
  185. return buf_size;
  186. }
  187. static av_cold int cmv_decode_end(AVCodecContext *avctx){
  188. CmvContext *s = avctx->priv_data;
  189. if (s->frame.data[0])
  190. s->avctx->release_buffer(avctx, &s->frame);
  191. if (s->last_frame.data[0])
  192. s->avctx->release_buffer(avctx, &s->last_frame);
  193. if (s->last2_frame.data[0])
  194. s->avctx->release_buffer(avctx, &s->last2_frame);
  195. return 0;
  196. }
  197. AVCodec ff_eacmv_decoder = {
  198. .name = "eacmv",
  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 = CODEC_CAP_DR1,
  206. .long_name = NULL_IF_CONFIG_SMALL("Electronic Arts CMV video"),
  207. };