Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
aom-rav1e
Commits
dfa33f22
Commit
dfa33f22
authored
Nov 16, 2016
by
Nathan E. Egge
Committed by
Nathan Egge
Jan 05, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use inter_ext_tx_cdf with CONFIG_EC_MULTISYMBOL.
Change-Id: I76259d6ec925a0c7024e7c70a517debe2d3bf1ab
parent
3a0df186
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
25 additions
and
15 deletions
+25
-15
av1/common/entropymode.c
av1/common/entropymode.c
+10
-6
av1/common/entropymode.h
av1/common/entropymode.h
+4
-2
av1/decoder/decodemv.c
av1/decoder/decodemv.c
+1
-1
av1/decoder/decoder.c
av1/decoder/decoder.c
+6
-4
av1/encoder/bitstream.c
av1/encoder/bitstream.c
+4
-2
No files found.
av1/common/entropymode.c
View file @
dfa33f22
...
...
@@ -1782,8 +1782,6 @@ static void init_mode_probs(FRAME_CONTEXT *fc) {
#if !CONFIG_EXT_TX
av1_tree_to_cdf_2D
(
av1_ext_tx_tree
,
fc
->
intra_ext_tx_prob
,
fc
->
intra_ext_tx_cdf
,
EXT_TX_SIZES
,
TX_TYPES
);
av1_tree_to_cdf_1D
(
av1_ext_tx_tree
,
fc
->
inter_ext_tx_prob
,
fc
->
inter_ext_tx_cdf
,
EXT_TX_SIZES
);
#endif
av1_tree_to_cdf_2D
(
av1_intra_mode_tree
,
av1_kf_y_mode_prob
,
av1_kf_y_mode_cdf
,
INTRA_MODES
,
INTRA_MODES
);
...
...
@@ -1791,6 +1789,10 @@ static void init_mode_probs(FRAME_CONTEXT *fc) {
#if CONFIG_EC_MULTISYMBOL
av1_tree_to_cdf_1D
(
av1_partition_tree
,
fc
->
partition_prob
,
fc
->
partition_cdf
,
PARTITION_CONTEXTS
);
#if !CONFIG_EXT_TX
av1_tree_to_cdf_1D
(
av1_ext_tx_tree
,
fc
->
inter_ext_tx_prob
,
fc
->
inter_ext_tx_cdf
,
EXT_TX_SIZES
);
#endif
av1_tree_to_cdf
(
av1_segment_tree
,
fc
->
seg
.
tree_probs
,
fc
->
seg
.
tree_cdf
);
#endif
#if CONFIG_DELTA_Q
...
...
@@ -1815,6 +1817,12 @@ void av1_set_mode_cdfs(struct AV1Common *cm) {
for
(
i
=
0
;
i
<
PARTITION_CONTEXTS
;
++
i
)
av1_tree_to_cdf
(
av1_partition_tree
,
fc
->
partition_prob
[
i
],
fc
->
partition_cdf
[
i
]);
#if !CONFIG_EXT_TX
for
(
i
=
TX_4X4
;
i
<
EXT_TX_SIZES
;
++
i
)
av1_tree_to_cdf
(
av1_ext_tx_tree
,
fc
->
inter_ext_tx_prob
[
i
],
fc
->
inter_ext_tx_cdf
[
i
]);
#endif
#if CONFIG_DAALA_EC
for
(
i
=
0
;
i
<
INTRA_MODES
;
++
i
)
av1_tree_to_cdf
(
av1_intra_mode_tree
,
fc
->
uv_mode_prob
[
i
],
...
...
@@ -1841,10 +1849,6 @@ void av1_set_mode_cdfs(struct AV1Common *cm) {
for
(
j
=
0
;
j
<
TX_TYPES
;
++
j
)
av1_tree_to_cdf
(
av1_ext_tx_tree
,
fc
->
intra_ext_tx_prob
[
i
][
j
],
fc
->
intra_ext_tx_cdf
[
i
][
j
]);
for
(
i
=
TX_4X4
;
i
<
EXT_TX_SIZES
;
++
i
)
av1_tree_to_cdf
(
av1_ext_tx_tree
,
fc
->
inter_ext_tx_prob
[
i
],
fc
->
inter_ext_tx_cdf
[
i
]);
#endif
#endif
}
...
...
av1/common/entropymode.h
View file @
dfa33f22
...
...
@@ -173,11 +173,13 @@ typedef struct frame_contexts {
aom_cdf_prob
inter_mode_cdf
[
INTER_MODE_CONTEXTS
][
INTER_MODES
];
#if !CONFIG_EXT_TX
aom_cdf_prob
intra_ext_tx_cdf
[
EXT_TX_SIZES
][
TX_TYPES
][
TX_TYPES
];
aom_cdf_prob
inter_ext_tx_cdf
[
EXT_TX_SIZES
][
TX_TYPES
];
#endif
#endif
#if CONFIG_EC_MULTISYMBOL
aom_cdf_prob
partition_cdf
[
PARTITION_CONTEXTS
][
PARTITION_TYPES
];
#if !CONFIG_EXT_TX
aom_cdf_prob
inter_ext_tx_cdf
[
EXT_TX_SIZES
][
TX_TYPES
];
#endif
#endif
#if CONFIG_DELTA_Q
aom_prob
delta_q_prob
[
DELTA_Q_CONTEXTS
];
...
...
@@ -370,7 +372,7 @@ void av1_setup_past_independence(struct AV1Common *cm);
void
av1_adapt_intra_frame_probs
(
struct
AV1Common
*
cm
);
void
av1_adapt_inter_frame_probs
(
struct
AV1Common
*
cm
);
#if CONFIG_
DAALA_EC
&& !CONFIG_EXT_TX
#if CONFIG_
EC_MULTISYMBOL
&& !CONFIG_EXT_TX
extern
int
av1_ext_tx_ind
[
TX_TYPES
];
extern
int
av1_ext_tx_inv
[
TX_TYPES
];
#endif
...
...
av1/decoder/decodemv.c
View file @
dfa33f22
...
...
@@ -742,7 +742,7 @@ static void read_tx_type(const AV1_COMMON *const cm, MACROBLOCKD *xd,
!
segfeature_active
(
&
cm
->
seg
,
mbmi
->
segment_id
,
SEG_LVL_SKIP
))
{
FRAME_COUNTS
*
counts
=
xd
->
counts
;
if
(
inter_block
)
{
#if CONFIG_
DAALA_EC
#if CONFIG_
EC_MULTISYMBOL
mbmi
->
tx_type
=
av1_ext_tx_inv
[
aom_read_symbol
(
r
,
cm
->
fc
->
inter_ext_tx_cdf
[
tx_size
],
TX_TYPES
,
ACCT_STR
)];
#else
...
...
av1/decoder/decoder.c
View file @
dfa33f22
...
...
@@ -53,14 +53,16 @@ static void initialize_dec(void) {
#if CONFIG_DAALA_EC
av1_indices_from_tree
(
av1_switchable_interp_ind
,
av1_switchable_interp_inv
,
SWITCHABLE_FILTERS
,
av1_switchable_interp_tree
);
#if !CONFIG_EXT_TX
av1_indices_from_tree
(
av1_ext_tx_ind
,
av1_ext_tx_inv
,
TX_TYPES
,
av1_ext_tx_tree
);
#endif
av1_indices_from_tree
(
av1_intra_mode_ind
,
av1_intra_mode_inv
,
INTRA_MODES
,
av1_intra_mode_tree
);
av1_indices_from_tree
(
av1_inter_mode_ind
,
av1_inter_mode_inv
,
INTER_MODES
,
av1_inter_mode_tree
);
#endif
#if CONFIG_EC_MULTISYMBOL
#if !CONFIG_EXT_TX
av1_indices_from_tree
(
av1_ext_tx_ind
,
av1_ext_tx_inv
,
TX_TYPES
,
av1_ext_tx_tree
);
#endif
#endif
}
}
...
...
av1/encoder/bitstream.c
View file @
dfa33f22
...
...
@@ -180,7 +180,7 @@ void av1_encode_token_init(void) {
av1_switchable_restore_tree
);
#endif // CONFIG_LOOP_RESTORATION
#if CONFIG_
DAALA_EC
#if CONFIG_
EC_MULTISYMBOL
/* This hack is necessary when CONFIG_EXT_INTERP is enabled because the five
SWITCHABLE_FILTERS are not consecutive, e.g., 0, 1, 2, 3, 4, when doing
an in-order traversal of the av1_switchable_interp_tree structure. */
...
...
@@ -193,6 +193,8 @@ void av1_encode_token_init(void) {
av1_indices_from_tree
(
av1_ext_tx_ind
,
av1_ext_tx_inv
,
TX_TYPES
,
av1_ext_tx_tree
);
#endif
#endif
#if CONFIG_DAALA_EC
av1_indices_from_tree
(
av1_intra_mode_ind
,
av1_intra_mode_inv
,
INTRA_MODES
,
av1_intra_mode_tree
);
av1_indices_from_tree
(
av1_inter_mode_ind
,
av1_inter_mode_inv
,
INTER_MODES
,
...
...
@@ -1215,7 +1217,7 @@ static void write_tx_type(const AV1_COMMON *const cm,
#endif // CONFIG_SUPERTX
!
segfeature_active
(
&
cm
->
seg
,
mbmi
->
segment_id
,
SEG_LVL_SKIP
))
{
if
(
is_inter
)
{
#if CONFIG_
DAALA_EC
#if CONFIG_
EC_MULTISYMBOL
aom_write_symbol
(
w
,
av1_ext_tx_ind
[
mbmi
->
tx_type
],
cm
->
fc
->
inter_ext_tx_cdf
[
tx_size
],
TX_TYPES
);
#else
...
...
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