FFmpeg
Data Structures | Functions | Variables
xxan.c File Reference
#include "libavutil/intreadwrite.h"
#include "libavutil/mem.h"
#include "avcodec.h"
#include "bytestream.h"
#include "codec_internal.h"
#include "decode.h"

Go to the source code of this file.

Data Structures

struct  XanContext
 

Functions

static av_cold int xan_decode_end (AVCodecContext *avctx)
 
static av_cold int xan_decode_init (AVCodecContext *avctx)
 
static int xan_unpack_luma (XanContext *s, uint8_t *dst, const int dst_size)
 
static int xan_unpack (XanContext *s, uint8_t *dest, const int dest_len)
 
static int xan_decode_chroma (AVCodecContext *avctx, unsigned chroma_off)
 
static int xan_decode_frame_type0 (AVCodecContext *avctx)
 
static int xan_decode_frame_type1 (AVCodecContext *avctx)
 
static int xan_decode_frame (AVCodecContext *avctx, AVFrame *rframe, int *got_frame, AVPacket *avpkt)
 

Variables

const FFCodec ff_xan_wc4_decoder
 

Function Documentation

◆ xan_decode_end()

static av_cold int xan_decode_end ( AVCodecContext avctx)
static

Definition at line 41 of file xxan.c.

◆ xan_decode_init()

static av_cold int xan_decode_init ( AVCodecContext avctx)
static

Definition at line 53 of file xxan.c.

◆ xan_unpack_luma()

static int xan_unpack_luma ( XanContext s,
uint8_t *  dst,
const int  dst_size 
)
static

Definition at line 85 of file xxan.c.

Referenced by xan_decode_frame_type0(), and xan_decode_frame_type1().

◆ xan_unpack()

static int xan_unpack ( XanContext s,
uint8_t *  dest,
const int  dest_len 
)
static

Definition at line 127 of file xxan.c.

Referenced by xan_decode_chroma(), and xan_decode_frame_type0().

◆ xan_decode_chroma()

static int xan_decode_chroma ( AVCodecContext avctx,
unsigned  chroma_off 
)
static

Definition at line 180 of file xxan.c.

Referenced by xan_decode_frame_type0(), and xan_decode_frame_type1().

◆ xan_decode_frame_type0()

static int xan_decode_frame_type0 ( AVCodecContext avctx)
static

Definition at line 278 of file xxan.c.

Referenced by xan_decode_frame().

◆ xan_decode_frame_type1()

static int xan_decode_frame_type1 ( AVCodecContext avctx)
static

Definition at line 357 of file xxan.c.

Referenced by xan_decode_frame().

◆ xan_decode_frame()

static int xan_decode_frame ( AVCodecContext avctx,
AVFrame rframe,
int got_frame,
AVPacket avpkt 
)
static

Definition at line 402 of file xxan.c.

Variable Documentation

◆ ff_xan_wc4_decoder

const FFCodec ff_xan_wc4_decoder
Initial value:
= {
.p.name = "xan_wc4",
CODEC_LONG_NAME("Wing Commander IV / Xxan"),
.p.type = AVMEDIA_TYPE_VIDEO,
.priv_data_size = sizeof(XanContext),
.close = xan_decode_end,
.p.capabilities = AV_CODEC_CAP_DR1,
.caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
}

Definition at line 436 of file xxan.c.

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: codec_internal.h:42
xan_decode_end
static av_cold int xan_decode_end(AVCodecContext *avctx)
Definition: xxan.c:41
FF_CODEC_DECODE_CB
#define FF_CODEC_DECODE_CB(func)
Definition: codec_internal.h:287
xan_decode_init
static av_cold int xan_decode_init(AVCodecContext *avctx)
Definition: xxan.c:53
AV_CODEC_ID_XAN_WC4
@ AV_CODEC_ID_XAN_WC4
Definition: codec_id.h:93
CODEC_LONG_NAME
#define CODEC_LONG_NAME(str)
Definition: codec_internal.h:272
init
int(* init)(AVBSFContext *ctx)
Definition: dts2pts.c:366
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
XanContext
Definition: xan.c:52
xan_decode_frame
static int xan_decode_frame(AVCodecContext *avctx, AVFrame *rframe, int *got_frame, AVPacket *avpkt)
Definition: xxan.c:402
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201