[x265] [PATCH] Cleanup some left hungarian notation left in first commit for xDeQuant
praveen at multicorewareinc.com
praveen at multicorewareinc.com
Fri Jul 5 13:26:44 CEST 2013
# HG changeset patch
# User praveentiwari
# Date 1373023592 -19800
# Node ID 2da2d7ec323ab58a0b7046892cebb9004e0c6008
# Parent 8f4d92a5dd4edf634a408fddfcd48111c2c040af
Cleanup some left hungarian notation left in first commit for xDeQuant
diff -r 8f4d92a5dd4e -r 2da2d7ec323a source/common/dct.cpp
--- a/source/common/dct.cpp Fri Jul 05 16:31:48 2013 +0530
+++ b/source/common/dct.cpp Fri Jul 05 16:56:32 2013 +0530
@@ -703,8 +703,8 @@
void xDeQuant(int bitDepth, const int* src, int* dst, int width, int height, int per, int rem, bool useScalingList, unsigned int log2TrSize, int *dequantCoefOrig)
{
- const int* piQCoef = src;
- int* piCoef = dst;
+ const int* qCoef = src;
+ int* coef = dst;
int invQuantScales[6] = { 40, 45, 51, 57, 64, 72 };
@@ -725,7 +725,7 @@
if (useScalingList)
{
shift += 4;
- int *piDequantCoef = dequantCoefOrig;
+ int *dequantCoef = dequantCoefOrig;
if (shift > per)
{
@@ -733,18 +733,18 @@
for (int n = 0; n < width * height; n++)
{
- clipQCoef = Clip3(-32768, 32767, piQCoef[n]);
- coeffQ = ((clipQCoef * piDequantCoef[n]) + add) >> (shift - per);
- piCoef[n] = Clip3(-32768, 32767, coeffQ);
+ clipQCoef = Clip3(-32768, 32767, qCoef[n]);
+ coeffQ = ((clipQCoef * dequantCoef[n]) + add) >> (shift - per);
+ coef[n] = Clip3(-32768, 32767, coeffQ);
}
}
else
{
for (int n = 0; n < width * height; n++)
{
- clipQCoef = Clip3(-32768, 32767, piQCoef[n]);
- coeffQ = Clip3(-32768, 32767, clipQCoef * piDequantCoef[n]);
- piCoef[n] = Clip3(-32768, 32767, coeffQ << (per - shift));
+ clipQCoef = Clip3(-32768, 32767, qCoef[n]);
+ coeffQ = Clip3(-32768, 32767, clipQCoef * dequantCoef[n]);
+ coef[n] = Clip3(-32768, 32767, coeffQ << (per - shift));
}
}
}
@@ -755,9 +755,9 @@
for (int n = 0; n < width * height; n++)
{
- clipQCoef = Clip3(-32768, 32767, piQCoef[n]);
+ clipQCoef = Clip3(-32768, 32767, qCoef[n]);
coeffQ = (clipQCoef * scale + add) >> shift;
- piCoef[n] = Clip3(-32768, 32767, coeffQ);
+ coef[n] = Clip3(-32768, 32767, coeffQ);
}
}
}
More information about the x265-devel
mailing list