[x265] fix typo

Steve Borho steve at borho.org
Sun Nov 9 06:25:01 CET 2014


On 11/09, Satoshi Nakagawa wrote:
> ignore previous one.
> 
> # HG changeset patch
> # User Satoshi Nakagawa <nakagawa424 at oki.com>
> # Date 1415498145 -32400
> #      Sun Nov 09 10:55:45 2014 +0900
> # Node ID 51bec6878d7bfe46f92c039a7eb2af66b5d07e09
> # Parent  3f2d6836855411597ef25b4f9786dcaa0fe7394a
> fix typo

Thanks Satoshi. It's astonishing to me how many times I can make the
same mistake.

> diff -r 3f2d68368554 -r 51bec6878d7b source/encoder/analysis.cpp
> --- a/source/encoder/analysis.cpp	Sat Nov 08 12:30:10 2014 -0600
> +++ b/source/encoder/analysis.cpp	Sun Nov 09 10:55:45 2014 +0900
> @@ -794,12 +794,12 @@
>  
>              if (m_param->bEnableRectInter)
>              {
> -                md.pred[PRED_2NxN].cu.initSubCU(parentCTU, cuGeom);
> +                md.pred[PRED_Nx2N].cu.initSubCU(parentCTU, cuGeom);
>                  checkInter_rd0_4(md.pred[PRED_Nx2N], cuGeom, SIZE_Nx2N);
>                  if (md.pred[PRED_Nx2N].sa8dCost < bestInter->sa8dCost)
>                      bestInter = &md.pred[PRED_Nx2N];
>  
> -                md.pred[PRED_Nx2N].cu.initSubCU(parentCTU, cuGeom);
> +                md.pred[PRED_2NxN].cu.initSubCU(parentCTU, cuGeom);
>                  checkInter_rd0_4(md.pred[PRED_2NxN], cuGeom, SIZE_2NxN);
>                  if (md.pred[PRED_2NxN].sa8dCost < bestInter->sa8dCost)
>                      bestInter = &md.pred[PRED_2NxN];
> _______________________________________________
> x265-devel mailing list
> x265-devel at videolan.org
> https://mailman.videolan.org/listinfo/x265-devel

-- 
Steve Borho


More information about the x265-devel mailing list