[x264-devel] commit: Resolve quality regression in r996 (Jason Garrett-Glaser )

git version control git at videolan.org
Fri Oct 3 03:12:29 CEST 2008


x264 | branch: master | Jason Garrett-Glaser <darkshikari at gmail.com> | Thu Oct  2 18:11:13 2008 -0700| [6768543b76ee5ed65d096444fda2bc282b41dd91] | committer: Jason Garrett-Glaser 

Resolve quality regression in r996
Accidentally removed the wrong line of code.  I think this classifies as a "10l".
Thanks to techouse for initial bug report and skystrife for helping me find it.

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

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

diff --git a/encoder/analyse.c b/encoder/analyse.c
index db4917b..05ab962 100644
--- a/encoder/analyse.c
+++ b/encoder/analyse.c
@@ -212,6 +212,7 @@ static void x264_mb_analyse_init( x264_t *h, x264_mb_analysis_t *a, int i_qp )
     h->mb.i_chroma_qp = h->chroma_qp_table[i_qp];
     a->i_lambda = x264_lambda_tab[i_qp];
     a->i_lambda2 = x264_lambda2_tab[i_qp];
+    h->mb.i_me_method = h->param.analyse.i_me_method;
     h->mb.i_subpel_refine = h->param.analyse.i_subpel_refine;
     h->mb.b_chroma_me = h->param.analyse.b_chroma_me && h->sh.i_type == SLICE_TYPE_P
                         && h->mb.i_subpel_refine >= 5;



More information about the x264-devel mailing list