projects
/
platform
/
upstream
/
libvpx.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9da8a34
)
Fix to rd cost computation for mv bias.
author
Marco Paniconi
<marpan@google.com>
Tue, 16 Oct 2012 01:41:32 +0000
(18:41 -0700)
committer
Marco Paniconi
<marpan@google.com>
Tue, 16 Oct 2012 20:37:38 +0000
(13:37 -0700)
This prevents the rd cost from wrapping around and going negative.
Change-Id: Id61390537d2ad47762e410918bb4e18f6a0912d4
vp8/encoder/pickinter.c
patch
|
blob
|
history
diff --git
a/vp8/encoder/pickinter.c
b/vp8/encoder/pickinter.c
index
8ca77b9
..
c4fa691
100644
(file)
--- a/
vp8/encoder/pickinter.c
+++ b/
vp8/encoder/pickinter.c
@@
-513,7
+513,8
@@
static int evaluate_inter_mode(unsigned int* sse, int rate2, int* distortion2,
&& x->e_mbd.mode_info_context->mbmi.ref_frame != LAST_FRAME)
rd_adj = 100;
- this_rd = this_rd * rd_adj/100;
+ // rd_adj <= 100
+ this_rd = ((int64_t)this_rd) * rd_adj / 100;
}
check_for_encode_breakout(*sse, x);