ref: 31cbe2ed9ab5bc8d109c8f0104eef5c471db1ccd
parent: 8b4e9c5925d16e2d61df72e79849766d6ea48343
author: John Koleszar <jkoleszar@google.com>
date: Wed Feb 6 03:22:48 EST 2013
Eliminate tautology Unreachable code that does nothing anyway removed forever. Change-Id: I14105d2dd9dbc9d558f36464055e350dbeb45488
--- a/vp9/encoder/vp9_rdopt.c
+++ b/vp9/encoder/vp9_rdopt.c
@@ -3265,9 +3265,6 @@
mvp_full.as_mv.col >>= 3;
mvp_full.as_mv.row >>= 3;
- if (mvp_full.as_int != mvp_full.as_int) {
- mvp_full.as_int = mvp_full.as_int;
- }
// adjust search range according to sr from mv prediction
step_param = MAX(step_param, sr);
--
⑨