94 ctx->component_size = 4;
97 ctx->component_size = 3;
101 ctx->component_size = 4;
125 ctx->component_size = 4;
134 if (!
ctx->inflated_buf)
157 const uint8_t *pixels, *raw;
158 uint8_t *inflated_tiles =
NULL;
159 int tiles_nb, packed_size, pixel_size = 0;
171 tiles_nb = bytestream2_get_le16(gbc);
179 tiles_nb *
sizeof(*
ctx->tiles));
191 uLongf packed_tiles_size;
194 packed_tiles_size = bytestream2_get_byte(gbc);
196 packed_tiles_size = bytestream2_get_le16(gbc);
198 ff_dlog(avctx,
"packed tiles of size %lu.\n", packed_tiles_size);
201 if (packed_tiles_size != tiles_nb *
TILE_SIZE) {
210 if (!inflated_tiles) {
215 ret = uncompress(inflated_tiles, &length,
216 gbc->
buffer, packed_tiles_size);
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);
238 if (pixel_size +
ctx->tiles[
i].w * (
int64_t)
ctx->tiles[
i].h *
ctx->component_size > INT_MAX) {
244 pixel_size +=
ctx->tiles[
i].w *
ctx->tiles[
i].h *
ctx->component_size;
246 ff_dlog(avctx,
"tile %d orig(%d,%d) %dx%d.\n",
i,
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,
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,
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);
279 packed_size = bytestream2_get_le32(gbc);
281 ff_dlog(avctx,
"pixel_size %d packed_size %d.\n", pixel_size, packed_size);
283 if (packed_size < 0) {
290 if (pixel_size == packed_size) {
298 uLongf
len =
ctx->inflated_size;
304 if (
ctx->inflated_size < pixel_size) {
308 ret = uncompress(
ctx->inflated_buf, &
len, gbc->
buffer, packed_size);
314 if (
len < pixel_size) {
317 memset(
ctx->inflated_buf +
len, 0, pixel_size -
len);
320 pixels =
ctx->inflated_buf;
330 for (
i = 0;
i < tiles_nb;
i++) {
331 uint8_t *
dst =
ctx->reference->data[0] +
ctx->reference->linesize[0] *
333 ctx->tiles[
i].x *
ctx->component_size;
335 raw,
ctx->tiles[
i].w *
ctx->component_size,
336 ctx->tiles[
i].w *
ctx->component_size,
338 raw +=
ctx->tiles[
i].w *
ctx->component_size *
ctx->tiles[
i].h;
347 if (pixel_size ==
ctx->inflated_size) {
360 if (
ctx->valid_pixels <
ctx->inflated_size)
361 ctx->valid_pixels += pixel_size;
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
const FFCodec ff_rscc_decoder
static AVFormatContext * ctx
Libavcodec external API header.
static av_always_inline int bytestream2_get_bytes_left(const GetByteContext *g)
static av_always_inline void bytestream2_init(GetByteContext *g, const uint8_t *buf, int buf_size)
static av_always_inline void bytestream2_skip(GetByteContext *g, unsigned int size)
#define i(width, name, range_min, range_max)
#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...
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.
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,...
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
#define AVERROR_UNKNOWN
Unknown error, typically from an external library.
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
#define AV_FRAME_FLAG_KEY
A flag to mark frames that are keyframes.
int av_frame_ref(AVFrame *dst, const AVFrame *src)
Set up a new reference to the data described by the source frame.
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
#define AV_LOG_WARNING
Something somehow does not look correct.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
void av_fast_malloc(void *ptr, unsigned int *size, size_t min_size)
Allocate a buffer, reusing the given one if large enough.
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...
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.
@ AV_PICTURE_TYPE_I
Intra.
@ AV_PICTURE_TYPE_P
Predicted.
common internal API header
#define MKTAG(a, b, c, d)
Memory handling functions.
@ AV_PIX_FMT_BGR0
packed BGR 8:8:8, 32bpp, BGRXBGRX... X=unused/undefined
@ AV_PIX_FMT_BGRA
packed BGRA 8:8:8:8, 32bpp, BGRABGRA...
@ AV_PIX_FMT_RGB555LE
packed RGB 5:5:5, 16bpp, (msb)1X 5R 5G 5B(lsb), little-endian, X=unused/undefined
@ AV_PIX_FMT_PAL8
8 bits with AV_PIX_FMT_RGB32 palette
@ AV_PIX_FMT_BGR24
packed RGB 8:8:8, 24bpp, BGRBGR...
static av_cold int rscc_close(AVCodecContext *avctx)
static av_cold int rscc_init(AVCodecContext *avctx)
static int rscc_decode_frame(AVCodecContext *avctx, AVFrame *frame, int *got_frame, AVPacket *avpkt)
main external API structure.
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
int width
picture width / height.
unsigned int codec_tag
fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A').
int bits_per_coded_sample
bits per sample/pixel from the demuxer (needed for huffyuv).
int discard_damaged_percentage
The percentage of damaged samples to discard a frame.
uint8_t * extradata
Out-of-band global headers that may be used by some codecs.
This structure describes decoded (raw) audio or video data.
This structure stores compressed data.
uint8_t palette[AVPALETTE_SIZE]