shithub: libvpx

Download patch

ref: 408a8adc1535702bf6451e84cb15418c40b721cb
parent: f3cb9ae459ab9c1883b7186eb10a6da0598716fc
parent: e9f513d74ae9cfc88f5423cb25bd65000bc32c0d
author: Adrian Grange <agrange@google.com>
date: Sun Jan 30 21:18:40 EST 2011

Merge "Changed condition for using RD in Intra Mode"

--- a/vp8/encoder/encodeframe.c
+++ b/vp8/encoder/encodeframe.c
@@ -1160,7 +1160,7 @@
 
 #if !(CONFIG_REALTIME_ONLY)
 
-    if (cpi->sf.RD || cpi->compressor_speed != 2)
+    if (cpi->sf.RD && cpi->compressor_speed != 2)
     {
         Error4x4 = vp8_rd_pick_intra4x4mby_modes(cpi, x, &rate4x4, &rate4x4_tokenonly, &dist4x4);
 
--