FFmpeg
Loading...
Searching...
No Matches
rscc.c
Go to the documentation of this file.
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
41#include "libavutil/imgutils.h"
42#include "libavutil/internal.h"
43#include "libavutil/mem.h"
44
45#include "avcodec.h"
46#include "bytestream.h"
47#include "codec_internal.h"
48#include "decode.h"
49
50#define TILE_SIZE 8
51
52typedef struct Tile {
53 int x, y;
54 int w, h;
55} Tile;
56
57typedef struct RsccContext {
61 unsigned int tiles_size;
63
65
66 /* zlib interaction */
67 uint8_t *inflated_buf;
71
73{
74 RsccContext *ctx = avctx->priv_data;
75
76 /* These needs to be set to estimate uncompressed buffer */
77 int ret = av_image_check_size(avctx->width, avctx->height, 0, avctx);
78 if (ret < 0) {
79 av_log(avctx, AV_LOG_ERROR, "Invalid image size %dx%d.\n",
80 avctx->width, avctx->height);
81 return ret;
82 }
83
84 /* Allocate reference frame */
85 ctx->reference = av_frame_alloc();
86 if (!ctx->reference)
87 return AVERROR(ENOMEM);
88
89 /* Get pixel format and the size of the pixel */
90 if (avctx->codec_tag == MKTAG('I', 'S', 'C', 'C')) {
91 if (avctx->extradata && avctx->extradata_size == 4) {
92 if ((avctx->extradata[0] >> 1) & 1) {
93 avctx->pix_fmt = AV_PIX_FMT_BGRA;
94 ctx->component_size = 4;
95 } else {
97 ctx->component_size = 3;
98 }
99 } else {
100 avctx->pix_fmt = AV_PIX_FMT_BGRA;
101 ctx->component_size = 4;
102 }
103 } else if (avctx->codec_tag == MKTAG('R', 'S', 'C', 'C')) {
104 ctx->component_size = avctx->bits_per_coded_sample / 8;
105 switch (avctx->bits_per_coded_sample) {
106 case 8:
107 avctx->pix_fmt = AV_PIX_FMT_PAL8;
108 break;
109 case 16:
111 break;
112 case 24:
113 avctx->pix_fmt = AV_PIX_FMT_BGR24;
114 break;
115 case 32:
116 avctx->pix_fmt = AV_PIX_FMT_BGR0;
117 break;
118 default:
119 av_log(avctx, AV_LOG_ERROR, "Invalid bits per pixel value (%d)\n",
120 avctx->bits_per_coded_sample);
121 return AVERROR_INVALIDDATA;
122 }
123 } else {
124 avctx->pix_fmt = AV_PIX_FMT_BGR0;
125 ctx->component_size = 4;
126 av_log(avctx, AV_LOG_WARNING, "Invalid codec tag\n");
127 }
128
129 /* Store the value to check for keyframes */
130 ctx->inflated_size = avctx->width * avctx->height * ctx->component_size;
131
132 /* Allocate maximum size possible, a full frame */
133 ctx->inflated_buf = av_malloc(ctx->inflated_size);
134 if (!ctx->inflated_buf)
135 return AVERROR(ENOMEM);
136
137 return 0;
138}
139
141{
142 RsccContext *ctx = avctx->priv_data;
143
144 av_freep(&ctx->tiles);
145 av_freep(&ctx->inflated_buf);
146 av_frame_free(&ctx->reference);
147
148 return 0;
149}
150
152 int *got_frame, AVPacket *avpkt)
153{
154 RsccContext *ctx = avctx->priv_data;
155 GetByteContext *gbc = &ctx->gbc;
156 GetByteContext tiles_gbc;
157 const uint8_t *pixels, *raw;
158 uint8_t *inflated_tiles = NULL;
159 int tiles_nb, packed_size, pixel_size = 0;
160 int i, ret = 0;
161
162 bytestream2_init(gbc, avpkt->data, avpkt->size);
163
164 /* Size check */
165 if (bytestream2_get_bytes_left(gbc) < 12) {
166 av_log(avctx, AV_LOG_ERROR, "Packet too small (%d)\n", avpkt->size);
167 return AVERROR_INVALIDDATA;
168 }
169
170 /* Read number of tiles, and allocate the array */
171 tiles_nb = bytestream2_get_le16(gbc);
172
173 if (tiles_nb == 0) {
174 av_log(avctx, AV_LOG_DEBUG, "no tiles\n");
175 return avpkt->size;
176 }
177
178 av_fast_malloc(&ctx->tiles, &ctx->tiles_size,
179 tiles_nb * sizeof(*ctx->tiles));
180 if (!ctx->tiles) {
181 ret = AVERROR(ENOMEM);
182 goto end;
183 }
184
185 av_log(avctx, AV_LOG_DEBUG, "Frame with %d tiles.\n", tiles_nb);
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) {
202 uLongf length = tiles_nb * TILE_SIZE;
203
204 if (bytestream2_get_bytes_left(gbc) < packed_tiles_size) {
206 goto end;
207 }
208
209 inflated_tiles = av_malloc(length);
210 if (!inflated_tiles) {
211 ret = AVERROR(ENOMEM);
212 goto end;
213 }
214
215 ret = uncompress(inflated_tiles, &length,
216 gbc->buffer, packed_tiles_size);
217 if (ret) {
218 av_log(avctx, AV_LOG_ERROR, "Tile deflate error %d.\n", ret);
219 ret = AVERROR_UNKNOWN;
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 */
225 bytestream2_skip(gbc, packed_tiles_size);
226 bytestream2_init(&tiles_gbc, inflated_tiles, length);
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) {
239 av_log(avctx, AV_LOG_ERROR, "Invalid tile dimensions\n");
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,
247 ctx->tiles[i].x, ctx->tiles[i].y,
248 ctx->tiles[i].w, ctx->tiles[i].h);
249
250 if (ctx->tiles[i].w == 0 || ctx->tiles[i].h == 0) {
251 av_log(avctx, AV_LOG_ERROR,
252 "invalid 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);
256 goto end;
257 } else if (ctx->tiles[i].x + ctx->tiles[i].w > avctx->width ||
258 ctx->tiles[i].y + ctx->tiles[i].h > avctx->height) {
259 av_log(avctx, AV_LOG_ERROR,
260 "out of bounds tile %d at (%d.%d) with size %dx%d.\n", i,
261 ctx->tiles[i].x, ctx->tiles[i].y,
262 ctx->tiles[i].w, ctx->tiles[i].h);
264 goto end;
265 }
266 }
267
268 /* Reset the reader in case it had been modified before */
269 gbc = &ctx->gbc;
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) {
284 av_log(avctx, AV_LOG_ERROR, "Invalid tile size %d\n", packed_size);
286 goto end;
287 }
288
289 /* Get pixels buffer, it may be deflated or just raw */
290 if (pixel_size == packed_size) {
291 if (bytestream2_get_bytes_left(gbc) < pixel_size) {
292 av_log(avctx, AV_LOG_ERROR, "Insufficient input for %d\n", pixel_size);
294 goto end;
295 }
296 pixels = gbc->buffer;
297 } else {
298 uLongf len = ctx->inflated_size;
299 if (bytestream2_get_bytes_left(gbc) < packed_size) {
300 av_log(avctx, AV_LOG_ERROR, "Insufficient input for %d\n", packed_size);
302 goto end;
303 }
304 if (ctx->inflated_size < pixel_size) {
306 goto end;
307 }
308 ret = uncompress(ctx->inflated_buf, &len, gbc->buffer, packed_size);
309 if (ret) {
310 av_log(avctx, AV_LOG_ERROR, "Pixel deflate error %d.\n", ret);
311 ret = AVERROR_UNKNOWN;
312 goto end;
313 }
314 if (len < pixel_size) {
315 av_log(avctx, AV_LOG_WARNING, "Deflated %lu bytes, but %d are needed\n",
316 len, pixel_size);
317 memset(ctx->inflated_buf + len, 0, pixel_size - len);
318 pixel_size = len;
319 }
320 pixels = ctx->inflated_buf;
321 }
322
323 /* Allocate when needed */
324 ret = ff_reget_buffer(avctx, ctx->reference, 0);
325 if (ret < 0)
326 goto end;
327
328 /* Pointer to actual pixels, will be updated when data is consumed */
329 raw = pixels;
330 for (i = 0; i < tiles_nb; i++) {
331 uint8_t *dst = ctx->reference->data[0] + ctx->reference->linesize[0] *
332 (avctx->height - ctx->tiles[i].y - 1) +
333 ctx->tiles[i].x * ctx->component_size;
334 av_image_copy_plane(dst, -1 * ctx->reference->linesize[0],
335 raw, ctx->tiles[i].w * ctx->component_size,
336 ctx->tiles[i].w * ctx->component_size,
337 ctx->tiles[i].h);
338 raw += ctx->tiles[i].w * ctx->component_size * ctx->tiles[i].h;
339 }
340
341 /* Frame is ready to be output */
342 ret = av_frame_ref(frame, ctx->reference);
343 if (ret < 0)
344 goto end;
345
346 /* Keyframe when the number of pixels updated matches the whole surface */
347 if (pixel_size == ctx->inflated_size) {
348 frame->pict_type = AV_PICTURE_TYPE_I;
349 frame->flags |= AV_FRAME_FLAG_KEY;
350 } else {
351 frame->pict_type = AV_PICTURE_TYPE_P;
352 }
353
354 /* Palette handling */
355 if (avctx->pix_fmt == AV_PIX_FMT_PAL8) {
356 ff_copy_palette(ctx->palette, avpkt, avctx);
357 memcpy(frame->data[1], ctx->palette, AVPALETTE_SIZE);
358 }
359 // We only return a picture when enough of it is undamaged, this avoids copying nearly broken frames around
360 if (ctx->valid_pixels < ctx->inflated_size)
361 ctx->valid_pixels += pixel_size;
362 if (ctx->valid_pixels >= ctx->inflated_size * (100 - avctx->discard_damaged_percentage) / 100)
363 *got_frame = 1;
364
365 ret = avpkt->size;
366end:
367 av_free(inflated_tiles);
368 return ret;
369}
370
372 .p.name = "rscc",
373 CODEC_LONG_NAME("innoHeim/Rsupport Screen Capture Codec"),
374 .p.type = AVMEDIA_TYPE_VIDEO,
375 .p.id = AV_CODEC_ID_RSCC,
376 .init = rscc_init,
378 .close = rscc_close,
379 .priv_data_size = sizeof(RsccContext),
380 .p.capabilities = AV_CODEC_CAP_DR1,
381 .caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
382};
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_rscc_decoder
Definition rscc.c:371
static AVFormatContext * ctx
Libavcodec external API header.
static av_always_inline int bytestream2_get_bytes_left(const GetByteContext *g)
Definition bytestream.h:158
static av_always_inline void bytestream2_init(GetByteContext *g, const uint8_t *buf, int buf_size)
Definition bytestream.h:137
static av_always_inline void bytestream2_skip(GetByteContext *g, unsigned int size)
Definition bytestream.h:168
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
#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...
#define NULL
Definition coverity.c:32
long long int64_t
Definition coverity.c:34
int ff_reget_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Identical in function to ff_get_buffer(), except it reuses the existing buffer if available.
Definition decode.c:1906
int ff_copy_palette(void *dst, const AVPacket *src, void *logctx)
Check whether the side-data of src contains a palette of size AVPALETTE_SIZE; if so,...
Definition decode.c:2321
static AVFrame * frame
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition codec.h:49
@ AV_CODEC_ID_RSCC
Definition codec_id.h:242
#define AVERROR_UNKNOWN
Unknown error, typically from an external library.
Definition error.h:73
#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
int av_frame_ref(AVFrame *dst, const AVFrame *src)
Set up a new reference to the data described by the source frame.
Definition frame.c:278
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_DEBUG
Stuff which is only useful for libav* developers.
Definition log.h:231
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition log.h:216
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
void av_fast_malloc(void *ptr, unsigned int *size, size_t min_size)
Allocate a buffer, reusing the given one if large enough.
Definition mem.c:555
@ 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
void av_image_copy_plane(uint8_t *dst, int dst_linesize, const uint8_t *src, int src_linesize, int bytewidth, int height)
Copy image plane from src to dst.
Definition imgutils.c:374
@ AV_PICTURE_TYPE_I
Intra.
Definition avutil.h:278
@ AV_PICTURE_TYPE_P
Predicted.
Definition avutil.h:279
misc image utilities
#define av_cold
Definition attributes.h:117
common internal API header
#define MKTAG(a, b, c, d)
Definition macros.h:55
Memory handling functions.
#define av_malloc(s)
Definition ops_static.c:52
@ AV_PIX_FMT_BGR0
packed BGR 8:8:8, 32bpp, BGRXBGRX... X=unused/undefined
Definition pixfmt.h:265
@ AV_PIX_FMT_BGRA
packed BGRA 8:8:8:8, 32bpp, BGRABGRA...
Definition pixfmt.h:102
@ AV_PIX_FMT_RGB555LE
packed RGB 5:5:5, 16bpp, (msb)1X 5R 5G 5B(lsb), little-endian, X=unused/undefined
Definition pixfmt.h:115
@ AV_PIX_FMT_PAL8
8 bits with AV_PIX_FMT_RGB32 palette
Definition pixfmt.h:84
@ AV_PIX_FMT_BGR24
packed RGB 8:8:8, 24bpp, BGRBGR...
Definition pixfmt.h:76
#define AVPALETTE_SIZE
Definition pixfmt.h:32
static av_cold int rscc_close(AVCodecContext *avctx)
Definition rscc.c:140
#define TILE_SIZE
Definition rscc.c:50
static av_cold int rscc_init(AVCodecContext *avctx)
Definition rscc.c:72
static int rscc_decode_frame(AVCodecContext *avctx, AVFrame *frame, int *got_frame, AVPacket *avpkt)
Definition rscc.c:151
main external API structure.
Definition avcodec.h:443
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition avcodec.h:643
int width
picture width / height.
Definition avcodec.h:604
unsigned int codec_tag
fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A').
Definition avcodec.h:468
int bits_per_coded_sample
bits per sample/pixel from the demuxer (needed for huffyuv).
Definition avcodec.h:1564
int discard_damaged_percentage
The percentage of damaged samples to discard a frame.
Definition avcodec.h:1822
uint8_t * extradata
Out-of-band global headers that may be used by some codecs.
Definition avcodec.h:526
int extradata_size
Definition avcodec.h:527
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
const uint8_t * buffer
Definition bytestream.h:34
uLongf inflated_size
Definition rscc.c:68
int component_size
Definition rscc.c:62
int valid_pixels
Definition rscc.c:69
uint8_t palette[AVPALETTE_SIZE]
Definition rscc.c:64
GetByteContext gbc
Definition rscc.c:58
Tile * tiles
Definition rscc.c:60
AVFrame * reference
Definition rscc.c:59
unsigned int tiles_size
Definition rscc.c:61
uint8_t * inflated_buf
Definition rscc.c:67
Definition rscc.c:52
int y
Definition rscc.c:53
int x
Definition rscc.c:53
int h
Definition rscc.c:54
int w
Definition rscc.c:54
#define av_free(p)
#define ff_dlog(a,...)
#define av_freep(p)
#define av_log(a,...)
int len