Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
aom-rav1e
Commits
ee4b3a80
Commit
ee4b3a80
authored
Feb 24, 2017
by
James Zern
Committed by
Yaowu Xu
Feb 25, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
blockd,decodeframe.c: remove unused tu_num_y var
Change-Id: Idd4a7ff49c594e8d1c7cb057967fe7bf75770dfb
parent
4ef9a130
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
2 deletions
+0
-2
av1/common/blockd.c
av1/common/blockd.c
+0
-1
av1/decoder/decodeframe.c
av1/decoder/decodeframe.c
+0
-1
No files found.
av1/common/blockd.c
View file @
ee4b3a80
...
...
@@ -86,7 +86,6 @@ void av1_foreach_transformed_block_interleave(
const
int
tu_num_h_y
=
(
max_4x4_h_y
+
tx_sz_y
-
1
)
/
tx_sz_y
;
const
int
tu_num_w_c
=
(
max_4x4_w_c
+
tx_sz_c
-
1
)
/
tx_sz_c
;
const
int
tu_num_h_c
=
(
max_4x4_h_c
+
tx_sz_c
-
1
)
/
tx_sz_c
;
const
int
tu_num_y
=
tu_num_w_y
*
tu_num_h_y
;
const
int
tu_num_c
=
tu_num_w_c
*
tu_num_h_c
;
int
tu_idx_c
=
0
;
...
...
av1/decoder/decodeframe.c
View file @
ee4b3a80
...
...
@@ -1555,7 +1555,6 @@ static void decode_token_and_recon_block(AV1Decoder *const pbi,
const
int
tu_num_h_y
=
(
max_4x4_h_y
+
tx_sz_y
-
1
)
/
tx_sz_y
;
const
int
tu_num_w_c
=
(
max_4x4_w_c
+
tx_sz_c
-
1
)
/
tx_sz_c
;
const
int
tu_num_h_c
=
(
max_4x4_h_c
+
tx_sz_c
-
1
)
/
tx_sz_c
;
const
int
tu_num_y
=
tu_num_w_y
*
tu_num_h_y
;
const
int
tu_num_c
=
tu_num_w_c
*
tu_num_h_c
;
if
(
!
is_inter_block
(
mbmi
))
{
...
...
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