FFmpeg
Loading...
Searching...
No Matches
rangecoder.h File Reference

Range coder. More...

#include <stdint.h>
#include "libavutil/avassert.h"
#include "libavutil/intmath.h"

Go to the source code of this file.

Data Structures

struct  RangeCoder
 

Macros

#define MAX_OVERREAD   2
 

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, int version)
 Terminates the range coder.
 
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.

Macro Definition Documentation

◆ MAX_OVERREAD

#define MAX_OVERREAD   2

Definition at line 46 of file rangecoder.h.

Function Documentation

◆ ff_init_range_encoder()

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

◆ ff_init_range_decoder()

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

◆ ff_rac_terminate()

int ff_rac_terminate ( RangeCoder * c,
int version )

Terminates the range coder.

Parameters
versionversion 0 requires the decoder to know the data size in bytes version 1 needs about 1 bit more space but does not need to carry the size from encoder to decoder

Definition at line 109 of file rangecoder.c.

Referenced by encode_frame(), encode_slice(), ff_ffv1_write_extradata(), and main().

◆ ff_build_rac_states()

◆ renorm_encoder()

static void renorm_encoder ( RangeCoder * c)
inlinestatic

Definition at line 62 of file rangecoder.h.

Referenced by ff_rac_terminate(), and put_rac().

◆ get_rac_count()

static int get_rac_count ( RangeCoder * c)
inlinestatic

Definition at line 79 of file rangecoder.h.

Referenced by encode_float32_remap_segment(), and encode_q_branch().

◆ put_rac()

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

Definition at line 87 of file rangecoder.h.

◆ refill()

static void refill ( RangeCoder * c)
inlinestatic

Definition at line 107 of file rangecoder.h.

Referenced by get_rac().

◆ get_rac()