FFmpeg
|
miscellaneous RV30 tables More...
#include <stdint.h>
Go to the source code of this file.
Variables | |
static const uint8_t | rv30_luma_dc_quant [32] |
DC quantizer mapping for RV30. More... | |
static const uint8_t | rv30_itype_code [9 *9 *2] |
This table is used for storing the differences between the predicted and the real intra type. More... | |
static const uint8_t | rv30_itype_from_context [900] |
This table is used for retrieving the current intra type based on its neighbors and adjustment provided by code read and decoded before. More... | |
static const uint8_t | rv30_loop_filt_lim [32] |
Loop filter limits are taken from this table. More... | |
miscellaneous RV30 tables
Definition in file rv30data.h.
|
static |
DC quantizer mapping for RV30.
Definition at line 33 of file rv30data.h.
Referenced by rv30_decode_init().
|
static |
This table is used for storing the differences between the predicted and the real intra type.
Definition at line 42 of file rv30data.h.
Referenced by rv30_decode_intra_types().
|
static |
This table is used for retrieving the current intra type based on its neighbors and adjustment provided by code read and decoded before.
This is really a three-dimensional matrix with dimensions [-1..9][-1..9][0..9]. The first and second coordinates are determined by the top and left neighbors (-1 if unavailable).
Definition at line 63 of file rv30data.h.
Referenced by rv30_decode_intra_types().
|
static |
Loop filter limits are taken from this table.
Definition at line 178 of file rv30data.h.
Referenced by rv30_loop_filter().