Libav
Data Structures | Functions
rangecoder.h File Reference

Range coder. More...

#include <stdint.h>
#include <assert.h>
#include "libavutil/common.h"

Go to the source code of this file.

Data Structures

struct  RangeCoder

Functions

void ff_init_range_encoder (RangeCoder *c, uint8_t *buf, int buf_size)
void ff_init_range_decoder (RangeCoder *c, const uint8_t *buf, int buf_size)
int ff_rac_terminate (RangeCoder *c)
void ff_build_rac_states (RangeCoder *c, int factor, int max_p)
static void renorm_encoder (RangeCoder *c)
static int get_rac_count (RangeCoder *c)
static void put_rac (RangeCoder *c, uint8_t *const state, int bit)
static void refill (RangeCoder *c)
static int get_rac (RangeCoder *c, uint8_t *const state)

Detailed Description

Range coder.

Definition in file rangecoder.h.

Function Documentation

void ff_init_range_encoder ( RangeCoder c,
uint8_t buf,
int  buf_size 
)

Definition at line 41 of file rangecoder.c.

Referenced by ff_init_range_decoder(), ffv1_encode_frame(), and write_extradata().

void ff_init_range_decoder ( RangeCoder c,
const uint8_t buf,
int  buf_size 
)

Definition at line 52 of file rangecoder.c.

Referenced by ffv1_decode_frame(), and read_extra_header().

int ff_rac_terminate ( RangeCoder c)

Definition at line 102 of file rangecoder.c.

Referenced by encode_slice(), ffv1_encode_frame(), and write_extradata().

void ff_build_rac_states ( RangeCoder c,
int  factor,
int  max_p 
)
static void renorm_encoder ( RangeCoder c)
inlinestatic

Definition at line 52 of file rangecoder.h.

Referenced by ff_rac_terminate(), and put_rac().

static int get_rac_count ( RangeCoder c)
inlinestatic

Definition at line 77 of file rangecoder.h.

static void put_rac ( RangeCoder c,
uint8_t *const  state,
int  bit 
)
inlinestatic

Definition at line 85 of file rangecoder.h.

static void refill ( RangeCoder c)
inlinestatic

Definition at line 104 of file rangecoder.h.

Referenced by get_rac().

static int get_rac ( RangeCoder c,
uint8_t *const  state 
)
inlinestatic