[x265] [PATCH] replace sse_sp(residual, ZERO) by ssd_s(residual)

Steve Borho steve at borho.org
Wed Jul 16 04:29:20 CEST 2014


On 07/16, chen wrote:
>  
> 
> At 2014-07-16 07:32:51,"Steve Borho" <steve at borho.org> wrote:
> >On 07/15, Min Chen wrote:
> >> # HG changeset patch
> >> # User Min Chen chenm003 at 163.com>
> >> # Date 1405471890 25200
> >> # Node ID 78f7b217e5d53ab981bb0b5ac0f43e8c46260c9f
> >> # Parent  c923f4a9494619665bf49db7ae0e250e2f8c4ec7
> >> replace sse_sp(residual, ZERO) by ssd_s(residual)
> >> 
> >> diff -r c923f4a94946 -r 78f7b217e5d5 source/Lib/TLibEncoder/TEncSearch.cpp
> >> --- a/source/Lib/TLibEncoder/TEncSearch.cpp	Mon Jul 14 17:27:04 2014 +0530
> >> +++ b/source/Lib/TLibEncoder/TEncSearch.cpp	Tue Jul 15 17:51:30 2014 -0700
> >> @@ -2374,9 +2374,8 @@
> >>      if ((cu->getSlice()->getPPS()->getTransquantBypassEnableFlag()))
> >>      {
> >>          bIsTQBypassEnable = true; // mark that the first iteration is to cost TQB mode.
> >> -        tqBypassMode = 2;
> >> -        if (m_param->bLossless)
> >> -            tqBypassMode = 1;
> >> +        if (!m_param->bLossless)
> >> +            tqBypassMode = 2;
> >
> >The patch looks good except this part, I'd like Ashok to review this
> >change. it looks unrelated to the rest of the patch anyway.
> >
> Its a part of another patch, please remove it.

ok, queued without this chunk

-- 
Steve Borho


More information about the x265-devel mailing list