Line | Branch | Exec | Source |
---|---|---|---|
1 | /* | ||
2 | * Silicon Graphics Motion Video Compressor 1 & 2 decoder | ||
3 | * Copyright (c) 2012 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 Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
20 | */ | ||
21 | |||
22 | /** | ||
23 | * @file | ||
24 | * Silicon Graphics Motion Video Compressor 1 & 2 decoder | ||
25 | */ | ||
26 | |||
27 | #include "config_components.h" | ||
28 | |||
29 | #include "libavutil/intreadwrite.h" | ||
30 | |||
31 | #include "avcodec.h" | ||
32 | #include "bytestream.h" | ||
33 | #include "codec_internal.h" | ||
34 | #include "decode.h" | ||
35 | |||
36 | typedef struct MvcContext { | ||
37 | int vflip; | ||
38 | } MvcContext; | ||
39 | |||
40 | 4 | static av_cold int mvc_decode_init(AVCodecContext *avctx) | |
41 | { | ||
42 | 4 | MvcContext *s = avctx->priv_data; | |
43 | 4 | int width = avctx->width; | |
44 | 4 | int height = avctx->height; | |
45 | int ret; | ||
46 | |||
47 |
2/2✓ Branch 0 taken 2 times.
✓ Branch 1 taken 2 times.
|
4 | if (avctx->codec_id == AV_CODEC_ID_MVC1) { |
48 | 2 | width += 3; | |
49 | 2 | height += 3; | |
50 | } | ||
51 | 4 | width &= ~3; | |
52 | 4 | height &= ~3; | |
53 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 4 times.
|
4 | if ((ret = ff_set_dimensions(avctx, width, height)) < 0) |
54 | ✗ | return ret; | |
55 | |||
56 | 8 | avctx->pix_fmt = (avctx->codec_id == AV_CODEC_ID_MVC1) ? AV_PIX_FMT_RGB555 | |
57 |
2/2✓ Branch 0 taken 2 times.
✓ Branch 1 taken 2 times.
|
4 | : AV_PIX_FMT_RGB32; |
58 |
1/2✓ Branch 0 taken 4 times.
✗ Branch 1 not taken.
|
8 | s->vflip = avctx->extradata_size >= 9 && |
59 |
1/2✓ Branch 0 taken 4 times.
✗ Branch 1 not taken.
|
4 | !memcmp(avctx->extradata + avctx->extradata_size - 9, "BottomUp", 9); |
60 | 4 | return 0; | |
61 | } | ||
62 | |||
63 | 26 | static int decode_mvc1(AVCodecContext *avctx, GetByteContext *gb, | |
64 | uint8_t *dst_start, int width, int height, int linesize) | ||
65 | { | ||
66 | uint8_t *dst; | ||
67 | uint16_t v[8]; | ||
68 | int mask, x, y, i; | ||
69 | |||
70 |
2/2✓ Branch 0 taken 1872 times.
✓ Branch 1 taken 26 times.
|
1898 | for (y = 0; y < height; y += 4) { |
71 |
2/2✓ Branch 0 taken 179712 times.
✓ Branch 1 taken 1872 times.
|
181584 | for (x = 0; x < width; x += 4) { |
72 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 179712 times.
|
179712 | if (bytestream2_get_bytes_left(gb) < 6) |
73 | ✗ | return 0; | |
74 | |||
75 | 179712 | mask = bytestream2_get_be16u(gb); | |
76 | 179712 | v[0] = bytestream2_get_be16u(gb); | |
77 | 179712 | v[1] = bytestream2_get_be16u(gb); | |
78 |
2/2✓ Branch 0 taken 33310 times.
✓ Branch 1 taken 146402 times.
|
179712 | if ((v[0] & 0x8000)) { |
79 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 33310 times.
|
33310 | if (bytestream2_get_bytes_left(gb) < 12) { |
80 | ✗ | av_log(avctx, AV_LOG_WARNING, "buffer overflow\n"); | |
81 | ✗ | return AVERROR_INVALIDDATA; | |
82 | } | ||
83 |
2/2✓ Branch 0 taken 199860 times.
✓ Branch 1 taken 33310 times.
|
233170 | for (i = 2; i < 8; i++) |
84 | 199860 | v[i] = bytestream2_get_be16u(gb); | |
85 | } else { | ||
86 | 146402 | v[2] = v[4] = v[6] = v[0]; | |
87 | 146402 | v[3] = v[5] = v[7] = v[1]; | |
88 | } | ||
89 | |||
90 | #define PIX16(target, true, false) \ | ||
91 | i = (mask & target) ? true : false; \ | ||
92 | AV_WN16A(dst, v[i] & 0x7FFF); \ | ||
93 | dst += 2; | ||
94 | |||
95 | #define ROW16(row, a1, a0, b1, b0) \ | ||
96 | dst = dst_start + (y + row) * linesize + x * 2; \ | ||
97 | PIX16(1 << (row * 4), a1, a0) \ | ||
98 | PIX16(1 << (row * 4 + 1), a1, a0) \ | ||
99 | PIX16(1 << (row * 4 + 2), b1, b0) \ | ||
100 | PIX16(1 << (row * 4 + 3), b1, b0) | ||
101 | |||
102 |
4/4✓ Branch 0 taken 97385 times.
✓ Branch 1 taken 82327 times.
✓ Branch 2 taken 97120 times.
✓ Branch 3 taken 82592 times.
|
179712 | ROW16(0, 0, 1, 2, 3); |
103 |
4/4✓ Branch 0 taken 94383 times.
✓ Branch 1 taken 85329 times.
✓ Branch 2 taken 93843 times.
✓ Branch 3 taken 85869 times.
|
179712 | ROW16(1, 0, 1, 2, 3); |
104 |
8/8✓ Branch 0 taken 95952 times.
✓ Branch 1 taken 83760 times.
✓ Branch 2 taken 97562 times.
✓ Branch 3 taken 82150 times.
✓ Branch 4 taken 97791 times.
✓ Branch 5 taken 81921 times.
✓ Branch 6 taken 97604 times.
✓ Branch 7 taken 82108 times.
|
179712 | ROW16(2, 4, 5, 6, 7); |
105 |
8/8✓ Branch 0 taken 89738 times.
✓ Branch 1 taken 89974 times.
✓ Branch 2 taken 90669 times.
✓ Branch 3 taken 89043 times.
✓ Branch 4 taken 90762 times.
✓ Branch 5 taken 88950 times.
✓ Branch 6 taken 90621 times.
✓ Branch 7 taken 89091 times.
|
179712 | ROW16(3, 4, 5, 6, 7); |
106 | } | ||
107 | } | ||
108 | 26 | return 0; | |
109 | } | ||
110 | |||
111 | 44184 | static void set_4x4_block(uint8_t *dst, int linesize, uint32_t pixel) | |
112 | { | ||
113 | int i, j; | ||
114 |
2/2✓ Branch 0 taken 176736 times.
✓ Branch 1 taken 44184 times.
|
220920 | for (j = 0; j < 4; j++) |
115 |
2/2✓ Branch 0 taken 706944 times.
✓ Branch 1 taken 176736 times.
|
883680 | for (i = 0; i < 4; i++) |
116 | 706944 | AV_WN32A(dst + j * linesize + i * 4, pixel); | |
117 | 44184 | } | |
118 | |||
119 | #define PIX32(target, true, false) \ | ||
120 | AV_WN32A(dst, (mask & target) ? v[true] : v[false]); \ | ||
121 | dst += 4; | ||
122 | |||
123 | #define ROW32(row, a1, a0, b1, b0) \ | ||
124 | dst = dst_start + (y + row) * linesize + x * 4; \ | ||
125 | PIX32(1 << (row * 4), a1, a0) \ | ||
126 | PIX32(1 << (row * 4 + 1), a1, a0) \ | ||
127 | PIX32(1 << (row * 4 + 2), b1, b0) \ | ||
128 | PIX32(1 << (row * 4 + 3), b1, b0) | ||
129 | |||
130 | #define MVC2_BLOCK \ | ||
131 | ROW32(0, 1, 0, 3, 2); \ | ||
132 | ROW32(1, 1, 0, 3, 2); \ | ||
133 | ROW32(2, 5, 4, 7, 6); \ | ||
134 | ROW32(3, 5, 4, 7, 6); | ||
135 | |||
136 | 31 | static int decode_mvc2(AVCodecContext *avctx, GetByteContext *gb, | |
137 | uint8_t *dst_start, int width, int height, | ||
138 | int linesize, int vflip) | ||
139 | { | ||
140 | uint8_t *dst; | ||
141 | uint32_t color[128], v[8]; | ||
142 | int w, h, nb_colors, i, x, y, p0, p1, mask; | ||
143 | |||
144 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 31 times.
|
31 | if (bytestream2_get_bytes_left(gb) < 6) |
145 | ✗ | return AVERROR_INVALIDDATA; | |
146 | |||
147 | 31 | w = bytestream2_get_be16u(gb); | |
148 | 31 | h = bytestream2_get_be16u(gb); | |
149 |
2/4✓ Branch 0 taken 31 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 31 times.
|
31 | if ((w & ~3) != width || (h & ~3) != height) |
150 | ✗ | av_log(avctx, AV_LOG_WARNING, "dimension mismatch\n"); | |
151 | |||
152 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 31 times.
|
31 | if (bytestream2_get_byteu(gb)) { |
153 | ✗ | avpriv_request_sample(avctx, "bitmap feature"); | |
154 | ✗ | return AVERROR_PATCHWELCOME; | |
155 | } | ||
156 | |||
157 | 31 | nb_colors = bytestream2_get_byteu(gb); | |
158 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 31 times.
|
31 | if (bytestream2_get_bytes_left(gb) < nb_colors * 3) |
159 | ✗ | return AVERROR_INVALIDDATA; | |
160 |
2/2✓ Branch 0 taken 3966 times.
✓ Branch 1 taken 31 times.
|
3997 | for (i = 0; i < FFMIN(nb_colors, 128); i++) |
161 | 3966 | color[i] = 0xFF000000 | bytestream2_get_be24u(gb); | |
162 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 31 times.
|
31 | if (nb_colors > 128) |
163 | ✗ | bytestream2_skip(gb, (nb_colors - 128) * 3); | |
164 | |||
165 |
1/2✓ Branch 0 taken 31 times.
✗ Branch 1 not taken.
|
31 | if (vflip) { |
166 | 31 | dst_start += (height - 1) * linesize; | |
167 | 31 | linesize = -linesize; | |
168 | } | ||
169 | 31 | x = y = 0; | |
170 |
1/2✓ Branch 1 taken 61194 times.
✗ Branch 2 not taken.
|
61194 | while (bytestream2_get_bytes_left(gb) >= 1) { |
171 | 61194 | p0 = bytestream2_get_byteu(gb); | |
172 |
2/2✓ Branch 0 taken 44184 times.
✓ Branch 1 taken 17010 times.
|
61194 | if ((p0 & 0x80)) { |
173 |
2/2✓ Branch 0 taken 1254 times.
✓ Branch 1 taken 42930 times.
|
44184 | if ((p0 & 0x40)) { |
174 | 1254 | p0 &= 0x3F; | |
175 | 1254 | p0 = (p0 << 2) | (p0 >> 4); | |
176 | 1254 | set_4x4_block(dst_start + y * linesize + x * 4, linesize, | |
177 | 1254 | 0xFF000000 | (p0 << 16) | (p0 << 8) | p0); | |
178 | } else { | ||
179 | int g, r; | ||
180 | 42930 | p0 &= 0x3F; | |
181 | 42930 | p0 = (p0 << 2) | (p0 >> 4); | |
182 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 42930 times.
|
42930 | if (bytestream2_get_bytes_left(gb) < 2) |
183 | ✗ | return AVERROR_INVALIDDATA; | |
184 | 42930 | g = bytestream2_get_byteu(gb); | |
185 | 42930 | r = bytestream2_get_byteu(gb); | |
186 | 42930 | set_4x4_block(dst_start + y * linesize + x * 4, linesize, | |
187 | 42930 | 0xFF000000 | (r << 16) | (g << 8) | p0); | |
188 | } | ||
189 | } else { | ||
190 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 17010 times.
|
17010 | if (bytestream2_get_bytes_left(gb) < 1) |
191 | ✗ | return AVERROR_INVALIDDATA; | |
192 | 17010 | p1 = bytestream2_get_byteu(gb); | |
193 |
2/2✓ Branch 0 taken 2980 times.
✓ Branch 1 taken 14030 times.
|
17010 | if ((p1 & 0x80)) { |
194 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 2980 times.
|
2980 | if ((p0 & 0x7F) == (p1 & 0x7F)) { |
195 | ✗ | set_4x4_block(dst_start + y * linesize + x * 4, linesize, | |
196 | ✗ | color[p0 & 0x7F]); | |
197 | } else { | ||
198 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 2980 times.
|
2980 | if (bytestream2_get_bytes_left(gb) < 2) |
199 | ✗ | return AVERROR_INVALIDDATA; | |
200 | 2980 | v[0] = v[2] = v[4] = v[6] = color[p0 & 0x7F]; | |
201 | 2980 | v[1] = v[3] = v[5] = v[7] = color[p1 & 0x7F]; | |
202 | 2980 | mask = bytestream2_get_le16u(gb); | |
203 |
32/32✓ Branch 0 taken 1482 times.
✓ Branch 1 taken 1498 times.
✓ Branch 2 taken 1498 times.
✓ Branch 3 taken 1482 times.
✓ Branch 4 taken 1533 times.
✓ Branch 5 taken 1447 times.
✓ Branch 6 taken 1536 times.
✓ Branch 7 taken 1444 times.
✓ Branch 8 taken 1542 times.
✓ Branch 9 taken 1438 times.
✓ Branch 10 taken 1516 times.
✓ Branch 11 taken 1464 times.
✓ Branch 12 taken 1532 times.
✓ Branch 13 taken 1448 times.
✓ Branch 14 taken 1672 times.
✓ Branch 15 taken 1308 times.
✓ Branch 16 taken 1492 times.
✓ Branch 17 taken 1488 times.
✓ Branch 18 taken 1523 times.
✓ Branch 19 taken 1457 times.
✓ Branch 20 taken 1513 times.
✓ Branch 21 taken 1467 times.
✓ Branch 22 taken 1585 times.
✓ Branch 23 taken 1395 times.
✓ Branch 24 taken 1561 times.
✓ Branch 25 taken 1419 times.
✓ Branch 26 taken 1606 times.
✓ Branch 27 taken 1374 times.
✓ Branch 28 taken 1579 times.
✓ Branch 29 taken 1401 times.
✓ Branch 30 taken 1597 times.
✓ Branch 31 taken 1383 times.
|
2980 | MVC2_BLOCK |
204 | } | ||
205 | } else { | ||
206 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 14030 times.
|
14030 | if (bytestream2_get_bytes_left(gb) < 8) |
207 | ✗ | return AVERROR_INVALIDDATA; | |
208 | 14030 | v[0] = color[p0 & 0x7F]; | |
209 | 14030 | v[1] = color[p1 & 0x7F]; | |
210 |
2/2✓ Branch 0 taken 84180 times.
✓ Branch 1 taken 14030 times.
|
98210 | for (i = 2; i < 8; i++) |
211 | 84180 | v[i] = color[bytestream2_get_byteu(gb) & 0x7F]; | |
212 | 14030 | mask = bytestream2_get_le16u(gb); | |
213 |
32/32✓ Branch 0 taken 5991 times.
✓ Branch 1 taken 8039 times.
✓ Branch 2 taken 5485 times.
✓ Branch 3 taken 8545 times.
✓ Branch 4 taken 5325 times.
✓ Branch 5 taken 8705 times.
✓ Branch 6 taken 5686 times.
✓ Branch 7 taken 8344 times.
✓ Branch 8 taken 6152 times.
✓ Branch 9 taken 7878 times.
✓ Branch 10 taken 5495 times.
✓ Branch 11 taken 8535 times.
✓ Branch 12 taken 5497 times.
✓ Branch 13 taken 8533 times.
✓ Branch 14 taken 5804 times.
✓ Branch 15 taken 8226 times.
✓ Branch 16 taken 5473 times.
✓ Branch 17 taken 8557 times.
✓ Branch 18 taken 5030 times.
✓ Branch 19 taken 9000 times.
✓ Branch 20 taken 5025 times.
✓ Branch 21 taken 9005 times.
✓ Branch 22 taken 5539 times.
✓ Branch 23 taken 8491 times.
✓ Branch 24 taken 6294 times.
✓ Branch 25 taken 7736 times.
✓ Branch 26 taken 5667 times.
✓ Branch 27 taken 8363 times.
✓ Branch 28 taken 5700 times.
✓ Branch 29 taken 8330 times.
✓ Branch 30 taken 5930 times.
✓ Branch 31 taken 8100 times.
|
14030 | MVC2_BLOCK |
214 | } | ||
215 | } | ||
216 | |||
217 | 61194 | x += 4; | |
218 |
2/2✓ Branch 0 taken 1457 times.
✓ Branch 1 taken 59737 times.
|
61194 | if (x >= width) { |
219 | 1457 | y += 4; | |
220 |
2/2✓ Branch 0 taken 31 times.
✓ Branch 1 taken 1426 times.
|
1457 | if (y >= height) |
221 | 31 | break; | |
222 | 1426 | x = 0; | |
223 | } | ||
224 | } | ||
225 | 31 | return 0; | |
226 | } | ||
227 | |||
228 | 57 | static int mvc_decode_frame(AVCodecContext *avctx, AVFrame *frame, | |
229 | int *got_frame, AVPacket *avpkt) | ||
230 | { | ||
231 | 57 | MvcContext *s = avctx->priv_data; | |
232 | GetByteContext gb; | ||
233 | int ret; | ||
234 | |||
235 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 57 times.
|
57 | if ((ret = ff_get_buffer(avctx, frame, 0)) < 0) |
236 | ✗ | return ret; | |
237 | |||
238 | 57 | bytestream2_init(&gb, avpkt->data, avpkt->size); | |
239 |
2/2✓ Branch 0 taken 26 times.
✓ Branch 1 taken 31 times.
|
57 | if (avctx->codec_id == AV_CODEC_ID_MVC1) |
240 | 26 | ret = decode_mvc1(avctx, &gb, frame->data[0], | |
241 | avctx->width, avctx->height, frame->linesize[0]); | ||
242 | else | ||
243 | 31 | ret = decode_mvc2(avctx, &gb, frame->data[0], | |
244 | avctx->width, avctx->height, frame->linesize[0], | ||
245 | s->vflip); | ||
246 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 57 times.
|
57 | if (ret < 0) |
247 | ✗ | return ret; | |
248 | |||
249 | 57 | *got_frame = 1; | |
250 | |||
251 | 57 | return avpkt->size; | |
252 | } | ||
253 | |||
254 | #if CONFIG_MVC1_DECODER | ||
255 | const FFCodec ff_mvc1_decoder = { | ||
256 | .p.name = "mvc1", | ||
257 | CODEC_LONG_NAME("Silicon Graphics Motion Video Compressor 1"), | ||
258 | .p.type = AVMEDIA_TYPE_VIDEO, | ||
259 | .p.id = AV_CODEC_ID_MVC1, | ||
260 | .priv_data_size = sizeof(MvcContext), | ||
261 | .init = mvc_decode_init, | ||
262 | FF_CODEC_DECODE_CB(mvc_decode_frame), | ||
263 | .p.capabilities = AV_CODEC_CAP_DR1, | ||
264 | }; | ||
265 | #endif | ||
266 | |||
267 | #if CONFIG_MVC2_DECODER | ||
268 | const FFCodec ff_mvc2_decoder = { | ||
269 | .p.name = "mvc2", | ||
270 | CODEC_LONG_NAME("Silicon Graphics Motion Video Compressor 2"), | ||
271 | .p.type = AVMEDIA_TYPE_VIDEO, | ||
272 | .p.id = AV_CODEC_ID_MVC2, | ||
273 | .priv_data_size = sizeof(MvcContext), | ||
274 | .init = mvc_decode_init, | ||
275 | FF_CODEC_DECODE_CB(mvc_decode_frame), | ||
276 | .p.capabilities = AV_CODEC_CAP_DR1, | ||
277 | }; | ||
278 | #endif | ||
279 |