projects
/
libvpx
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d166be6
)
Allow checking zeromv mode in vp9_pick_inter_mode
author
Jingning Han
<jingning@google.com>
Wed, 22 Oct 2014 21:47:15 +0000
(14:47 -0700)
committer
Jingning Han
<jingning@google.com>
Wed, 22 Oct 2014 21:47:15 +0000
(14:47 -0700)
This improves the compression performance of speed -5 by 0.6%. The
speed impact is less than 1%.
Change-Id: Ie77daa561976dfc8b479061e1221bdf428eb0c3b
vp9/encoder/vp9_pickmode.c
patch
|
blob
|
history
diff --git
a/vp9/encoder/vp9_pickmode.c
b/vp9/encoder/vp9_pickmode.c
index 9d20bae2b3b40aace246c49b5a0e0bf4ea4fb09a..56240ca951f1883207345960a5f27eac0e17662b 100644
(file)
--- a/
vp9/encoder/vp9_pickmode.c
+++ b/
vp9/encoder/vp9_pickmode.c
@@
-599,8
+599,7
@@
void vp9_pick_inter_mode(VP9_COMP *cpi, MACROBLOCK *x,
int rate_mv = 0;
int mode_rd_thresh;
- if (const_motion[ref_frame] &&
- (this_mode == NEARMV || this_mode == ZEROMV))
+ if (const_motion[ref_frame] && this_mode == NEARMV)
continue;
if (!(cpi->sf.inter_mode_mask[bsize] & (1 << this_mode)))