FFmpeg
Loading...
Searching...
No Matches
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"
33#include "libavutil/imgutils.h"
34#include "avcodec.h"
35#include "codec_internal.h"
36#include "decode.h"
37
38typedef struct CmvContext {
40 AVFrame *last_frame; ///< last
41 AVFrame *last2_frame; ///< second-last
43 unsigned int palette[AVPALETTE_COUNT];
45
47 CmvContext *s = avctx->priv_data;
48
49 s->avctx = avctx;
50 avctx->pix_fmt = AV_PIX_FMT_PAL8;
51
52 s->last_frame = av_frame_alloc();
53 s->last2_frame = av_frame_alloc();
54 if (!s->last_frame || !s->last2_frame)
55 return AVERROR(ENOMEM);
56
57 return 0;
58}
59
61 const uint8_t *buf, const uint8_t *buf_end)
62{
63 unsigned char *dst = frame->data[0];
64 int i;
65
66 for (i=0; i < s->avctx->height && buf_end - buf >= s->avctx->width; i++) {
67 memcpy(dst, buf, s->avctx->width);
68 dst += frame->linesize[0];
69 buf += s->avctx->width;
70 }
71}
72
73static void cmv_motcomp(unsigned char *dst, ptrdiff_t dst_stride,
74 const unsigned char *src, ptrdiff_t src_stride,
75 int x, int y,
76 int xoffset, int yoffset,
77 int width, int height){
78 int i,j;
79
80 for(j=y;j<y+4;j++)
81 for(i=x;i<x+4;i++)
82 {
83 if (i+xoffset>=0 && i+xoffset<width &&
84 j+yoffset>=0 && j+yoffset<height) {
85 dst[j*dst_stride + i] = src[(j+yoffset)*src_stride + i+xoffset];
86 }else{
87 dst[j*dst_stride + i] = 0;
88 }
89 }
90}
91
92static void cmv_decode_inter(CmvContext *s, AVFrame *frame, const uint8_t *buf,
93 const uint8_t *buf_end)
94{
95 const uint8_t *raw = buf + (s->avctx->width*s->avctx->height/16);
96 int x,y,i;
97
98 i = 0;
99 for(y=0; y<s->avctx->height/4; y++)
100 for(x=0; x<s->avctx->width/4 && buf_end - buf > i; x++) {
101 if (buf[i]==0xFF) {
102 unsigned char *dst = frame->data[0] + (y*4)*frame->linesize[0] + x*4;
103 if (raw+16<buf_end && *raw==0xFF) { /* intra */
104 raw++;
105 memcpy(dst, raw, 4);
106 memcpy(dst + frame->linesize[0], raw+4, 4);
107 memcpy(dst + 2 * frame->linesize[0], raw+8, 4);
108 memcpy(dst + 3 * frame->linesize[0], raw+12, 4);
109 raw+=16;
110 }else if(raw<buf_end) { /* inter using second-last frame as reference */
111 int xoffset = (*raw & 0xF) - 7;
112 int yoffset = ((*raw >> 4)) - 7;
113 if (s->last2_frame->data[0])
114 cmv_motcomp(frame->data[0], frame->linesize[0],
115 s->last2_frame->data[0], s->last2_frame->linesize[0],
116 x*4, y*4, xoffset, yoffset, s->avctx->width, s->avctx->height);
117 raw++;
118 }
119 }else{ /* inter using last frame as reference */
120 int xoffset = (buf[i] & 0xF) - 7;
121 int yoffset = ((buf[i] >> 4)) - 7;
122 if (s->last_frame->data[0])
123 cmv_motcomp(frame->data[0], frame->linesize[0],
124 s->last_frame->data[0], s->last_frame->linesize[0],
125 x*4, y*4, xoffset, yoffset, s->avctx->width, s->avctx->height);
126 }
127 i++;
128 }
129}
130
131static int cmv_process_header(CmvContext *s, const uint8_t *buf, const uint8_t *buf_end)
132{
133 int pal_start, pal_count, i, ret, fps;
134
135 if(buf_end - buf < 16) {
136 av_log(s->avctx, AV_LOG_WARNING, "truncated header\n");
137 return AVERROR_INVALIDDATA;
138 }
139
140 s->width = AV_RL16(&buf[4]);
141 s->height = AV_RL16(&buf[6]);
142
143 if (s->width != s->avctx->width ||
144 s->height != s->avctx->height) {
145 av_frame_unref(s->last_frame);
146 av_frame_unref(s->last2_frame);
147 }
148
149 ret = ff_set_dimensions(s->avctx, s->width, s->height);
150 if (ret < 0)
151 return ret;
152
153 fps = AV_RL16(&buf[10]);
154 if (fps > 0)
155 s->avctx->framerate = (AVRational){ fps, 1 };
156
157 pal_start = AV_RL16(&buf[12]);
158 pal_count = AV_RL16(&buf[14]);
159
160 buf += 16;
161 for (i=pal_start; i<pal_start+pal_count && i<AVPALETTE_COUNT && buf_end - buf >= 3; i++) {
162 s->palette[i] = 0xFFU << 24 | AV_RB24(buf);
163 buf += 3;
164 }
165
166 return 0;
167}
168
169#define EA_PREAMBLE_SIZE 8
170#define MVIh_TAG MKTAG('M', 'V', 'I', 'h')
171
173 int *got_frame, AVPacket *avpkt)
174{
175 const uint8_t *buf = avpkt->data;
176 int buf_size = avpkt->size;
177 CmvContext *s = avctx->priv_data;
178 const uint8_t *buf_end = buf + buf_size;
179 int ret;
180
181 if (buf_end - buf < EA_PREAMBLE_SIZE)
182 return AVERROR_INVALIDDATA;
183
184 if (AV_RL32(buf)==MVIh_TAG||AV_RB32(buf)==MVIh_TAG) {
185 unsigned size = AV_RL32(buf + 4);
186 ret = cmv_process_header(s, buf+EA_PREAMBLE_SIZE, buf_end);
187 if (ret < 0)
188 return ret;
189 if (size > buf_end - buf - EA_PREAMBLE_SIZE)
190 return AVERROR_INVALIDDATA;
191 buf += size;
192 }
193
194 if ((ret = av_image_check_size(s->width, s->height, 0, s->avctx)) < 0)
195 return ret;
196
197 buf += EA_PREAMBLE_SIZE;
198 if (!(buf[0]&1) && buf_end - buf < s->width * s->height * (int64_t)(100 - s->avctx->discard_damaged_percentage) / 100)
199 return AVERROR_INVALIDDATA;
200
201 if ((ret = ff_get_buffer(avctx, frame, AV_GET_BUFFER_FLAG_REF)) < 0)
202 return ret;
203
204 memcpy(frame->data[1], s->palette, AVPALETTE_SIZE);
205
206 if ((buf[0]&1)) { // subtype
207 cmv_decode_inter(s, frame, buf+2, buf_end);
208 frame->flags &= ~AV_FRAME_FLAG_KEY;
209 frame->pict_type = AV_PICTURE_TYPE_P;
210 }else{
211 frame->flags |= AV_FRAME_FLAG_KEY;
212 frame->pict_type = AV_PICTURE_TYPE_I;
213 cmv_decode_intra(s, frame, buf+2, buf_end);
214 }
215
216 FFSWAP(AVFrame*, s->last2_frame, s->last_frame);
217 if ((ret = av_frame_replace(s->last_frame, frame)) < 0)
218 return ret;
219
220 *got_frame = 1;
221
222 return buf_size;
223}
224
226 CmvContext *s = avctx->priv_data;
227
228 av_frame_free(&s->last_frame);
229 av_frame_free(&s->last2_frame);
230
231 return 0;
232}
233
235 .p.name = "eacmv",
236 CODEC_LONG_NAME("Electronic Arts CMV video"),
237 .p.type = AVMEDIA_TYPE_VIDEO,
238 .p.id = AV_CODEC_ID_CMV,
239 .priv_data_size = sizeof(CmvContext),
243 .p.capabilities = AV_CODEC_CAP_DR1,
244 .caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
245};
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
Definition dsp.h:87
const FFCodec ff_eacmv_decoder
Definition eacmv.c:234
static av_cold void close(AVCodecParserContext *s)
Definition apv_parser.c:197
Libavcodec external API header.
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
#define s(width, name)
Definition cbs_vp9.c:198
#define FF_CODEC_DECODE_CB(func)
#define CODEC_LONG_NAME(str)
#define FF_CODEC_CAP_INIT_CLEANUP
The codec allows calling the close function for deallocation even if the init function returned a fai...
common internal and external API header
long long int64_t
Definition coverity.c:34
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame.
Definition decode.c:1777
int ff_set_dimensions(AVCodecContext *s, int width, int height)
Definition utils.c:91
static AVFrame * frame
int(* init)(AVBSFContext *ctx)
Definition dts2pts.c:608
static int cmv_process_header(CmvContext *s, const uint8_t *buf, const uint8_t *buf_end)
Definition eacmv.c:131
static void cmv_decode_inter(CmvContext *s, AVFrame *frame, const uint8_t *buf, const uint8_t *buf_end)
Definition eacmv.c:92
static av_cold int cmv_decode_init(AVCodecContext *avctx)
Definition eacmv.c:46
static av_cold int cmv_decode_end(AVCodecContext *avctx)
Definition eacmv.c:225
static void cmv_decode_intra(CmvContext *s, AVFrame *frame, const uint8_t *buf, const uint8_t *buf_end)
Definition eacmv.c:60
#define EA_PREAMBLE_SIZE
Definition eacmv.c:169
static int cmv_decode_frame(AVCodecContext *avctx, AVFrame *frame, int *got_frame, AVPacket *avpkt)
Definition eacmv.c:172
#define MVIh_TAG
Definition eacmv.c:170
static void cmv_motcomp(unsigned char *dst, ptrdiff_t dst_stride, const unsigned char *src, ptrdiff_t src_stride, int x, int y, int xoffset, int yoffset, int width, int height)
Definition eacmv.c:73
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition codec.h:49
#define AV_GET_BUFFER_FLAG_REF
The decoder will keep a reference to the frame and may reuse it later.
Definition avcodec.h:415
@ AV_CODEC_ID_CMV
Definition codec_id.h:168
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition error.h:61
#define AVERROR(e)
Definition error.h:45
#define AV_FRAME_FLAG_KEY
A flag to mark frames that are keyframes.
Definition frame.h:687
void av_frame_unref(AVFrame *frame)
Unreference all the buffers referenced by frame and reset the frame fields.
Definition frame.c:496
int av_frame_replace(AVFrame *dst, const AVFrame *src)
Ensure the destination frame refers to the same data described by the source frame,...
Definition frame.c:376
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition frame.c:64
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
Definition frame.c:52
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition log.h:216
@ AVMEDIA_TYPE_VIDEO
Definition avutil.h:200
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:318
@ AV_PICTURE_TYPE_I
Intra.
Definition avutil.h:278
@ AV_PICTURE_TYPE_P
Predicted.
Definition avutil.h:279
misc image utilities
#define AV_RL32(p)
#define AV_RB32(p)
#define AV_RL16(p)
#define AV_RB24(x)
#define av_cold
Definition attributes.h:117
#define FFSWAP(type, a, b)
Definition macros.h:52
@ AV_PIX_FMT_PAL8
8 bits with AV_PIX_FMT_RGB32 palette
Definition pixfmt.h:84
#define AVPALETTE_COUNT
Definition pixfmt.h:33
#define AVPALETTE_SIZE
Definition pixfmt.h:32
main external API structure.
Definition avcodec.h:443
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition avcodec.h:643
void * priv_data
Definition avcodec.h:470
This structure describes decoded (raw) audio or video data.
Definition frame.h:472
This structure stores compressed data.
Definition packet.h:580
int size
Definition packet.h:604
uint8_t * data
Definition packet.h:603
Rational number (pair of numerator and denominator).
Definition rational.h:58
unsigned int palette[AVPALETTE_COUNT]
Definition eacmv.c:43
int height
Definition eacmv.c:42
AVFrame * last2_frame
second-last
Definition eacmv.c:41
AVCodecContext * avctx
Definition eacmv.c:39
AVFrame * last_frame
last
Definition eacmv.c:40
int width
Definition eacmv.c:42
#define av_log(a,...)
#define src
Definition vp8dsp.c:248
#define height
Definition dsp.h:89
#define width
Definition dsp.h:89
int size