[x264-devel] commit: Set psy=0 in lossless mode (Anton Mitrofanov )
git at videolan.org
git at videolan.org
Wed Apr 14 11:39:12 CEST 2010
x264 | branch: master | Anton Mitrofanov <BugMaster at narod.ru> | Tue Apr 13 19:55:12 2010 +0400| [0f9244199fa24ea50b79f3e0873da4641a7cec46] | committer: Jason Garrett-Glaser
Set psy=0 in lossless mode
Doesn't actually affect output, just what's written in the SEI.
> http://git.videolan.org/gitweb.cgi/x264.git/?a=commit;h=0f9244199fa24ea50b79f3e0873da4641a7cec46
---
encoder/encoder.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/encoder/encoder.c b/encoder/encoder.c
index e9f297f..300041e 100644
--- a/encoder/encoder.c
+++ b/encoder/encoder.c
@@ -467,7 +467,7 @@ static int x264_validate_parameters( x264_t *h )
h->param.analyse.i_trellis = 0;
h->param.analyse.b_fast_pskip = 0;
h->param.analyse.i_noise_reduction = 0;
- h->param.analyse.f_psy_rd = 0;
+ h->param.analyse.b_psy = 0;
h->param.i_bframe = 0;
/* 8x8dct is not useful at all in CAVLC lossless */
if( !h->param.b_cabac )
More information about the x264-devel
mailing list