1 /*
2 * innoHeim/Rsupport Screen Capture Codec
3 * Copyright (C) 2015 Vittorio Giovara <vittorio.giovara@gmail.com>
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 * innoHeim/Rsupport Screen Capture Codec decoder
25 *
26 * Fourcc: ISCC, RSCC
27 *
28 * Lossless codec, data stored in tiles, with optional deflate compression.
29 *
30 * Header contains the number of tiles in a frame with the tile coordinates,
31 * and it can be deflated or not. Similarly, pixel data comes after the header
32 * and a variable size value, and it can be deflated or just raw.
33 *
34 * Supports: PAL8, BGRA, BGR24, RGB555
35 */
36
37 #include <stdint.h>
38 #include <string.h>
39 #include <zlib.h>
40
43
48
50
55
62
64
65 /* zlib interaction */
70
72 {
74
75 /* These needs to be set to estimate uncompressed buffer */
81 }
82
83 /* Allocate reference frame */
87
88 /* Get pixel format and the size of the pixel */
93 ctx->component_size = 4;
94 } else {
96 ctx->component_size = 3;
97 }
98 } else {
100 ctx->component_size = 4;
101 }
105 case 8:
107 break;
108 case 16:
110 break;
111 case 24:
113 break;
114 case 32:
116 break;
117 default:
121 }
122 } else {
124 ctx->component_size = 4;
126 }
127
128 /* Store the value to check for keyframes */
130
131 /* Allocate maximum size possible, a full frame */
133 if (!
ctx->inflated_buf)
135
136 return 0;
137 }
138
140 {
142
146
147 return 0;
148 }
149
152 {
157 const uint8_t *pixels, *raw;
158 uint8_t *inflated_tiles =
NULL;
159 int tiles_nb, packed_size, pixel_size = 0;
161
163
164 /* Size check */
168 }
169
170 /* Read number of tiles, and allocate the array */
171 tiles_nb = bytestream2_get_le16(gbc);
172
173 if (tiles_nb == 0) {
176 }
177
179 tiles_nb *
sizeof(*
ctx->tiles));
182 goto end;
183 }
184
186
187 /* When there are more than 5 tiles, they are packed together with
188 * a size header. When that size does not match the number of tiles
189 * times the tile size, it means it needs to be inflated as well */
190 if (tiles_nb > 5) {
191 uLongf packed_tiles_size;
192
193 if (tiles_nb < 32)
194 packed_tiles_size = bytestream2_get_byte(gbc);
195 else
196 packed_tiles_size = bytestream2_get_le16(gbc);
197
198 ff_dlog(avctx,
"packed tiles of size %lu.\n", packed_tiles_size);
199
200 /* If necessary, uncompress tiles, and hijack the bytestream reader */
201 if (packed_tiles_size != tiles_nb *
TILE_SIZE) {
203
206 goto end;
207 }
208
210 if (!inflated_tiles) {
212 goto end;
213 }
214
215 ret = uncompress(inflated_tiles, &length,
216 gbc->
buffer, packed_tiles_size);
220 goto end;
221 }
222
223 /* Skip the compressed tile section in the main byte reader,
224 * and point it to read the newly uncompressed data */
227 gbc = &tiles_gbc;
228 }
229 }
230
231 /* Fill in array of tiles, keeping track of how many pixels are updated */
232 for (
i = 0;
i < tiles_nb;
i++) {
233 ctx->tiles[
i].x = bytestream2_get_le16(gbc);
234 ctx->tiles[
i].w = bytestream2_get_le16(gbc);
235 ctx->tiles[
i].y = bytestream2_get_le16(gbc);
236 ctx->tiles[
i].h = bytestream2_get_le16(gbc);
237
238 if (pixel_size +
ctx->tiles[
i].w * (int64_t)
ctx->tiles[
i].h *
ctx->component_size > INT_MAX) {
241 goto end;
242 }
243
244 pixel_size +=
ctx->tiles[
i].w *
ctx->tiles[
i].h *
ctx->component_size;
245
246 ff_dlog(avctx,
"tile %d orig(%d,%d) %dx%d.\n",
i,
249
250 if (
ctx->tiles[
i].w == 0 ||
ctx->tiles[
i].h == 0) {
252 "invalid tile %d at (%d.%d) with size %dx%d.\n",
i,
256 goto end;
257 }
else if (
ctx->tiles[
i].x +
ctx->tiles[
i].w > avctx->
width ||
260 "out of bounds tile %d at (%d.%d) with size %dx%d.\n",
i,
264 goto end;
265 }
266 }
267
268 /* Reset the reader in case it had been modified before */
270
271 /* Extract how much pixel data the tiles contain */
272 if (pixel_size < 0x100)
273 packed_size = bytestream2_get_byte(gbc);
274 else if (pixel_size < 0x10000)
275 packed_size = bytestream2_get_le16(gbc);
276 else if (pixel_size < 0x1000000)
277 packed_size = bytestream2_get_le24(gbc);
278 else
279 packed_size = bytestream2_get_le32(gbc);
280
281 ff_dlog(avctx,
"pixel_size %d packed_size %d.\n", pixel_size, packed_size);
282
283 if (packed_size < 0) {
286 goto end;
287 }
288
289 /* Get pixels buffer, it may be deflated or just raw */
290 if (pixel_size == packed_size) {
294 goto end;
295 }
297 } else {
298 uLongf
len =
ctx->inflated_size;
302 goto end;
303 }
304 if (
ctx->inflated_size < pixel_size) {
306 goto end;
307 }
312 goto end;
313 }
314 pixels =
ctx->inflated_buf;
315 }
316
317 /* Allocate when needed */
320 goto end;
321
322 /* Pointer to actual pixels, will be updated when data is consumed */
323 raw = pixels;
324 for (
i = 0;
i < tiles_nb;
i++) {
325 uint8_t *dst =
ctx->reference->data[0] +
ctx->reference->linesize[0] *
327 ctx->tiles[
i].x *
ctx->component_size;
329 raw,
ctx->tiles[
i].w *
ctx->component_size,
330 ctx->tiles[
i].w *
ctx->component_size,
332 raw +=
ctx->tiles[
i].w *
ctx->component_size *
ctx->tiles[
i].h;
333 }
334
335 /* Frame is ready to be output */
338 goto end;
339
340 /* Keyframe when the number of pixels updated matches the whole surface */
341 if (pixel_size ==
ctx->inflated_size) {
343 frame->key_frame = 1;
344 } else {
346 }
347
348 /* Palette handling */
352 }
353 // We only return a picture when enough of it is undamaged, this avoids copying nearly broken frames around
354 if (
ctx->valid_pixels <
ctx->inflated_size)
355 ctx->valid_pixels += pixel_size;
357 *got_frame = 1;
358
360 end:
363 }
364
377 };