[x265] [PATCH 2 of 5] TComDataCU: whitespace nits

deepthi at multicorewareinc.com deepthi at multicorewareinc.com
Tue May 27 18:38:16 CEST 2014


# HG changeset patch
# User Deepthi Nandakumar <deepthi at multicorewareinc.com>
# Date 1401183786 -19800
#      Tue May 27 15:13:06 2014 +0530
# Node ID 8afb19300facde2fa6f97f578864ecfd8725ae24
# Parent  02f401885eec44f142985cf746e20bd3b1eee985
TComDataCU: whitespace nits

diff -r 02f401885eec -r 8afb19300fac source/Lib/TLibCommon/TComDataCU.cpp
--- a/source/Lib/TLibCommon/TComDataCU.cpp	Tue May 27 15:11:08 2014 +0530
+++ b/source/Lib/TLibCommon/TComDataCU.cpp	Tue May 27 15:13:06 2014 +0530
@@ -214,7 +214,7 @@
     m_cuPelX           = (cuAddr % pic->getFrameWidthInCU()) * g_maxCUSize;
     m_cuPelY           = (cuAddr / pic->getFrameWidthInCU()) * g_maxCUSize;
     m_absIdxInLCU      = 0;
-    m_totalRDCost        = MAX_INT64;
+    m_totalRDCost      = MAX_INT64;
     m_sa8dCost         = MAX_INT64;
     m_totalDistortion  = 0;
     m_totalBits        = 0;
@@ -305,7 +305,7 @@
 */
 void TComDataCU::initEstData(uint32_t depth, int qp)
 {
-    m_totalRDCost        = MAX_INT64;
+    m_totalRDCost      = MAX_INT64;
     m_sa8dCost         = MAX_INT64;
     m_totalDistortion  = 0;
     m_totalBits        = 0;
@@ -341,7 +341,7 @@
 
 void TComDataCU::initEstData(uint32_t depth)
 {
-    m_totalRDCost        = MAX_INT64;
+    m_totalRDCost      = MAX_INT64;
     m_sa8dCost         = MAX_INT64;
     m_totalDistortion  = 0;
     m_totalBits        = 0;
@@ -389,7 +389,7 @@
     m_cuPelX           = cu->getCUPelX() + (g_maxCUSize >> depth) * (partUnitIdx &  1);
     m_cuPelY           = cu->getCUPelY() + (g_maxCUSize >> depth) * (partUnitIdx >> 1);
 
-    m_totalRDCost        = MAX_INT64;
+    m_totalRDCost      = MAX_INT64;
     m_sa8dCost         = MAX_INT64;
     m_totalDistortion  = 0;
     m_totalBits        = 0;
@@ -453,7 +453,7 @@
     m_cuPelX           = cu->getCUPelX() + (g_maxCUSize >> depth) * (partUnitIdx &  1);
     m_cuPelY           = cu->getCUPelY() + (g_maxCUSize >> depth) * (partUnitIdx >> 1);
 
-    m_totalRDCost        = MAX_INT64;
+    m_totalRDCost      = MAX_INT64;
     m_sa8dCost         = MAX_INT64;
     m_totalDistortion  = 0;
     m_totalBits        = 0;
@@ -516,7 +516,7 @@
     m_cuPelX           = cu->getCUPelX() + (g_maxCUSize >> depth) * (partUnitIdx & 1);
     m_cuPelY           = cu->getCUPelY() + (g_maxCUSize >> depth) * (partUnitIdx >> 1);
 
-    m_totalRDCost        = MAX_INT64;
+    m_totalRDCost      = MAX_INT64;
     m_sa8dCost         = MAX_INT64;
     m_totalDistortion  = 0;
     m_totalBits        = 0;
@@ -607,7 +607,7 @@
 {
     TComDataCU* rpcCU = m_pic->getCU(m_cuAddr);
 
-    rpcCU->m_totalRDCost       = m_totalRDCost;
+    rpcCU->m_totalRDCost     = m_totalRDCost;
     rpcCU->m_totalDistortion = m_totalDistortion;
     rpcCU->m_totalBits       = m_totalBits;
 
@@ -692,7 +692,7 @@
     uint32_t partStart = partIdx * qNumPart;
     uint32_t partOffset  = m_absIdxInLCU + partStart;
 
-    cu->m_totalRDCost       = m_totalRDCost;
+    cu->m_totalRDCost     = m_totalRDCost;
     cu->m_totalDistortion = m_totalDistortion;
     cu->m_totalBits       = m_totalBits;
 


More information about the x265-devel mailing list