eacmv.c 6.8 KB

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