[x264-devel] commit: Print psy-(rd|trellis) with more precision in userdata SEI ( Jason Garrett-Glaser )

git version control git at videolan.org
Mon Feb 15 10:20:22 CET 2010


x264 | branch: master | Jason Garrett-Glaser <darkshikari at gmail.com> | Tue Feb  9 15:08:31 2010 -0800| [8463781af4fa0f304865adb78a0e86c8a6536e0c] | committer: Jason Garrett-Glaser 

Print psy-(rd|trellis) with more precision in userdata SEI

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

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

diff --git a/common/common.c b/common/common.c
index 6d1d7f0..aaccdf2 100644
--- a/common/common.c
+++ b/common/common.c
@@ -886,7 +886,7 @@ char *x264_param2string( x264_param_t *p, int b_res )
     s += sprintf( s, " subme=%d", p->analyse.i_subpel_refine );
     s += sprintf( s, " psy=%d", p->analyse.b_psy );
     if( p->analyse.b_psy )
-        s += sprintf( s, " psy_rd=%.1f:%.1f", p->analyse.f_psy_rd, p->analyse.f_psy_trellis );
+        s += sprintf( s, " psy_rd=%.2f:%.2f", p->analyse.f_psy_rd, p->analyse.f_psy_trellis );
     s += sprintf( s, " mixed_ref=%d", p->analyse.b_mixed_references );
     s += sprintf( s, " me_range=%d", p->analyse.i_me_range );
     s += sprintf( s, " chroma_me=%d", p->analyse.b_chroma_me );



More information about the x264-devel mailing list