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
60ef6c07
Commit
60ef6c07
authored
Nov 24, 2014
by
Alex Converse
Committed by
Gerrit Code Review
Nov 24, 2014
Browse files
Merge "Fix a tautological assert."
parents
e6fb9c0b
0496d114
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/common/vp9_reconinter.c
View file @
60ef6c07
...
...
@@ -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