FFmpeg
Data Structures | Macros | Functions | Variables
rscc.c File Reference
#include <stdint.h>
#include <string.h>
#include <zlib.h>
#include "libavutil/imgutils.h"
#include "libavutil/internal.h"
#include "avcodec.h"
#include "bytestream.h"
#include "internal.h"

Go to the source code of this file.

Data Structures

struct  Tile
 
struct  RsccContext
 

Macros

#define TILE_SIZE   8
 

Functions

static av_cold int rscc_init (AVCodecContext *avctx)
 
static av_cold int rscc_close (AVCodecContext *avctx)
 
static int rscc_decode_frame (AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
 

Variables

AVCodec ff_rscc_decoder
 

Detailed Description

innoHeim/Rsupport Screen Capture Codec decoder

Fourcc: ISCC, RSCC

Lossless codec, data stored in tiles, with optional deflate compression.

Header contains the number of tiles in a frame with the tile coordinates, and it can be deflated or not. Similarly, pixel data comes after the header and a variable size value, and it can be deflated or just raw.

Supports: PAL8, BGRA, BGR24, RGB555

Definition in file rscc.c.

Macro Definition Documentation

◆ TILE_SIZE

#define TILE_SIZE   8

Definition at line 48 of file rscc.c.

Function Documentation

◆ rscc_init()

static av_cold int rscc_init ( AVCodecContext avctx)
static

Definition at line 70 of file rscc.c.

◆ rscc_close()

static av_cold int rscc_close ( AVCodecContext avctx)
static

Definition at line 138 of file rscc.c.

◆ rscc_decode_frame()

static int rscc_decode_frame ( AVCodecContext avctx,
void *  data,
int got_frame,
AVPacket avpkt 
)
static

Definition at line 149 of file rscc.c.

Variable Documentation

◆ ff_rscc_decoder

AVCodec ff_rscc_decoder
Initial value:
= {
.name = "rscc",
.long_name = NULL_IF_CONFIG_SMALL("innoHeim/Rsupport Screen Capture Codec"),
.init = rscc_init,
.decode = rscc_decode_frame,
.close = rscc_close,
.priv_data_size = sizeof(RsccContext),
.capabilities = AV_CODEC_CAP_DR1,
.caps_internal = FF_CODEC_CAP_INIT_THREADSAFE |
}

Definition at line 373 of file rscc.c.

FF_CODEC_CAP_INIT_THREADSAFE
#define FF_CODEC_CAP_INIT_THREADSAFE
The codec does not modify any global variables in the init function, allowing to call the init functi...
Definition: internal.h:40
AV_CODEC_ID_RSCC
@ AV_CODEC_ID_RSCC
Definition: avcodec.h:411
rscc_decode_frame
static int rscc_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: rscc.c:149
rscc_close
static av_cold int rscc_close(AVCodecContext *avctx)
Definition: rscc.c:138
AV_CODEC_CAP_DR1
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:981
rscc_init
static av_cold int rscc_init(AVCodecContext *avctx)
Definition: rscc.c:70
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:188
FF_CODEC_CAP_INIT_CLEANUP
#define FF_CODEC_CAP_INIT_CLEANUP
The codec allows calling the close function for deallocation even if the init function returned a fai...
Definition: internal.h:48
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
RsccContext
Definition: rscc.c:55