FFmpeg
Data Structures | Macros | Functions | Variables
rl2.c File Reference
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "libavutil/internal.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/mem.h"
#include "avcodec.h"
#include "internal.h"

Go to the source code of this file.

Data Structures

struct  Rl2Context
 

Macros

#define EXTRADATA1_SIZE   (6 + 256 * 3)
 video base, clr count, palette More...
 

Functions

static void rl2_rle_decode (Rl2Context *s, const uint8_t *in, int size, uint8_t *out, int stride, int video_base)
 Run Length Decode a single 320x200 frame. More...
 
static av_cold int rl2_decode_init (AVCodecContext *avctx)
 Initialize the decoder. More...
 
static int rl2_decode_frame (AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
 
static av_cold int rl2_decode_end (AVCodecContext *avctx)
 Uninit decoder. More...
 

Variables

AVCodec ff_rl2_decoder
 

Detailed Description

RL2 Video Decoder

Author
Sascha Sommer (sasch.nosp@m.asom.nosp@m.mer@f.nosp@m.reen.nosp@m.et.de)
See also
http://wiki.multimedia.cx/index.php?title=RL2

Definition in file rl2.c.

Macro Definition Documentation

◆ EXTRADATA1_SIZE

#define EXTRADATA1_SIZE   (6 + 256 * 3)

video base, clr count, palette

Definition at line 40 of file rl2.c.

Function Documentation

◆ rl2_rle_decode()

static void rl2_rle_decode ( Rl2Context s,
const uint8_t in,
int  size,
uint8_t out,
int  stride,
int  video_base 
)
static

Run Length Decode a single 320x200 frame.

Parameters
srl2 context
ininput buffer
sizeinput buffer size
outoutput buffer
stridestride of the output buffer
video_baseoffset of the rle data inside the frame

copy start of the background frame

decode the variable part of the frame

copy the rest from the background frame

Definition at line 60 of file rl2.c.

Referenced by rl2_decode_frame(), and rl2_decode_init().

◆ rl2_decode_init()

static av_cold int rl2_decode_init ( AVCodecContext avctx)
static

Initialize the decoder.

Parameters
avctxdecoder context
Returns
0 success, -1 on error

parse extra data

get frame_offset

initialize palette

decode background frame if present

Definition at line 132 of file rl2.c.

◆ rl2_decode_frame()

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

run length decode

make the palette available on the way out

report that the buffer was completely consumed

Definition at line 180 of file rl2.c.

◆ rl2_decode_end()

static av_cold int rl2_decode_end ( AVCodecContext avctx)
static

Uninit decoder.

Parameters
avctxdecoder context
Returns
0 success, -1 on error

Definition at line 211 of file rl2.c.

Variable Documentation

◆ ff_rl2_decoder

AVCodec ff_rl2_decoder
Initial value:
= {
.name = "rl2",
.long_name = NULL_IF_CONFIG_SMALL("RL2 video"),
.priv_data_size = sizeof(Rl2Context),
.close = rl2_decode_end,
.capabilities = AV_CODEC_CAP_DR1,
}

Definition at line 221 of file rl2.c.

init
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
rl2_decode_frame
static int rl2_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: rl2.c:180
decode
static void decode(AVCodecContext *dec_ctx, AVPacket *pkt, AVFrame *frame, FILE *outfile)
Definition: decode_audio.c:42
AV_CODEC_ID_RL2
@ AV_CODEC_ID_RL2
Definition: avcodec.h:332
Rl2Context
Definition: rl2.c:42
AV_CODEC_CAP_DR1
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:981
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
rl2_decode_init
static av_cold int rl2_decode_init(AVCodecContext *avctx)
Initialize the decoder.
Definition: rl2.c:132
rl2_decode_end
static av_cold int rl2_decode_end(AVCodecContext *avctx)
Uninit decoder.
Definition: rl2.c:211
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201