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
be37c6ab
Commit
be37c6ab
authored
Jan 10, 2018
by
Zoe Liu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merge if statements with identical conditions
Change-Id: I8092e3bbabbcf5efb5d0c659418fdd3c6ad90f2c
parent
5b8c5fdc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
av1/encoder/encodemb.c
av1/encoder/encodemb.c
+2
-4
No files found.
av1/encoder/encodemb.c
View file @
be37c6ab
...
...
@@ -597,11 +597,9 @@ static void encode_block(int plane, int block, int blk_row, int blk_col,
av1_set_txb_context
(
x
,
plane
,
block
,
tx_size
,
a
,
l
);
if
(
p
->
eobs
[
block
])
*
(
args
->
skip
)
=
0
;
if
(
p
->
eobs
[
block
]
!=
0
)
if
(
p
->
eobs
[
block
])
{
*
(
args
->
skip
)
=
0
;
{
TX_TYPE
tx_type
=
av1_get_tx_type
(
pd
->
plane_type
,
xd
,
blk_row
,
blk_col
,
tx_size
);
av1_inverse_transform_block
(
xd
,
dqcoeff
,
plane
,
tx_type
,
tx_size
,
dst
,
...
...
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