Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
0ef61dd1
Commit
0ef61dd1
authored
Nov 22, 2017
by
Sebastien Alaiwan
Browse files
Cleanup dead variables
Change-Id: I36a4ca8bc0c2390b5731b2a60bdca54e3e37868a
parent
35777b8a
Changes
2
Hide whitespace changes
Inline
Side-by-side
av1/common/entropymode.c
View file @
0ef61dd1
...
...
@@ -1128,24 +1128,6 @@ const aom_cdf_prob default_palette_uv_size_cdf[PALETTE_BLOCK_SIZES][CDF_SIZE(
// When palette mode is enabled, following probability tables indicate the
// probabilities to code the "is_palette" bit (i.e. the bit that indicates
// if this block uses palette mode or DC_PRED mode).
const
aom_prob
av1_default_palette_y_mode_prob
[
PALETTE_BLOCK_SIZES
]
[
PALETTE_Y_MODE_CONTEXTS
]
=
{
{
240
,
180
,
100
},
{
240
,
180
,
100
},
{
240
,
180
,
100
},
{
240
,
180
,
100
},
{
240
,
180
,
100
},
{
240
,
180
,
100
},
{
240
,
180
,
100
},
{
240
,
180
,
100
},
{
240
,
180
,
100
},
{
240
,
180
,
100
},
};
const
aom_prob
av1_default_palette_uv_mode_prob
[
PALETTE_UV_MODE_CONTEXTS
]
=
{
253
,
229
};
const
aom_cdf_prob
default_palette_y_mode_cdf
[
PALETTE_BLOCK_SIZES
]
[
PALETTE_Y_MODE_CONTEXTS
]
[
CDF_SIZE
(
2
)]
=
{
...
...
av1/common/entropymode.h
View file @
0ef61dd1
...
...
@@ -449,11 +449,6 @@ extern const aom_cdf_prob default_kf_y_mode_cdf[INTRA_MODES][INTRA_MODES]
[
CDF_SIZE
(
INTRA_MODES
)];
#endif
extern
const
aom_prob
av1_default_palette_y_mode_prob
[
PALETTE_BLOCK_SIZES
]
[
PALETTE_Y_MODE_CONTEXTS
];
extern
const
aom_prob
av1_default_palette_uv_mode_prob
[
PALETTE_UV_MODE_CONTEXTS
];
static
const
int
av1_ext_tx_ind
[
EXT_TX_SET_TYPES
][
TX_TYPES
]
=
{
{
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
...
...
@@ -517,17 +512,7 @@ extern const aom_tree_index
extern
const
aom_tree_index
av1_inter_compound_mode_tree
[
TREE_SIZE
(
INTER_COMPOUND_MODES
)];
extern
const
aom_tree_index
av1_compound_type_tree
[
TREE_SIZE
(
COMPOUND_TYPES
)];
extern
const
aom_tree_index
av1_palette_color_index_tree
[
PALETTE_SIZES
][
TREE_SIZE
(
PALETTE_COLORS
)];
extern
const
aom_tree_index
av1_ext_tx_tree
[
EXT_TX_SET_TYPES
]
[
TREE_SIZE
(
TX_TYPES
)];
extern
const
aom_tree_index
av1_motion_mode_tree
[
TREE_SIZE
(
MOTION_MODES
)];
#if CONFIG_LOOP_RESTORATION
#define RESTORE_NONE_SGRPROJ_PROB 64
#define RESTORE_NONE_WIENER_PROB 64
extern
const
aom_tree_index
av1_switchable_restore_tree
[
TREE_SIZE
(
RESTORE_SWITCHABLE_TYPES
)];
#endif // CONFIG_LOOP_RESTORATION
void
av1_setup_frame_contexts
(
struct
AV1Common
*
cm
);
void
av1_setup_past_independence
(
struct
AV1Common
*
cm
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment