[x264-devel] commit: Fix typo in subme8/9 lossless qpel-RD (Jason Garrett-Glaser )

git version control git at videolan.org
Fri Oct 31 16:57:50 CET 2008


x264 | branch: master | Jason Garrett-Glaser <darkshikari at gmail.com> | Sat Oct 18 03:40:59 2008 -0700| [6d9ef8ad39b0bfa5df0c1305e91ae932aad4997e] | committer: Jason Garrett-Glaser 

Fix typo in subme8/9 lossless qpel-RD
Slightly improves compression.

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

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

diff --git a/encoder/macroblock.c b/encoder/macroblock.c
index f51d5ff..d2f82ab 100644
--- a/encoder/macroblock.c
+++ b/encoder/macroblock.c
@@ -866,7 +866,7 @@ void x264_macroblock_encode_p8x8( x264_t *h, int i8 )
         int i4;
         if( h->mb.b_transform_8x8 )
         {
-            h->zigzagf.sub_4x4( h->dct.luma4x4[i8], p_fenc, p_fdec );
+            h->zigzagf.sub_8x8( h->dct.luma8x8[i8], p_fenc, p_fdec );
             nnz8x8 = array_non_zero( h->dct.luma8x8[i8] );
         }
         else



More information about the x264-devel mailing list