Line | Branch | Exec | Source |
---|---|---|---|
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 "codec_internal.h" | ||
36 | #include "decode.h" | ||
37 | |||
38 | typedef struct CmvContext { | ||
39 | AVCodecContext *avctx; | ||
40 | AVFrame *last_frame; ///< last | ||
41 | AVFrame *last2_frame; ///< second-last | ||
42 | int width, height; | ||
43 | unsigned int palette[AVPALETTE_COUNT]; | ||
44 | } CmvContext; | ||
45 | |||
46 | 2 | static av_cold int cmv_decode_init(AVCodecContext *avctx){ | |
47 | 2 | CmvContext *s = avctx->priv_data; | |
48 | |||
49 | 2 | s->avctx = avctx; | |
50 | 2 | avctx->pix_fmt = AV_PIX_FMT_PAL8; | |
51 | |||
52 | 2 | s->last_frame = av_frame_alloc(); | |
53 | 2 | s->last2_frame = av_frame_alloc(); | |
54 |
2/4✓ Branch 0 taken 2 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 2 times.
|
2 | if (!s->last_frame || !s->last2_frame) |
55 | ✗ | return AVERROR(ENOMEM); | |
56 | |||
57 | 2 | return 0; | |
58 | } | ||
59 | |||
60 | 3 | static void cmv_decode_intra(CmvContext * s, AVFrame *frame, | |
61 | const uint8_t *buf, const uint8_t *buf_end) | ||
62 | { | ||
63 | 3 | unsigned char *dst = frame->data[0]; | |
64 | int i; | ||
65 | |||
66 |
3/4✓ Branch 0 taken 600 times.
✓ Branch 1 taken 3 times.
✓ Branch 2 taken 600 times.
✗ Branch 3 not taken.
|
603 | for (i=0; i < s->avctx->height && buf_end - buf >= s->avctx->width; i++) { |
67 | 600 | memcpy(dst, buf, s->avctx->width); | |
68 | 600 | dst += frame->linesize[0]; | |
69 | 600 | buf += s->avctx->width; | |
70 | } | ||
71 | 3 | } | |
72 | |||
73 | 401014 | static 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 |
2/2✓ Branch 0 taken 1604056 times.
✓ Branch 1 taken 401014 times.
|
2005070 | for(j=y;j<y+4;j++) |
81 |
2/2✓ Branch 0 taken 6416224 times.
✓ Branch 1 taken 1604056 times.
|
8020280 | for(i=x;i<x+4;i++) |
82 | { | ||
83 |
2/4✓ Branch 0 taken 6416224 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 6416224 times.
✗ Branch 3 not taken.
|
6416224 | if (i+xoffset>=0 && i+xoffset<width && |
84 |
2/4✓ Branch 0 taken 6416224 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 6416224 times.
✗ Branch 3 not taken.
|
6416224 | j+yoffset>=0 && j+yoffset<height) { |
85 | 6416224 | dst[j*dst_stride + i] = src[(j+yoffset)*src_stride + i+xoffset]; | |
86 | }else{ | ||
87 | ✗ | dst[j*dst_stride + i] = 0; | |
88 | } | ||
89 | } | ||
90 | 401014 | } | |
91 | |||
92 | 192 | static void cmv_decode_inter(CmvContext *s, AVFrame *frame, const uint8_t *buf, | |
93 | const uint8_t *buf_end) | ||
94 | { | ||
95 | 192 | const uint8_t *raw = buf + (s->avctx->width*s->avctx->height/16); | |
96 | int x,y,i; | ||
97 | |||
98 | 192 | i = 0; | |
99 |
2/2✓ Branch 0 taken 9600 times.
✓ Branch 1 taken 192 times.
|
9792 | for(y=0; y<s->avctx->height/4; y++) |
100 |
3/4✓ Branch 0 taken 480000 times.
✓ Branch 1 taken 9600 times.
✓ Branch 2 taken 480000 times.
✗ Branch 3 not taken.
|
489600 | for(x=0; x<s->avctx->width/4 && buf_end - buf > i; x++) { |
101 |
2/2✓ Branch 0 taken 140687 times.
✓ Branch 1 taken 339313 times.
|
480000 | if (buf[i]==0xFF) { |
102 | 140687 | unsigned char *dst = frame->data[0] + (y*4)*frame->linesize[0] + x*4; | |
103 |
4/4✓ Branch 0 taken 139832 times.
✓ Branch 1 taken 855 times.
✓ Branch 2 taken 78986 times.
✓ Branch 3 taken 60846 times.
|
140687 | if (raw+16<buf_end && *raw==0xFF) { /* intra */ |
104 | 78986 | raw++; | |
105 | 78986 | memcpy(dst, raw, 4); | |
106 | 78986 | memcpy(dst + frame->linesize[0], raw+4, 4); | |
107 | 78986 | memcpy(dst + 2 * frame->linesize[0], raw+8, 4); | |
108 | 78986 | memcpy(dst + 3 * frame->linesize[0], raw+12, 4); | |
109 | 78986 | raw+=16; | |
110 |
1/2✓ Branch 0 taken 61701 times.
✗ Branch 1 not taken.
|
61701 | }else if(raw<buf_end) { /* inter using second-last frame as reference */ |
111 | 61701 | int xoffset = (*raw & 0xF) - 7; | |
112 | 61701 | int yoffset = ((*raw >> 4)) - 7; | |
113 |
1/2✓ Branch 0 taken 61701 times.
✗ Branch 1 not taken.
|
61701 | if (s->last2_frame->data[0]) |
114 | 61701 | cmv_motcomp(frame->data[0], frame->linesize[0], | |
115 | 61701 | s->last2_frame->data[0], s->last2_frame->linesize[0], | |
116 | 61701 | x*4, y*4, xoffset, yoffset, s->avctx->width, s->avctx->height); | |
117 | 61701 | raw++; | |
118 | } | ||
119 | }else{ /* inter using last frame as reference */ | ||
120 | 339313 | int xoffset = (buf[i] & 0xF) - 7; | |
121 | 339313 | int yoffset = ((buf[i] >> 4)) - 7; | |
122 |
1/2✓ Branch 0 taken 339313 times.
✗ Branch 1 not taken.
|
339313 | if (s->last_frame->data[0]) |
123 | 339313 | cmv_motcomp(frame->data[0], frame->linesize[0], | |
124 | 339313 | s->last_frame->data[0], s->last_frame->linesize[0], | |
125 | 339313 | x*4, y*4, xoffset, yoffset, s->avctx->width, s->avctx->height); | |
126 | } | ||
127 | 480000 | i++; | |
128 | } | ||
129 | 192 | } | |
130 | |||
131 | 3 | static 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 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 3 times.
|
3 | if(buf_end - buf < 16) { |
136 | ✗ | av_log(s->avctx, AV_LOG_WARNING, "truncated header\n"); | |
137 | ✗ | return AVERROR_INVALIDDATA; | |
138 | } | ||
139 | |||
140 | 3 | s->width = AV_RL16(&buf[4]); | |
141 | 3 | s->height = AV_RL16(&buf[6]); | |
142 | |||
143 |
2/2✓ Branch 0 taken 2 times.
✓ Branch 1 taken 1 times.
|
3 | if (s->width != s->avctx->width || |
144 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 2 times.
|
2 | s->height != s->avctx->height) { |
145 | 1 | av_frame_unref(s->last_frame); | |
146 | 1 | av_frame_unref(s->last2_frame); | |
147 | } | ||
148 | |||
149 | 3 | ret = ff_set_dimensions(s->avctx, s->width, s->height); | |
150 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 3 times.
|
3 | if (ret < 0) |
151 | ✗ | return ret; | |
152 | |||
153 | 3 | fps = AV_RL16(&buf[10]); | |
154 |
1/2✓ Branch 0 taken 3 times.
✗ Branch 1 not taken.
|
3 | if (fps > 0) |
155 | 3 | s->avctx->framerate = (AVRational){ fps, 1 }; | |
156 | |||
157 | 3 | pal_start = AV_RL16(&buf[12]); | |
158 | 3 | pal_count = AV_RL16(&buf[14]); | |
159 | |||
160 | 3 | buf += 16; | |
161 |
4/6✓ Branch 0 taken 573 times.
✓ Branch 1 taken 3 times.
✓ Branch 2 taken 573 times.
✗ Branch 3 not taken.
✓ Branch 4 taken 573 times.
✗ Branch 5 not taken.
|
576 | for (i=pal_start; i<pal_start+pal_count && i<AVPALETTE_COUNT && buf_end - buf >= 3; i++) { |
162 | 573 | s->palette[i] = 0xFFU << 24 | AV_RB24(buf); | |
163 | 573 | buf += 3; | |
164 | } | ||
165 | |||
166 | 3 | return 0; | |
167 | } | ||
168 | |||
169 | #define EA_PREAMBLE_SIZE 8 | ||
170 | #define MVIh_TAG MKTAG('M', 'V', 'I', 'h') | ||
171 | |||
172 | 195 | static int cmv_decode_frame(AVCodecContext *avctx, AVFrame *frame, | |
173 | int *got_frame, AVPacket *avpkt) | ||
174 | { | ||
175 | 195 | const uint8_t *buf = avpkt->data; | |
176 | 195 | int buf_size = avpkt->size; | |
177 | 195 | CmvContext *s = avctx->priv_data; | |
178 | 195 | const uint8_t *buf_end = buf + buf_size; | |
179 | int ret; | ||
180 | |||
181 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 195 times.
|
195 | if (buf_end - buf < EA_PREAMBLE_SIZE) |
182 | ✗ | return AVERROR_INVALIDDATA; | |
183 | |||
184 |
3/4✓ Branch 0 taken 192 times.
✓ Branch 1 taken 3 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 192 times.
|
195 | if (AV_RL32(buf)==MVIh_TAG||AV_RB32(buf)==MVIh_TAG) { |
185 | 3 | unsigned size = AV_RL32(buf + 4); | |
186 | 3 | ret = cmv_process_header(s, buf+EA_PREAMBLE_SIZE, buf_end); | |
187 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 3 times.
|
3 | if (ret < 0) |
188 | ✗ | return ret; | |
189 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 3 times.
|
3 | if (size > buf_end - buf - EA_PREAMBLE_SIZE) |
190 | ✗ | return AVERROR_INVALIDDATA; | |
191 | 3 | buf += size; | |
192 | } | ||
193 | |||
194 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 195 times.
|
195 | if ((ret = av_image_check_size(s->width, s->height, 0, s->avctx)) < 0) |
195 | ✗ | return ret; | |
196 | |||
197 | 195 | buf += EA_PREAMBLE_SIZE; | |
198 |
3/4✓ Branch 0 taken 3 times.
✓ Branch 1 taken 192 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 3 times.
|
195 | 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 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 195 times.
|
195 | if ((ret = ff_get_buffer(avctx, frame, AV_GET_BUFFER_FLAG_REF)) < 0) |
202 | ✗ | return ret; | |
203 | |||
204 | 195 | memcpy(frame->data[1], s->palette, AVPALETTE_SIZE); | |
205 | |||
206 |
2/2✓ Branch 0 taken 192 times.
✓ Branch 1 taken 3 times.
|
195 | if ((buf[0]&1)) { // subtype |
207 | 192 | cmv_decode_inter(s, frame, buf+2, buf_end); | |
208 | 192 | frame->flags &= ~AV_FRAME_FLAG_KEY; | |
209 | 192 | frame->pict_type = AV_PICTURE_TYPE_P; | |
210 | }else{ | ||
211 | 3 | frame->flags |= AV_FRAME_FLAG_KEY; | |
212 | 3 | frame->pict_type = AV_PICTURE_TYPE_I; | |
213 | 3 | cmv_decode_intra(s, frame, buf+2, buf_end); | |
214 | } | ||
215 | |||
216 | 195 | FFSWAP(AVFrame*, s->last2_frame, s->last_frame); | |
217 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 195 times.
|
195 | if ((ret = av_frame_replace(s->last_frame, frame)) < 0) |
218 | ✗ | return ret; | |
219 | |||
220 | 195 | *got_frame = 1; | |
221 | |||
222 | 195 | return buf_size; | |
223 | } | ||
224 | |||
225 | 2 | static av_cold int cmv_decode_end(AVCodecContext *avctx){ | |
226 | 2 | CmvContext *s = avctx->priv_data; | |
227 | |||
228 | 2 | av_frame_free(&s->last_frame); | |
229 | 2 | av_frame_free(&s->last2_frame); | |
230 | |||
231 | 2 | return 0; | |
232 | } | ||
233 | |||
234 | const FFCodec ff_eacmv_decoder = { | ||
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), | ||
240 | .init = cmv_decode_init, | ||
241 | .close = cmv_decode_end, | ||
242 | FF_CODEC_DECODE_CB(cmv_decode_frame), | ||
243 | .p.capabilities = AV_CODEC_CAP_DR1, | ||
244 | .caps_internal = FF_CODEC_CAP_INIT_CLEANUP, | ||
245 | }; | ||
246 |