FFmpeg
Macros | Functions | Variables
wnv1.c File Reference
#include "libavutil/thread.h"
#include "avcodec.h"
#include "codec_internal.h"
#include "decode.h"
#include "get_bits.h"

Go to the source code of this file.

Macros

#define BITSTREAM_READER_LE
 
#define CODE_VLC_BITS   9
 

Functions

static int wnv1_get_code (GetBitContext *gb, int shift, int base_value)
 
static int decode_frame (AVCodecContext *avctx, AVFrame *p, int *got_frame, AVPacket *avpkt)
 
static av_cold void wnv1_init_static (void)
 
static av_cold int decode_init (AVCodecContext *avctx)
 

Variables

static const uint8_t code_tab [16][2]
 
static VLCElem code_vlc [1<< CODE_VLC_BITS]
 
const FFCodec ff_wnv1_decoder
 

Detailed Description

Winnov WNV1 codec.

Definition in file wnv1.c.

Macro Definition Documentation

◆ BITSTREAM_READER_LE

#define BITSTREAM_READER_LE

Definition at line 29 of file wnv1.c.

◆ CODE_VLC_BITS

#define CODE_VLC_BITS   9

Definition at line 41 of file wnv1.c.

Function Documentation

◆ wnv1_get_code()

static int wnv1_get_code ( GetBitContext gb,
int  shift,
int  base_value 
)
inlinestatic

Definition at line 45 of file wnv1.c.

Referenced by decode_frame().

◆ decode_frame()

static int decode_frame ( AVCodecContext avctx,
AVFrame p,
int got_frame,
AVPacket avpkt 
)
static

Definition at line 55 of file wnv1.c.

◆ wnv1_init_static()

static av_cold void wnv1_init_static ( void  )
static

Definition at line 116 of file wnv1.c.

Referenced by decode_init().

◆ decode_init()

static av_cold int decode_init ( AVCodecContext avctx)
static

Definition at line 124 of file wnv1.c.

Variable Documentation

◆ code_tab

const uint8_t code_tab[16][2]
static
Initial value:
= {
{ 7, 1 }, { 8, 3 }, { 6, 3 }, { 9, 4 }, { 5, 4 }, { 10, 5 }, { 4, 5 },
{ 11, 6 }, { 3, 6 }, { 12, 7 }, { 2, 7 }, { 13, 8 }, { 1, 8 }, { 14, 9 },
{ 0, 9 }, { 15, 8 }
}

Definition at line 35 of file wnv1.c.

Referenced by wnv1_init_static().

◆ code_vlc

VLCElem code_vlc[1<< CODE_VLC_BITS]
static

Definition at line 42 of file wnv1.c.

Referenced by decode_channel(), wnv1_get_code(), and wnv1_init_static().

◆ ff_wnv1_decoder

const FFCodec ff_wnv1_decoder
Initial value:
= {
.p.name = "wnv1",
CODEC_LONG_NAME("Winnov WNV1"),
.p.type = AVMEDIA_TYPE_VIDEO,
.init = decode_init,
.p.capabilities = AV_CODEC_CAP_DR1,
}

Definition at line 138 of file wnv1.c.

AV_CODEC_ID_WNV1
@ AV_CODEC_ID_WNV1
Definition: codec_id.h:125
decode_init
static av_cold int decode_init(AVCodecContext *avctx)
Definition: wnv1.c:124
FF_CODEC_DECODE_CB
#define FF_CODEC_DECODE_CB(func)
Definition: codec_internal.h:287
CODEC_LONG_NAME
#define CODEC_LONG_NAME(str)
Definition: codec_internal.h:272
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
decode_frame
static int decode_frame(AVCodecContext *avctx, AVFrame *p, int *got_frame, AVPacket *avpkt)
Definition: wnv1.c:55
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201