FFmpeg
Data Structures | Macros | Functions | Variables
tiertexseqv.c File Reference
#include "avcodec.h"
#include "get_bits.h"
#include "internal.h"

Go to the source code of this file.

Data Structures

struct  SeqVideoContext
 

Macros

#define BITSTREAM_READER_LE
 

Functions

static const unsigned char * seq_unpack_rle_block (const unsigned char *src, const unsigned char *src_end, unsigned char *dst, int dst_size)
 
static const unsigned char * seq_decode_op1 (SeqVideoContext *seq, const unsigned char *src, const unsigned char *src_end, unsigned char *dst)
 
static const unsigned char * seq_decode_op2 (SeqVideoContext *seq, const unsigned char *src, const unsigned char *src_end, unsigned char *dst)
 
static const unsigned char * seq_decode_op3 (SeqVideoContext *seq, const unsigned char *src, const unsigned char *src_end, unsigned char *dst)
 
static int seqvideo_decode (SeqVideoContext *seq, const unsigned char *data, int data_size)
 
static av_cold int seqvideo_decode_init (AVCodecContext *avctx)
 
static int seqvideo_decode_frame (AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
 
static av_cold int seqvideo_decode_end (AVCodecContext *avctx)
 

Variables

AVCodec ff_tiertexseqvideo_decoder
 

Detailed Description

Tiertex Limited SEQ video decoder

Definition in file tiertexseqv.c.

Macro Definition Documentation

◆ BITSTREAM_READER_LE

#define BITSTREAM_READER_LE

Definition at line 27 of file tiertexseqv.c.

Function Documentation

◆ seq_unpack_rle_block()

static const unsigned char* seq_unpack_rle_block ( const unsigned char *  src,
const unsigned char *  src_end,
unsigned char *  dst,
int  dst_size 
)
static

Definition at line 39 of file tiertexseqv.c.

Referenced by seq_decode_op1().

◆ seq_decode_op1()

static const unsigned char* seq_decode_op1 ( SeqVideoContext seq,
const unsigned char *  src,
const unsigned char *  src_end,
unsigned char *  dst 
)
static

Definition at line 77 of file tiertexseqv.c.

Referenced by seqvideo_decode().

◆ seq_decode_op2()

static const unsigned char* seq_decode_op2 ( SeqVideoContext seq,
const unsigned char *  src,
const unsigned char *  src_end,
unsigned char *  dst 
)
static

Definition at line 127 of file tiertexseqv.c.

Referenced by seqvideo_decode().

◆ seq_decode_op3()

static const unsigned char* seq_decode_op3 ( SeqVideoContext seq,
const unsigned char *  src,
const unsigned char *  src_end,
unsigned char *  dst 
)
static

Definition at line 146 of file tiertexseqv.c.

Referenced by seqvideo_decode().

◆ seqvideo_decode()

static int seqvideo_decode ( SeqVideoContext seq,
const unsigned char *  data,
int  data_size 
)
static

Definition at line 164 of file tiertexseqv.c.

Referenced by seqvideo_decode_frame().

◆ seqvideo_decode_init()

static av_cold int seqvideo_decode_init ( AVCodecContext avctx)
static

Definition at line 213 of file tiertexseqv.c.

◆ seqvideo_decode_frame()

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

Definition at line 232 of file tiertexseqv.c.

◆ seqvideo_decode_end()

static av_cold int seqvideo_decode_end ( AVCodecContext avctx)
static

Definition at line 255 of file tiertexseqv.c.

Variable Documentation

◆ ff_tiertexseqvideo_decoder

AVCodec ff_tiertexseqvideo_decoder
Initial value:
= {
.name = "tiertexseqvideo",
.long_name = NULL_IF_CONFIG_SMALL("Tiertex Limited SEQ video"),
.priv_data_size = sizeof(SeqVideoContext),
.capabilities = AV_CODEC_CAP_DR1,
}

Definition at line 264 of file tiertexseqv.c.

init
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:31
SeqVideoContext
Definition: tiertexseqv.c:33
seqvideo_decode_end
static av_cold int seqvideo_decode_end(AVCodecContext *avctx)
Definition: tiertexseqv.c:255
decode
static void decode(AVCodecContext *dec_ctx, AVPacket *pkt, AVFrame *frame, FILE *outfile)
Definition: decode_audio.c:71
AV_CODEC_ID_TIERTEXSEQVIDEO
@ AV_CODEC_ID_TIERTEXSEQVIDEO
Definition: codec_id.h:144
seqvideo_decode_frame
static int seqvideo_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: tiertexseqv.c:232
AV_CODEC_CAP_DR1
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition: codec.h:52
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:117
seqvideo_decode_init
static av_cold int seqvideo_decode_init(AVCodecContext *avctx)
Definition: tiertexseqv.c:213
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201