[x264-devel] commit: qpel RD no longer needs mbcmp_unaligned (Jason Garrett-Glaser )

git version control git at videolan.org
Wed Dec 9 13:57:26 CET 2009


x264 | branch: master | Jason Garrett-Glaser <darkshikari at gmail.com> | Sat Dec  5 03:19:44 2009 -0800| [e5faf712fccefd1f29319b1547714f3d894e4dba] | committer: Jason Garrett-Glaser 

qpel RD no longer needs mbcmp_unaligned

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

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

diff --git a/encoder/me.c b/encoder/me.c
index 7d9f42a..b8f3eea 100644
--- a/encoder/me.c
+++ b/encoder/me.c
@@ -1026,7 +1026,7 @@ void x264_me_refine_bidir_rd( x264_t *h, x264_me_t *m0, x264_me_t *m1, int i_wei
     if( !avoid_mvp || !(mx == pmx && my == pmy) ) \
     { \
         h->mc.mc_luma( pix, FDEC_STRIDE, m->p_fref, m->i_stride[0], mx, my, bw, bh, &m->weight[0] ); \
-        dst = h->pixf.mbcmp_unaligned[i_pixel]( m->p_fenc[0], FENC_STRIDE, pix, FDEC_STRIDE ) \
+        dst = h->pixf.mbcmp[i_pixel]( m->p_fenc[0], FENC_STRIDE, pix, FDEC_STRIDE ) \
             + p_cost_mvx[mx] + p_cost_mvy[my]; \
         COPY1_IF_LT( bsatd, dst ); \
     } \



More information about the x264-devel mailing list