[x265] [PATCH 3 of 3] sao: created new primitive for saoCuStatsBO
dnyaneshwar at multicorewareinc.com
dnyaneshwar at multicorewareinc.com
Thu Jul 2 14:01:25 CEST 2015
# HG changeset patch
# User Dnyaneshwar G <dnyaneshwar at multicorewareinc.com>
# Date 1435749680 -19800
# Wed Jul 01 16:51:20 2015 +0530
# Node ID 9fd6c4bca7695f847ff9a28a065122b840ecae5a
# Parent 915d02816797d3c70004e652a13b3804571c251b
sao: created new primitive for saoCuStatsBO
diff -r 915d02816797 -r 9fd6c4bca769 source/common/primitives.h
--- a/source/common/primitives.h Wed Jul 01 16:50:32 2015 +0530
+++ b/source/common/primitives.h Wed Jul 01 16:51:20 2015 +0530
@@ -174,6 +174,7 @@
typedef void (*saoCuOrgE3_t)(pixel* rec, int8_t* upBuff1, int8_t* m_offsetEo, intptr_t stride, int startX, int endX);
typedef void (*saoCuOrgB0_t)(pixel* rec, const int8_t* offsetBo, int ctuWidth, int ctuHeight, intptr_t stride);
+typedef void (*saoCuStatsBO_t)(const pixel *fenc, const pixel *rec, intptr_t stride, int endX, int endY, int32_t *stats, int32_t *count);
typedef void (*saoCuStatsE0_t)(const pixel *fenc, const pixel *rec, intptr_t stride, int endX, int endY, int32_t *stats, int32_t *count);
typedef void (*saoCuStatsE1_t)(const pixel *fenc, const pixel *rec, intptr_t stride, int8_t *upBuff1, int endX, int endY, int32_t *stats, int32_t *count);
typedef void (*saoCuStatsE2_t)(const pixel *fenc, const pixel *rec, intptr_t stride, int8_t *upBuff1, int8_t *upBuff, int endX, int endY, int32_t *stats, int32_t *count);
@@ -299,6 +300,7 @@
saoCuOrgE3_t saoCuOrgE3[2];
saoCuOrgB0_t saoCuOrgB0;
+ saoCuStatsBO_t saoCuStatsBO;
saoCuStatsE0_t saoCuStatsE0;
saoCuStatsE1_t saoCuStatsE1;
saoCuStatsE2_t saoCuStatsE2;
diff -r 915d02816797 -r 9fd6c4bca769 source/encoder/sao.cpp
--- a/source/encoder/sao.cpp Wed Jul 01 16:50:32 2015 +0530
+++ b/source/encoder/sao.cpp Wed Jul 01 16:51:20 2015 +0530
@@ -666,7 +666,6 @@
/* Calculate SAO statistics for current CTU without non-crossing slice */
void SAO::calcSaoStatsCu(int addr, int plane)
{
- int x, y;
const CUData* cu = m_frame->m_encData->getPicCTU(addr);
const pixel* fenc0 = m_frame->m_fencPic->getPlaneAddr(plane, addr);
const pixel* rec0 = m_frame->m_reconPic->getPlaneAddr(plane, addr);
@@ -697,8 +696,6 @@
int startY;
int endX;
int endY;
- int32_t* stats;
- int32_t* count;
int skipB = plane ? 2 : 4;
int skipR = plane ? 3 : 5;
@@ -708,34 +705,16 @@
// SAO_BO:
{
- const int boShift = X265_DEPTH - SAO_BO_BITS;
-
if (m_param->bSaoNonDeblocked)
{
skipB = plane ? 1 : 3;
skipR = plane ? 2 : 4;
}
- stats = m_offsetOrg[plane][SAO_BO];
- count = m_count[plane][SAO_BO];
-
- fenc = fenc0;
- rec = rec0;
endX = (rpelx == picWidth) ? ctuWidth : ctuWidth - skipR;
endY = (bpely == picHeight) ? ctuHeight : ctuHeight - skipB;
- for (y = 0; y < endY; y++)
- {
- for (x = 0; x < endX; x++)
- {
- int classIdx = 1 + (rec[x] >> boShift);
- stats[classIdx] += (fenc[x] - rec[x]);
- count[classIdx]++;
- }
-
- fenc += stride;
- rec += stride;
- }
+ primitives.saoCuStatsBO(fenc0, rec0, stride, endX, endY, m_offsetOrg[plane][SAO_BO], m_count[plane][SAO_BO]);
}
{
@@ -785,8 +764,6 @@
skipB = plane ? 2 : 4;
skipR = plane ? 3 : 5;
}
- stats = m_offsetOrg[plane][SAO_EO_2];
- count = m_count[plane][SAO_EO_2];
fenc = fenc0;
rec = rec0;
@@ -814,8 +791,6 @@
skipB = plane ? 2 : 4;
skipR = plane ? 3 : 5;
}
- stats = m_offsetOrg[plane][SAO_EO_3];
- count = m_count[plane][SAO_EO_3];
fenc = fenc0;
rec = rec0;
@@ -1552,6 +1527,25 @@
}
// NOTE: must put in namespace X265_NS since we need class SAO
+void saoCuStatsBO_c(const pixel *fenc, const pixel *rec, intptr_t stride, int endX, int endY, int32_t *stats, int32_t *count)
+{
+ int x, y;
+ const int boShift = X265_DEPTH - SAO_BO_BITS;
+
+ for (y = 0; y < endY; y++)
+ {
+ for (x = 0; x < endX; x++)
+ {
+ int classIdx = 1 + (rec[x] >> boShift);
+ stats[classIdx] += (fenc[x] - rec[x]);
+ count[classIdx]++;
+ }
+
+ fenc += stride;
+ rec += stride;
+ }
+}
+
void saoCuStatsE0_c(const pixel *fenc, const pixel *rec, intptr_t stride, int endX, int endY, int32_t *stats, int32_t *count)
{
int x, y;
@@ -1702,6 +1696,7 @@
void setupSaoPrimitives_c(EncoderPrimitives &p)
{
// TODO: move other sao functions to here
+ p.saoCuStatsBO = saoCuStatsBO_c;
p.saoCuStatsE0 = saoCuStatsE0_c;
p.saoCuStatsE1 = saoCuStatsE1_c;
p.saoCuStatsE2 = saoCuStatsE2_c;
More information about the x265-devel
mailing list