FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Macros | Functions | Variables
wnv1.c File Reference

Winnov WNV1 codec. More...

#include "avcodec.h"
#include "get_bits.h"
#include "internal.h"
#include "mathops.h"

Go to the source code of this file.

Data Structures

struct  WNV1Context
 

Macros

#define CODE_VLC_BITS   9
 

Functions

static int wnv1_get_code (WNV1Context *w, int base_value)
 
static int decode_frame (AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
 
static av_cold int decode_init (AVCodecContext *avctx)
 

Variables

static const uint16_t code_tab [16][2]
 
static VLC code_vlc
 
AVCodec ff_wnv1_decoder
 

Detailed Description

Winnov WNV1 codec.

Definition in file wnv1.c.

Macro Definition Documentation

#define CODE_VLC_BITS   9

Definition at line 44 of file wnv1.c.

Referenced by decode_init(), and wnv1_get_code().

Function Documentation

static int wnv1_get_code ( WNV1Context w,
int  base_value 
)
inlinestatic

Definition at line 48 of file wnv1.c.

Referenced by decode_frame().

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

Definition at line 58 of file wnv1.c.

static av_cold int decode_init ( AVCodecContext avctx)
static

Definition at line 135 of file wnv1.c.

Variable Documentation

const uint16_t code_tab[16][2]
static
Initial value:
= {
{ 0x1FD, 9 }, { 0xFD, 8 }, { 0x7D, 7 }, { 0x3D, 6 }, { 0x1D, 5 }, { 0x0D, 4 }, { 0x005, 3 },
{ 0x000, 1 },
{ 0x004, 3 }, { 0x0C, 4 }, { 0x1C, 5 }, { 0x3C, 6 }, { 0x7C, 7 }, { 0xFC, 8 }, { 0x1FC, 9 }, { 0xFF, 8 }
}

Definition at line 38 of file wnv1.c.

Referenced by decode_init().

VLC code_vlc
static

Definition at line 45 of file wnv1.c.

Referenced by decode_channel().

AVCodec ff_wnv1_decoder
Initial value:
= {
.name = "wnv1",
.long_name = NULL_IF_CONFIG_SMALL("Winnov WNV1"),
.priv_data_size = sizeof(WNV1Context),
.capabilities = AV_CODEC_CAP_DR1,
}
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: wnv1.c:58
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:179
static av_cold int decode_init(AVCodecContext *avctx)
Definition: wnv1.c:135
static int decode(AVCodecContext *avctx, AVFrame *frame, int *got_frame, AVPacket *pkt)
Definition: ffmpeg.c:2257
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:994

Definition at line 150 of file wnv1.c.