[x264-devel] commit: typo. don't evaluate rd pskip when p16x16 found ref>0. ( Loren Merritt )

git version control git at videolan.org
Mon Mar 31 02:52:25 CEST 2008


x264 | branch: master | Loren Merritt <pengvado at akuvian.org> | Sat Mar 29 16:27:08 2008 -0600| [32390823a9812bc646f6e6e8416b114b31a3028e]

typo. don't evaluate rd pskip when p16x16 found ref>0.

> http://git.videolan.org/gitweb.cgi/x264.git/?a=commit;h=32390823a9812bc646f6e6e8416b114b31a3028e
---

 encoder/analyse.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/encoder/analyse.c b/encoder/analyse.c
index 9113091..8f33c85 100644
--- a/encoder/analyse.c
+++ b/encoder/analyse.c
@@ -1024,7 +1024,7 @@ static void x264_mb_analyse_inter_p16x16( x264_t *h, x264_mb_analysis_t *a )
     assert( a->l0.me16x16.mv[1] <= h->mb.mv_max_spel[1] || h->param.i_threads == 1 );
 
     h->mb.i_type = P_L0;
-    if( a->b_mbrd && a->l0.i_ref == 0
+    if( a->b_mbrd && a->l0.me16x16.i_ref == 0
         && a->l0.me16x16.mv[0] == h->mb.cache.pskip_mv[0]
         && a->l0.me16x16.mv[1] == h->mb.cache.pskip_mv[1] )
     {



More information about the x264-devel mailing list