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 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 
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 {
42  int width, height;
43  unsigned int palette[AVPALETTE_COUNT];
44 } CmvContext;
45 
47  CmvContext *s = avctx->priv_data;
48  s->avctx = avctx;
49  avctx->pix_fmt = AV_PIX_FMT_PAL8;
50  return 0;
51 }
52 
53 static void cmv_decode_intra(CmvContext * s, const uint8_t *buf, const uint8_t *buf_end){
54  unsigned char *dst = s->frame.data[0];
55  int i;
56 
57  for (i=0; i < s->avctx->height && buf_end - buf >= s->avctx->width; i++) {
58  memcpy(dst, buf, s->avctx->width);
59  dst += s->frame.linesize[0];
60  buf += s->avctx->width;
61  }
62 }
63 
64 static void cmv_motcomp(unsigned char *dst, int dst_stride,
65  const unsigned char *src, int src_stride,
66  int x, int y,
67  int xoffset, int yoffset,
68  int width, int height){
69  int i,j;
70 
71  for(j=y;j<y+4;j++)
72  for(i=x;i<x+4;i++)
73  {
74  if (i+xoffset>=0 && i+xoffset<width &&
75  j+yoffset>=0 && j+yoffset<height) {
76  dst[j*dst_stride + i] = src[(j+yoffset)*src_stride + i+xoffset];
77  }else{
78  dst[j*dst_stride + i] = 0;
79  }
80  }
81 }
82 
83 static void cmv_decode_inter(CmvContext * s, const uint8_t *buf, const uint8_t *buf_end){
84  const uint8_t *raw = buf + (s->avctx->width*s->avctx->height/16);
85  int x,y,i;
86 
87  i = 0;
88  for(y=0; y<s->avctx->height/4; y++)
89  for(x=0; x<s->avctx->width/4 && buf_end - buf > i; x++) {
90  if (buf[i]==0xFF) {
91  unsigned char *dst = s->frame.data[0] + (y*4)*s->frame.linesize[0] + x*4;
92  if (raw+16<buf_end && *raw==0xFF) { /* intra */
93  raw++;
94  memcpy(dst, raw, 4);
95  memcpy(dst+s->frame.linesize[0], raw+4, 4);
96  memcpy(dst+2*s->frame.linesize[0], raw+8, 4);
97  memcpy(dst+3*s->frame.linesize[0], raw+12, 4);
98  raw+=16;
99  }else if(raw<buf_end) { /* inter using second-last frame as reference */
100  int xoffset = (*raw & 0xF) - 7;
101  int yoffset = ((*raw >> 4)) - 7;
102  if (s->last2_frame.data[0])
103  cmv_motcomp(s->frame.data[0], s->frame.linesize[0],
104  s->last2_frame.data[0], s->last2_frame.linesize[0],
105  x*4, y*4, xoffset, yoffset, s->avctx->width, s->avctx->height);
106  raw++;
107  }
108  }else{ /* inter using last frame as reference */
109  int xoffset = (buf[i] & 0xF) - 7;
110  int yoffset = ((buf[i] >> 4)) - 7;
111  if (s->last_frame.data[0])
112  cmv_motcomp(s->frame.data[0], s->frame.linesize[0],
113  s->last_frame.data[0], s->last_frame.linesize[0],
114  x*4, y*4, xoffset, yoffset, s->avctx->width, s->avctx->height);
115  }
116  i++;
117  }
118 }
119 
120 static void cmv_process_header(CmvContext *s, const uint8_t *buf, const uint8_t *buf_end)
121 {
122  int pal_start, pal_count, i, fps;
123 
124  if(buf_end - buf < 16) {
125  av_log(s->avctx, AV_LOG_WARNING, "truncated header\n");
126  return;
127  }
128 
129  s->width = AV_RL16(&buf[4]);
130  s->height = AV_RL16(&buf[6]);
131  if (s->avctx->width!=s->width || s->avctx->height!=s->height)
133 
134  fps = AV_RL16(&buf[10]);
135  if (fps > 0)
136  s->avctx->time_base = (AVRational){ 1, fps };
137 
138  pal_start = AV_RL16(&buf[12]);
139  pal_count = AV_RL16(&buf[14]);
140 
141  buf += 16;
142  for (i=pal_start; i<pal_start+pal_count && i<AVPALETTE_COUNT && buf_end - buf >= 3; i++) {
143  s->palette[i] = AV_RB24(buf);
144  buf += 3;
145  }
146 }
147 
148 #define EA_PREAMBLE_SIZE 8
149 #define MVIh_TAG MKTAG('M', 'V', 'I', 'h')
150 
152  void *data, int *got_frame,
153  AVPacket *avpkt)
154 {
155  const uint8_t *buf = avpkt->data;
156  int buf_size = avpkt->size;
157  CmvContext *s = avctx->priv_data;
158  const uint8_t *buf_end = buf + buf_size;
159 
160  if (buf_end - buf < EA_PREAMBLE_SIZE)
161  return AVERROR_INVALIDDATA;
162 
163  if (AV_RL32(buf)==MVIh_TAG||AV_RB32(buf)==MVIh_TAG) {
164  cmv_process_header(s, buf+EA_PREAMBLE_SIZE, buf_end);
165  return buf_size;
166  }
167 
168  if (av_image_check_size(s->width, s->height, 0, s->avctx))
169  return -1;
170 
171  /* shuffle */
172  if (s->last2_frame.data[0])
173  avctx->release_buffer(avctx, &s->last2_frame);
175  FFSWAP(AVFrame, s->frame, s->last_frame);
176 
177  s->frame.reference = 1;
179  if (ff_get_buffer(avctx, &s->frame)<0) {
180  av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
181  return -1;
182  }
183 
184  memcpy(s->frame.data[1], s->palette, AVPALETTE_SIZE);
185 
186  buf += EA_PREAMBLE_SIZE;
187  if ((buf[0]&1)) { // subtype
188  cmv_decode_inter(s, buf+2, buf_end);
189  s->frame.key_frame = 0;
191  }else{
192  s->frame.key_frame = 1;
194  cmv_decode_intra(s, buf+2, buf_end);
195  }
196 
197  *got_frame = 1;
198  *(AVFrame*)data = s->frame;
199 
200  return buf_size;
201 }
202 
204  CmvContext *s = avctx->priv_data;
205  if (s->frame.data[0])
206  s->avctx->release_buffer(avctx, &s->frame);
207  if (s->last_frame.data[0])
208  s->avctx->release_buffer(avctx, &s->last_frame);
209  if (s->last2_frame.data[0])
210  s->avctx->release_buffer(avctx, &s->last2_frame);
211 
212  return 0;
213 }
214 
216  .name = "eacmv",
217  .type = AVMEDIA_TYPE_VIDEO,
218  .id = AV_CODEC_ID_CMV,
219  .priv_data_size = sizeof(CmvContext),
223  .capabilities = CODEC_CAP_DR1,
224  .long_name = NULL_IF_CONFIG_SMALL("Electronic Arts CMV video"),
225 };
#define MVIh_TAG
Definition: eacmv.c:149
int width
Definition: eacmv.c:42
This structure describes decoded (raw) audio or video data.
Definition: avcodec.h:989
int buffer_hints
codec suggestion on buffer type if != 0
Definition: avcodec.h:1253
void(* release_buffer)(struct AVCodecContext *c, AVFrame *pic)
Called to release buffers which were allocated with get_buffer.
Definition: avcodec.h:2259
misc image utilities
void avcodec_set_dimensions(AVCodecContext *s, int width, int height)
Definition: utils.c:149
int size
Definition: avcodec.h:916
#define AV_RB24
Definition: intreadwrite.h:64
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:1533
#define AV_RL16
Definition: intreadwrite.h:42
AVCodec.
Definition: avcodec.h:2960
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented...
Definition: avcodec.h:1465
unsigned int palette[AVPALETTE_COUNT]
Definition: eacmv.c:43
static int decode(MimicContext *ctx, int quality, int num_coeffs, int is_iframe)
Definition: mimic.c:228
uint8_t
8 bit with PIX_FMT_RGB32 palette
Definition: pixfmt.h:76
#define AV_RB32
Definition: intreadwrite.h:130
AVFrame last_frame
last
Definition: eacmv.c:40
const char data[16]
Definition: mxf.c:66
uint8_t * data
Definition: avcodec.h:915
static int init(AVCodecParserContext *s)
Definition: h264_parser.c:335
AVFrame frame
current
Definition: eacmv.c:39
int reference
is this picture used as reference The values for this are the same as the MpegEncContext.picture_structure variable, that is 1->top field, 2->bottom field, 3->frame/both fields.
Definition: avcodec.h:1132
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:88
struct CmvContext CmvContext
AVCodec ff_eacmv_decoder
Definition: eacmv.c:215
void av_log(void *avcl, int level, const char *fmt,...)
Definition: log.c:146
const char * name
Name of the codec implementation.
Definition: avcodec.h:2967
int height
Definition: eacmv.c:42
struct AVRational AVRational
rational number numerator/denominator
static av_cold int cmv_decode_init(AVCodecContext *avctx)
Definition: eacmv.c:46
int av_image_check_size(unsigned int w, unsigned int h, int log_offset, void *log_ctx)
Check if the given dimension of an image is valid, meaning that all bytes of the image can be address...
Definition: imgutils.c:220
enum AVPictureType pict_type
Picture type of the frame, see ?_TYPE below.
Definition: avcodec.h:1065
static int cmv_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: eacmv.c:151
int width
picture width / height.
Definition: avcodec.h:1508
static void cmv_process_header(CmvContext *s, const uint8_t *buf, const uint8_t *buf_end)
Definition: eacmv.c:120
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame)
Get a buffer for a frame.
Definition: utils.c:464
#define AV_RL32
Definition: intreadwrite.h:146
static void cmv_motcomp(unsigned char *dst, int dst_stride, const unsigned char *src, int src_stride, int x, int y, int xoffset, int yoffset, int width, int height)
Definition: eacmv.c:64
static int width
Definition: utils.c:156
AVCodecContext * avctx
Definition: eacmv.c:38
external API header
int linesize[AV_NUM_DATA_POINTERS]
Size, in bytes, of the data for each picture/channel plane.
Definition: avcodec.h:1008
AVFrame last2_frame
second-last
Definition: eacmv.c:41
main external API structure.
Definition: avcodec.h:1339
static void close(AVCodecParserContext *s)
Definition: h264_parser.c:326
static void cmv_decode_inter(CmvContext *s, const uint8_t *buf, const uint8_t *buf_end)
Definition: eacmv.c:83
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: avcodec.h:997
int height
Definition: gxfenc.c:72
static void cmv_decode_intra(CmvContext *s, const uint8_t *buf, const uint8_t *buf_end)
Definition: eacmv.c:53
common internal api header.
common internal and external API header
void * priv_data
Definition: avcodec.h:1382
int key_frame
1 -> keyframe, 0-> not
Definition: avcodec.h:1058
This structure stores compressed data.
Definition: avcodec.h:898
static av_cold int cmv_decode_end(AVCodecContext *avctx)
Definition: eacmv.c:203
#define EA_PREAMBLE_SIZE
Definition: eacmv.c:148
Predicted.
Definition: avutil.h:246
if(!(ptr_align%ac->ptr_align)&&samples_align >=aligned_len)