[x264-devel] Fix loading custom 8x8 chroma quant matrices in 4:4:4

Phillip Blucas git at videolan.org
Mon Jan 16 02:11:53 CET 2012


x264 | branch: master | Phillip Blucas <pblucas at gmail.com> | Mon Dec 19 17:43:41 2011 -0600| [64da5f9df46ac33a5a6b56ca1510d2082e6fbb62] | committer: Jason Garrett-Glaser

Fix loading custom 8x8 chroma quant matrices in 4:4:4

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

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

diff --git a/common/set.c b/common/set.c
index 6b8345b..c8261e4 100644
--- a/common/set.c
+++ b/common/set.c
@@ -362,8 +362,8 @@ int x264_cqm_parse_file( x264_t *h, const char *filename )
     b_error |= x264_cqm_parse_jmlist( h, buf, "INTER8X8_LUMA",   h->param.cqm_8py, x264_cqm_jvt8p, 64 );
     if( CHROMA444 )
     {
-        b_error |= x264_cqm_parse_jmlist( h, buf, "INTRA8X8_CHROMA", h->param.cqm_8iy, x264_cqm_jvt8i, 64 );
-        b_error |= x264_cqm_parse_jmlist( h, buf, "INTER8X8_CHROMA", h->param.cqm_8py, x264_cqm_jvt8p, 64 );
+        b_error |= x264_cqm_parse_jmlist( h, buf, "INTRA8X8_CHROMA", h->param.cqm_8ic, x264_cqm_jvt8i, 64 );
+        b_error |= x264_cqm_parse_jmlist( h, buf, "INTER8X8_CHROMA", h->param.cqm_8pc, x264_cqm_jvt8p, 64 );
     }
 
     x264_free( buf );



More information about the x264-devel mailing list