23 #ifndef AVCODEC_FFV1_H 24 #define AVCODEC_FFV1_H 35 #include "libavutil/pixdesc.h" 45 #ifdef __INTEL_COMPILER 51 #define CONTEXT_SIZE 32 53 #define MAX_QUANT_TABLES 8 54 #define MAX_CONTEXT_INPUTS 5 56 #define AC_GOLOMB_RICE 0 57 #define AC_RANGE_DEFAULT_TAB 1 58 #define AC_RANGE_CUSTOM_TAB 2 59 #define AC_RANGE_DEFAULT_TAB_FORCE -2 69 int16_t quant_table[MAX_CONTEXT_INPUTS][256];
70 int quant_table_index;
72 uint8_t (*state)[CONTEXT_SIZE];
74 uint8_t interlace_bit_state[2];
77 #define MAX_SLICES 1024 85 uint64_t rc_stat[256][2];
86 uint64_t (*rc_stat2[MAX_QUANT_TABLES])[32][2];
91 int chroma_h_shift, chroma_v_shift;
104 int16_t quant_table[MAX_CONTEXT_INPUTS][256];
105 int16_t quant_tables[MAX_QUANT_TABLES][MAX_CONTEXT_INPUTS][256];
106 int context_count[MAX_QUANT_TABLES];
107 uint8_t state_transition[256];
108 uint8_t (*initial_states[MAX_QUANT_TABLES])[32];
111 int16_t *sample_buffer;
112 int32_t *sample_buffer32;
122 int bits_per_raw_sample;
126 int quant_table_count;
137 int slice_reset_contexts;
138 int slice_coding_mode;
139 int slice_rct_by_coef;
140 int slice_rct_ry_coef;
147 int ff_ffv1_allocate_initial_states(
FFV1Context *f);
151 static av_always_inline
int fold(
int diff,
int bits)
156 diff += 1 << (bits - 1);
157 diff = av_mod_uintp2(diff, bits);
158 diff -= 1 << (bits - 1);
164 static inline void update_vlc_state(
VlcState *
const state,
const int v)
166 int drift = state->drift;
167 int count = state->count;
168 state->error_sum +=
FFABS(v);
174 state->error_sum >>= 1;
178 if (drift <= -count) {
179 if (state->bias > -128)
185 }
else if (drift > 0) {
186 if (state->bias < 127)
194 state->drift = drift;
195 state->count = count;
199 #define RENAME(name) name 200 #include "ffv1_template.c" 205 #define RENAME(name) name ## 32 206 #include "ffv1_template.c" This structure describes decoded (raw) audio or video data.
Definition: frame.h:218
Definition: put_bits.h:35
Public header for CRC hash function implementation.
bitstream reader API header.
high precision timer, useful to profile code
simple assert() macros that are a bit more flexible than ISO C assert().
int ac
1=range coder <-> 0=golomb rice
Definition: ffv1.h:101
#define FFABS(a)
Absolute value, Note, INT_MIN / INT64_MIN result in undefined behavior as they are not representable ...
Definition: common.h:72
int ac_byte_count
number of bytes used for AC coding
Definition: ffv1.h:102
Libavcodec external API header.
main external API structure.
Definition: avcodec.h:1518
Describe the class of an AVClass context structure.
Definition: log.h:67
#define MAX_SLICES
The maximum number of slices supported by the decoder.
Definition: h264dec.h:68
Definition: get_bits.h:56
common internal api header.