FFmpeg
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
eacmv.c
Go to the documentation of this file.
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 /**
23  * @file
24  * Electronic Arts CMV Video Decoder
25  * by Peter Ross (pross@xvid.org)
26  *
27  * Technical details here:
28  * http://wiki.multimedia.cx/index.php?title=Electronic_Arts_CMV
29  */
30 
31 #include "libavutil/common.h"
32 #include "libavutil/intreadwrite.h"
33 #include "libavutil/imgutils.h"
34 #include "avcodec.h"
35 #include "internal.h"
36 
37 typedef struct CmvContext {
39  AVFrame frame; ///< current
40  AVFrame last_frame; ///< last
41  AVFrame last2_frame; ///< second-last
42  int width, height;
43  unsigned int palette[AVPALETTE_COUNT];
44 } CmvContext;
45 
47  CmvContext *s = avctx->priv_data;
51 
52  s->avctx = avctx;
53  avctx->pix_fmt = AV_PIX_FMT_PAL8;
54  return 0;
55 }
56 
57 static void cmv_decode_intra(CmvContext * s, const uint8_t *buf, const uint8_t *buf_end){
58  unsigned char *dst = s->frame.data[0];
59  int i;
60 
61  for (i=0; i < s->avctx->height && buf_end - buf >= s->avctx->width; i++) {
62  memcpy(dst, buf, s->avctx->width);
63  dst += s->frame.linesize[0];
64  buf += s->avctx->width;
65  }
66 }
67 
68 static void cmv_motcomp(unsigned char *dst, int dst_stride,
69  const unsigned char *src, int src_stride,
70  int x, int y,
71  int xoffset, int yoffset,
72  int width, int height){
73  int i,j;
74 
75  for(j=y;j<y+4;j++)
76  for(i=x;i<x+4;i++)
77  {
78  if (i+xoffset>=0 && i+xoffset<width &&
79  j+yoffset>=0 && j+yoffset<height) {
80  dst[j*dst_stride + i] = src[(j+yoffset)*src_stride + i+xoffset];
81  }else{
82  dst[j*dst_stride + i] = 0;
83  }
84  }
85 }
86 
87 static void cmv_decode_inter(CmvContext * s, const uint8_t *buf, const uint8_t *buf_end){
88  const uint8_t *raw = buf + (s->avctx->width*s->avctx->height/16);
89  int x,y,i;
90 
91  i = 0;
92  for(y=0; y<s->avctx->height/4; y++)
93  for(x=0; x<s->avctx->width/4 && buf_end - buf > i; x++) {
94  if (buf[i]==0xFF) {
95  unsigned char *dst = s->frame.data[0] + (y*4)*s->frame.linesize[0] + x*4;
96  if (raw+16<buf_end && *raw==0xFF) { /* intra */
97  raw++;
98  memcpy(dst, raw, 4);
99  memcpy(dst+s->frame.linesize[0], raw+4, 4);
100  memcpy(dst+2*s->frame.linesize[0], raw+8, 4);
101  memcpy(dst+3*s->frame.linesize[0], raw+12, 4);
102  raw+=16;
103  }else if(raw<buf_end) { /* inter using second-last frame as reference */
104  int xoffset = (*raw & 0xF) - 7;
105  int yoffset = ((*raw >> 4)) - 7;
106  if (s->last2_frame.data[0])
107  cmv_motcomp(s->frame.data[0], s->frame.linesize[0],
108  s->last2_frame.data[0], s->last2_frame.linesize[0],
109  x*4, y*4, xoffset, yoffset, s->avctx->width, s->avctx->height);
110  raw++;
111  }
112  }else{ /* inter using last frame as reference */
113  int xoffset = (buf[i] & 0xF) - 7;
114  int yoffset = ((buf[i] >> 4)) - 7;
115  if (s->last_frame.data[0])
116  cmv_motcomp(s->frame.data[0], s->frame.linesize[0],
117  s->last_frame.data[0], s->last_frame.linesize[0],
118  x*4, y*4, xoffset, yoffset, s->avctx->width, s->avctx->height);
119  }
120  i++;
121  }
122 }
123 
124 static void cmv_process_header(CmvContext *s, const uint8_t *buf, const uint8_t *buf_end)
125 {
126  int pal_start, pal_count, i;
127 
128  if(buf_end - buf < 16) {
129  av_log(s->avctx, AV_LOG_WARNING, "truncated header\n");
130  return;
131  }
132 
133  s->width = AV_RL16(&buf[4]);
134  s->height = AV_RL16(&buf[6]);
135  if (s->avctx->width!=s->width || s->avctx->height!=s->height) {
137  if (s->frame.data[0])
138  s->avctx->release_buffer(s->avctx, &s->frame);
139  if (s->last_frame.data[0])
140  s->avctx->release_buffer(s->avctx, &s->last_frame);
141  }
142 
143  s->avctx->time_base.num = 1;
144  s->avctx->time_base.den = AV_RL16(&buf[10]);
145 
146  pal_start = AV_RL16(&buf[12]);
147  pal_count = AV_RL16(&buf[14]);
148 
149  buf += 16;
150  for (i=pal_start; i<pal_start+pal_count && i<AVPALETTE_COUNT && buf_end - buf >= 3; i++) {
151  s->palette[i] = 0xFFU << 24 | AV_RB24(buf);
152  buf += 3;
153  }
154 }
155 
156 #define EA_PREAMBLE_SIZE 8
157 #define MVIh_TAG MKTAG('M', 'V', 'I', 'h')
158 
160  void *data, int *got_frame,
161  AVPacket *avpkt)
162 {
163  const uint8_t *buf = avpkt->data;
164  int buf_size = avpkt->size;
165  CmvContext *s = avctx->priv_data;
166  const uint8_t *buf_end = buf + buf_size;
167 
168  if (buf_end - buf < EA_PREAMBLE_SIZE)
169  return AVERROR_INVALIDDATA;
170 
171  if (AV_RL32(buf)==MVIh_TAG||AV_RB32(buf)==MVIh_TAG) {
172  unsigned size = AV_RL32(buf + 4);
173  cmv_process_header(s, buf+EA_PREAMBLE_SIZE, buf_end);
174  if (size > buf_end - buf - EA_PREAMBLE_SIZE)
175  return -1;
176  buf += size;
177  }
178 
179  if (av_image_check_size(s->width, s->height, 0, s->avctx))
180  return -1;
181 
182  /* shuffle */
183  if (s->last2_frame.data[0])
184  avctx->release_buffer(avctx, &s->last2_frame);
186  FFSWAP(AVFrame, s->frame, s->last_frame);
187 
188  s->frame.reference = 3;
192  if (ff_get_buffer(avctx, &s->frame)<0) {
193  av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
194  return -1;
195  }
196 
197  memcpy(s->frame.data[1], s->palette, AVPALETTE_SIZE);
198 
199  buf += EA_PREAMBLE_SIZE;
200  if ((buf[0]&1)) { // subtype
201  cmv_decode_inter(s, buf+2, buf_end);
202  s->frame.key_frame = 0;
204  }else{
205  s->frame.key_frame = 1;
207  cmv_decode_intra(s, buf+2, buf_end);
208  }
209 
210  *got_frame = 1;
211  *(AVFrame*)data = s->frame;
212 
213  return buf_size;
214 }
215 
217  CmvContext *s = avctx->priv_data;
218  if (s->frame.data[0])
219  s->avctx->release_buffer(avctx, &s->frame);
220  if (s->last_frame.data[0])
221  s->avctx->release_buffer(avctx, &s->last_frame);
222  if (s->last2_frame.data[0])
223  s->avctx->release_buffer(avctx, &s->last2_frame);
224 
225  return 0;
226 }
227 
229  .name = "eacmv",
230  .type = AVMEDIA_TYPE_VIDEO,
231  .id = AV_CODEC_ID_CMV,
232  .priv_data_size = sizeof(CmvContext),
236  .capabilities = CODEC_CAP_DR1,
237  .long_name = NULL_IF_CONFIG_SMALL("Electronic Arts CMV video"),
238 };