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
affbe5e1
Commit
affbe5e1
authored
May 31, 2017
by
Urvang Joshi
Committed by
James Zern
Jun 01, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
get_min_tx_size: assert() doesn't need an 'if'.
Change-Id: Id2be191fb48ed8d65b452499e1a1a1f470359321
parent
331662e9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
av1/common/onyxc_int.h
av1/common/onyxc_int.h
+1
-1
No files found.
av1/common/onyxc_int.h
View file @
affbe5e1
...
...
@@ -892,7 +892,7 @@ static INLINE void av1_zero_left_context(MACROBLOCKD *const xd) {
#if CONFIG_VAR_TX
static
INLINE
TX_SIZE
get_min_tx_size
(
TX_SIZE
tx_size
)
{
if
(
tx_size
>=
TX_SIZES_ALL
)
assert
(
0
)
;
assert
(
tx_size
<
TX_SIZES_ALL
);
return
txsize_sqr_map
[
tx_size
];
}
...
...
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