[x264-devel] commit: Fix 10L in B-skip improvement patch (Jason Garrett-Glaser )

git at videolan.org git at videolan.org
Tue Apr 6 21:48:30 CEST 2010


x264 | branch: master | Jason Garrett-Glaser <darkshikari at gmail.com> | Fri Apr  2 12:23:52 2010 -0700| [a1e4e583fc9740666c442c1ae2ee06e335f937d0] | committer: Jason Garrett-Glaser 

Fix 10L in B-skip improvement patch

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

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

diff --git a/encoder/analyse.c b/encoder/analyse.c
index 7bf91ce..e0c85fc 100644
--- a/encoder/analyse.c
+++ b/encoder/analyse.c
@@ -1682,8 +1682,8 @@ static void x264_mb_analyse_inter_b16x16( x264_t *h, x264_mb_analysis_t *a )
             /* Fast skip detection. */
             if( i_ref == 0 && try_skip )
             {
-                if( abs(lX->bi16x16.mv[0]-h->mb.cache.direct_mv[l][0][0]) +
-                    abs(lX->bi16x16.mv[1]-h->mb.cache.direct_mv[l][0][1]) > 1 )
+                if( abs(lX->me16x16.mv[0]-h->mb.cache.direct_mv[l][0][0]) +
+                    abs(lX->me16x16.mv[1]-h->mb.cache.direct_mv[l][0][1]) > 1 )
                 {
                     try_skip = 0;
                 }



More information about the x264-devel mailing list