2 * innoHeim/Rsupport Screen Capture Codec
3 * Copyright (C) 2015 Vittorio Giovara <vittorio.giovara@gmail.com>
5 * This file is part of FFmpeg.
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.
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.
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
24 * innoHeim/Rsupport Screen Capture Codec decoder
28 * Lossless codec, data stored in tiles, with optional deflate compression.
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.
34 * Supports: PAL8, BGRA, BGR24, RGB555
41 #include "libavutil/imgutils.h"
42 #include "libavutil/internal.h"
45 #include "bytestream.h"
55 typedef struct RsccContext {
59 unsigned int tiles_size;
62 uint8_t palette[AVPALETTE_SIZE];
64 /* zlib interaction */
65 uint8_t *inflated_buf;
69 static av_cold int rscc_init(AVCodecContext *avctx)
71 RsccContext *ctx = avctx->priv_data;
73 /* These needs to be set to estimate uncompressed buffer */
74 int ret = av_image_check_size(avctx->width, avctx->height, 0, avctx);
76 av_log(avctx, AV_LOG_ERROR, "Invalid image size %dx%d.\n",
77 avctx->width, avctx->height);
81 /* Allocate reference frame */
82 ctx->reference = av_frame_alloc();
84 return AVERROR(ENOMEM);
86 /* Get pixel format and the size of the pixel */
87 if (avctx->codec_tag == MKTAG('I', 'S', 'C', 'C')) {
88 if (avctx->extradata && avctx->extradata_size == 4) {
89 if ((avctx->extradata[0] >> 1) & 1) {
90 avctx->pix_fmt = AV_PIX_FMT_BGRA;
91 ctx->component_size = 4;
93 avctx->pix_fmt = AV_PIX_FMT_BGR24;
94 ctx->component_size = 3;
97 avctx->pix_fmt = AV_PIX_FMT_BGRA;
98 ctx->component_size = 4;
100 } else if (avctx->codec_tag == MKTAG('R', 'S', 'C', 'C')) {
101 ctx->component_size = avctx->bits_per_coded_sample / 8;
102 switch (avctx->bits_per_coded_sample) {
104 avctx->pix_fmt = AV_PIX_FMT_PAL8;
107 avctx->pix_fmt = AV_PIX_FMT_RGB555LE;
110 avctx->pix_fmt = AV_PIX_FMT_BGR24;
113 avctx->pix_fmt = AV_PIX_FMT_BGR0;
116 av_log(avctx, AV_LOG_ERROR, "Invalid bits per pixel value (%d)\n",
117 avctx->bits_per_coded_sample);
118 return AVERROR_INVALIDDATA;
121 avctx->pix_fmt = AV_PIX_FMT_BGR0;
122 ctx->component_size = 4;
123 av_log(avctx, AV_LOG_WARNING, "Invalid codec tag\n");
126 /* Store the value to check for keyframes */
127 ctx->inflated_size = avctx->width * avctx->height * ctx->component_size;
129 /* Allocate maximum size possible, a full frame */
130 ctx->inflated_buf = av_malloc(ctx->inflated_size);
131 if (!ctx->inflated_buf)
132 return AVERROR(ENOMEM);
137 static av_cold int rscc_close(AVCodecContext *avctx)
139 RsccContext *ctx = avctx->priv_data;
141 av_freep(&ctx->tiles);
142 av_freep(&ctx->inflated_buf);
143 av_frame_free(&ctx->reference);
148 static int rscc_decode_frame(AVCodecContext *avctx, void *data,
149 int *got_frame, AVPacket *avpkt)
151 RsccContext *ctx = avctx->priv_data;
152 GetByteContext *gbc = &ctx->gbc;
153 GetByteContext tiles_gbc;
154 AVFrame *frame = data;
155 const uint8_t *pixels, *raw;
156 uint8_t *inflated_tiles = NULL;
157 int tiles_nb, packed_size, pixel_size = 0;
160 bytestream2_init(gbc, avpkt->data, avpkt->size);
163 if (bytestream2_get_bytes_left(gbc) < 12) {
164 av_log(avctx, AV_LOG_ERROR, "Packet too small (%d)\n", avpkt->size);
165 return AVERROR_INVALIDDATA;
168 /* Read number of tiles, and allocate the array */
169 tiles_nb = bytestream2_get_le16(gbc);
172 av_log(avctx, AV_LOG_DEBUG, "no tiles\n");
176 av_fast_malloc(&ctx->tiles, &ctx->tiles_size,
177 tiles_nb * sizeof(*ctx->tiles));
179 ret = AVERROR(ENOMEM);
183 av_log(avctx, AV_LOG_DEBUG, "Frame with %d tiles.\n", tiles_nb);
185 /* When there are more than 5 tiles, they are packed together with
186 * a size header. When that size does not match the number of tiles
187 * times the tile size, it means it needs to be inflated as well */
189 uLongf packed_tiles_size;
192 packed_tiles_size = bytestream2_get_byte(gbc);
194 packed_tiles_size = bytestream2_get_le16(gbc);
196 ff_dlog(avctx, "packed tiles of size %lu.\n", packed_tiles_size);
198 /* If necessary, uncompress tiles, and hijack the bytestream reader */
199 if (packed_tiles_size != tiles_nb * TILE_SIZE) {
200 uLongf length = tiles_nb * TILE_SIZE;
201 inflated_tiles = av_malloc(length);
202 if (!inflated_tiles) {
203 ret = AVERROR(ENOMEM);
207 ret = uncompress(inflated_tiles, &length,
208 gbc->buffer, packed_tiles_size);
210 av_log(avctx, AV_LOG_ERROR, "Tile deflate error %d.\n", ret);
211 ret = AVERROR_UNKNOWN;
215 /* Skip the compressed tile section in the main byte reader,
216 * and point it to read the newly uncompressed data */
217 bytestream2_skip(gbc, packed_tiles_size);
218 bytestream2_init(&tiles_gbc, inflated_tiles, length);
223 /* Fill in array of tiles, keeping track of how many pixels are updated */
224 for (i = 0; i < tiles_nb; i++) {
225 ctx->tiles[i].x = bytestream2_get_le16(gbc);
226 ctx->tiles[i].w = bytestream2_get_le16(gbc);
227 ctx->tiles[i].y = bytestream2_get_le16(gbc);
228 ctx->tiles[i].h = bytestream2_get_le16(gbc);
230 if (pixel_size + ctx->tiles[i].w * (int64_t)ctx->tiles[i].h * ctx->component_size > INT_MAX) {
231 av_log(avctx, AV_LOG_ERROR, "Invalid tile dimensions\n");
232 ret = AVERROR_INVALIDDATA;
236 pixel_size += ctx->tiles[i].w * ctx->tiles[i].h * ctx->component_size;
238 ff_dlog(avctx, "tile %d orig(%d,%d) %dx%d.\n", i,
239 ctx->tiles[i].x, ctx->tiles[i].y,
240 ctx->tiles[i].w, ctx->tiles[i].h);
242 if (ctx->tiles[i].w == 0 || ctx->tiles[i].h == 0) {
243 av_log(avctx, AV_LOG_ERROR,
244 "invalid tile %d at (%d.%d) with size %dx%d.\n", i,
245 ctx->tiles[i].x, ctx->tiles[i].y,
246 ctx->tiles[i].w, ctx->tiles[i].h);
247 ret = AVERROR_INVALIDDATA;
249 } else if (ctx->tiles[i].x + ctx->tiles[i].w > avctx->width ||
250 ctx->tiles[i].y + ctx->tiles[i].h > avctx->height) {
251 av_log(avctx, AV_LOG_ERROR,
252 "out of bounds tile %d at (%d.%d) with size %dx%d.\n", i,
253 ctx->tiles[i].x, ctx->tiles[i].y,
254 ctx->tiles[i].w, ctx->tiles[i].h);
255 ret = AVERROR_INVALIDDATA;
260 /* Reset the reader in case it had been modified before */
263 /* Extract how much pixel data the tiles contain */
264 if (pixel_size < 0x100)
265 packed_size = bytestream2_get_byte(gbc);
266 else if (pixel_size < 0x10000)
267 packed_size = bytestream2_get_le16(gbc);
268 else if (pixel_size < 0x1000000)
269 packed_size = bytestream2_get_le24(gbc);
271 packed_size = bytestream2_get_le32(gbc);
273 ff_dlog(avctx, "pixel_size %d packed_size %d.\n", pixel_size, packed_size);
275 if (packed_size < 0) {
276 av_log(avctx, AV_LOG_ERROR, "Invalid tile size %d\n", packed_size);
277 ret = AVERROR_INVALIDDATA;
281 /* Get pixels buffer, it may be deflated or just raw */
282 if (pixel_size == packed_size) {
283 if (bytestream2_get_bytes_left(gbc) < pixel_size) {
284 av_log(avctx, AV_LOG_ERROR, "Insufficient input for %d\n", pixel_size);
285 ret = AVERROR_INVALIDDATA;
288 pixels = gbc->buffer;
290 uLongf len = ctx->inflated_size;
291 if (bytestream2_get_bytes_left(gbc) < packed_size) {
292 av_log(avctx, AV_LOG_ERROR, "Insufficient input for %d\n", packed_size);
293 ret = AVERROR_INVALIDDATA;
296 ret = uncompress(ctx->inflated_buf, &len, gbc->buffer, packed_size);
298 av_log(avctx, AV_LOG_ERROR, "Pixel deflate error %d.\n", ret);
299 ret = AVERROR_UNKNOWN;
302 pixels = ctx->inflated_buf;
305 /* Allocate when needed */
306 ret = ff_reget_buffer(avctx, ctx->reference);
310 /* Pointer to actual pixels, will be updated when data is consumed */
312 for (i = 0; i < tiles_nb; i++) {
313 uint8_t *dst = ctx->reference->data[0] + ctx->reference->linesize[0] *
314 (avctx->height - ctx->tiles[i].y - 1) +
315 ctx->tiles[i].x * ctx->component_size;
316 av_image_copy_plane(dst, -1 * ctx->reference->linesize[0],
317 raw, ctx->tiles[i].w * ctx->component_size,
318 ctx->tiles[i].w * ctx->component_size,
320 raw += ctx->tiles[i].w * ctx->component_size * ctx->tiles[i].h;
323 /* Frame is ready to be output */
324 ret = av_frame_ref(frame, ctx->reference);
328 /* Keyframe when the number of pixels updated matches the whole surface */
329 if (pixel_size == ctx->inflated_size) {
330 frame->pict_type = AV_PICTURE_TYPE_I;
331 frame->key_frame = 1;
333 frame->pict_type = AV_PICTURE_TYPE_P;
336 /* Palette handling */
337 if (avctx->pix_fmt == AV_PIX_FMT_PAL8) {
339 const uint8_t *palette = av_packet_get_side_data(avpkt,
342 if (palette && size == AVPALETTE_SIZE) {
343 frame->palette_has_changed = 1;
344 memcpy(ctx->palette, palette, AVPALETTE_SIZE);
345 } else if (palette) {
346 av_log(avctx, AV_LOG_ERROR, "Palette size %d is wrong\n", size);
348 memcpy (frame->data[1], ctx->palette, AVPALETTE_SIZE);
355 av_free(inflated_tiles);
359 AVCodec ff_rscc_decoder = {
361 .long_name = NULL_IF_CONFIG_SMALL("innoHeim/Rsupport Screen Capture Codec"),
362 .type = AVMEDIA_TYPE_VIDEO,
363 .id = AV_CODEC_ID_RSCC,
365 .decode = rscc_decode_frame,
367 .priv_data_size = sizeof(RsccContext),
368 .capabilities = AV_CODEC_CAP_DR1,
369 .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE |
370 FF_CODEC_CAP_INIT_CLEANUP,