#include "avcodec.h"
#include "get_bits.h"
Go to the source code of this file.
Data Structures | |
struct | SeqVideoContext |
Defines | |
#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 *data_size, AVPacket *avpkt) |
static av_cold int | seqvideo_decode_end (AVCodecContext *avctx) |
Variables | |
AVCodec | ff_tiertexseqvideo_decoder |
Definition in file tiertexseqv.c.
#define BITSTREAM_READER_LE |
Definition at line 28 of file tiertexseqv.c.
static const unsigned char* seq_decode_op1 | ( | SeqVideoContext * | seq, | |
const unsigned char * | src, | |||
const unsigned char * | src_end, | |||
unsigned char * | dst | |||
) | [static] |
static const unsigned char* seq_decode_op2 | ( | SeqVideoContext * | seq, | |
const unsigned char * | src, | |||
const unsigned char * | src_end, | |||
unsigned char * | dst | |||
) | [static] |
static const unsigned char* seq_decode_op3 | ( | SeqVideoContext * | seq, | |
const unsigned char * | src, | |||
const unsigned char * | src_end, | |||
unsigned char * | dst | |||
) | [static] |
static const unsigned char* seq_unpack_rle_block | ( | const unsigned char * | src, | |
const unsigned char * | src_end, | |||
unsigned char * | dst, | |||
int | dst_size | |||
) | [static] |
static int seqvideo_decode | ( | SeqVideoContext * | seq, | |
const unsigned char * | data, | |||
int | data_size | |||
) | [static] |
static av_cold int seqvideo_decode_end | ( | AVCodecContext * | avctx | ) | [static] |
Definition at line 250 of file tiertexseqv.c.
static int seqvideo_decode_frame | ( | AVCodecContext * | avctx, | |
void * | data, | |||
int * | data_size, | |||
AVPacket * | avpkt | |||
) | [static] |
Definition at line 225 of file tiertexseqv.c.
static av_cold int seqvideo_decode_init | ( | AVCodecContext * | avctx | ) | [static] |
Definition at line 212 of file tiertexseqv.c.
Initial value:
{ .name = "tiertexseqvideo", .type = AVMEDIA_TYPE_VIDEO, .id = AV_CODEC_ID_TIERTEXSEQVIDEO, .priv_data_size = sizeof(SeqVideoContext), .init = seqvideo_decode_init, .close = seqvideo_decode_end, .decode = seqvideo_decode_frame, .capabilities = CODEC_CAP_DR1, .long_name = NULL_IF_CONFIG_SMALL("Tiertex Limited SEQ video"), }
Definition at line 260 of file tiertexseqv.c.