[x264-devel] commit: r980 borked weighted bime (Loren Merritt )

git version control git at videolan.org
Sat Sep 20 21:32:04 CEST 2008


x264 | branch: master | Loren Merritt <pengvado at akuvian.org> | Sat Sep 20 12:31:10 2008 -0600| [b4b64837d7bb6714f710cb1f2ef85f87f77da739] | committer: Loren Merritt 

r980 borked weighted bime

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

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

diff --git a/encoder/me.c b/encoder/me.c
index cb1f552..54edc4b 100644
--- a/encoder/me.c
+++ b/encoder/me.c
@@ -804,7 +804,7 @@ if( pass == 0 || !((visited[(m0x)&7][(m0y)&7][(m1x)&7] & (1<<((m1y)&7)))) ) \
     int i0 = 4 + 3*(m0x-om0x) + (m0y-om0y); \
     int i1 = 4 + 3*(m1x-om1x) + (m1y-om1y); \
     visited[(m0x)&7][(m0y)&7][(m1x)&7] |= (1<<((m1y)&7));\
-    h->mc.avg[i_pixel]( pix, bw, src1[i1], stride1[i1], src0[i0], stride0[i0], i_weight ); \
+    h->mc.avg[i_pixel]( pix, bw, src0[i0], stride0[i0], src1[i1], stride1[i1], i_weight ); \
     cost = h->pixf.mbcmp[i_pixel]( m0->p_fenc[0], FENC_STRIDE, pix, bw ) \
          + p_cost_m0x[ m0x ] + p_cost_m0y[ m0y ] \
          + p_cost_m1x[ m1x ] + p_cost_m1y[ m1y ]; \



More information about the x264-devel mailing list