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
0496d114
Commit
0496d114
authored
Nov 24, 2014
by
Alex Converse
Browse files
Fix a tautological assert.
Change-Id: I90ad08823e1d038384536fa9f458caadc2c87f38
parent
e9d9f1ad
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/common/vp9_reconinter.c
View file @
0496d114
...
...
@@ -252,7 +252,7 @@ static MV average_split_mvs(const struct macroblockd_plane *pd,
res
=
mi_mv_pred_q4
(
mi
,
ref
);
break
;
default:
assert
(
ss_idx
<=
3
||
ss_idx
>=
0
);
assert
(
ss_idx
<=
3
&&
ss_idx
>=
0
);
}
return
res
;
}
...
...
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