1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
|
#include "common.h"
#include "loopfilter-prim.h"
#define PIXEL_MIN 0
#if !(HIGH_BIT_DEPTH) && defined(HAVE_NEON)
#include<arm_neon.h>
namespace
{
static inline int8x8_t sign_diff_neon(const uint8x8_t in0, const uint8x8_t in1)
{
int16x8_t in = vreinterpretq_s16_u16(vsubl_u8(in0, in1));
return vmovn_s16(vmaxq_s16(vminq_s16(in, vdupq_n_s16(1)), vdupq_n_s16(-1)));
}
static void calSign_neon(int8_t *dst, const pixel *src1, const pixel *src2, const int endX)
{
int x = 0;
for (; (x + 8) <= endX; x += 8)
{
int8x8_t sign = sign_diff_neon(vld1_u8(src1 + x), vld1_u8(src2 + x));
vst1_s8(dst + x, sign);
}
for (; x < endX; x++)
{
dst[x] = x265_signOf(src1[x] - src2[x]);
}
}
static void processSaoCUE0_neon(pixel *rec, int8_t *offsetEo, int width, int8_t *signLeft, intptr_t stride)
{
int y;
int8_t signRight, signLeft0;
int8_t edgeType;
for (y = 0; y < 2; y++)
{
signLeft0 = signLeft[y];
int x = 0;
if (width >= 8)
{
int8x8_t vsignRight;
int8x8x2_t shifter;
shifter.val[1][0] = signLeft0;
static const int8x8_t index = {8, 0, 1, 2, 3, 4, 5, 6};
int8x8_t tbl = vld1_s8(offsetEo);
for (; (x + 8) <= width; x += 8)
{
uint8x8_t in = vld1_u8(rec + x);
vsignRight = sign_diff_neon(in, vld1_u8(rec + x + 1));
shifter.val[0] = vneg_s8(vsignRight);
int8x8_t tmp = shifter.val[0];
int8x8_t edge = vtbl2_s8(shifter, index);
int8x8_t vedgeType = vadd_s8(vadd_s8(vsignRight, edge), vdup_n_s8(2));
shifter.val[1][0] = tmp[7];
int16x8_t t1 = vmovl_s8(vtbl1_s8(tbl, vedgeType));
t1 = vreinterpretq_s16_u16(vaddw_u8(vreinterpretq_u16_s16(t1),
in));
vst1_u8(rec + x, vqmovun_s16(t1));
}
signLeft0 = shifter.val[1][0];
}
for (; x < width; x++)
{
signRight = ((rec[x] - rec[x + 1]) < 0) ? -1 : ((rec[x] - rec[x + 1]) > 0) ? 1 : 0;
edgeType = signRight + signLeft0 + 2;
signLeft0 = -signRight;
rec[x] = x265_clip(rec[x] + offsetEo[edgeType]);
}
rec += stride;
}
}
static void processSaoCUE1_neon(pixel *rec, int8_t *upBuff1, int8_t *offsetEo, intptr_t stride, int width)
{
int x = 0;
int8_t signDown;
int edgeType;
if (width >= 8)
{
int8x8_t tbl = vld1_s8(offsetEo);
const int8x8_t c = vdup_n_s8(2);
for (; (x + 8) <= width; x += 8)
{
uint8x8_t in0 = vld1_u8(rec + x);
uint8x8_t in1 = vld1_u8(rec + x + stride);
int8x8_t vsignDown = sign_diff_neon(in0, in1);
int8x8_t vsignUp = vld1_s8(upBuff1 + x);
int8x8_t vedgeType = vadd_s8(vadd_s8(vsignDown, vsignUp), c);
vst1_s8(upBuff1 + x, vneg_s8(vsignDown));
int16x8_t t1 = vmovl_s8(vtbl1_s8(tbl, vedgeType));
t1 = vreinterpretq_s16_u16(vaddw_u8(vreinterpretq_u16_s16(t1),
in0));
vst1_u8(rec + x, vqmovun_s16(t1));
}
}
for (; x < width; x++)
{
signDown = x265_signOf(rec[x] - rec[x + stride]);
edgeType = signDown + upBuff1[x] + 2;
upBuff1[x] = -signDown;
rec[x] = x265_clip(rec[x] + offsetEo[edgeType]);
}
}
static void processSaoCUE1_2Rows_neon(pixel *rec, int8_t *upBuff1, int8_t *offsetEo, intptr_t stride, int width)
{
int y;
int8_t signDown;
int edgeType;
for (y = 0; y < 2; y++)
{
int x = 0;
if (width >= 8)
{
int8x8_t tbl = vld1_s8(offsetEo);
const int8x8_t c = vdup_n_s8(2);
for (; (x + 8) <= width; x += 8)
{
uint8x8_t in0 = vld1_u8(rec + x);
uint8x8_t in1 = vld1_u8(rec + x + stride);
int8x8_t vsignDown = sign_diff_neon(in0, in1);
int8x8_t vsignUp = vld1_s8(upBuff1 + x);
int8x8_t vedgeType = vadd_s8(vadd_s8(vsignDown, vsignUp), c);
vst1_s8(upBuff1 + x, vneg_s8(vsignDown));
int16x8_t t1 = vmovl_s8(vtbl1_s8(tbl, vedgeType));
t1 = vreinterpretq_s16_u16(vaddw_u8(vreinterpretq_u16_s16(t1),
in0));
vst1_u8(rec + x, vqmovun_s16(t1));
}
}
for (; x < width; x++)
{
signDown = x265_signOf(rec[x] - rec[x + stride]);
edgeType = signDown + upBuff1[x] + 2;
upBuff1[x] = -signDown;
rec[x] = x265_clip(rec[x] + offsetEo[edgeType]);
}
rec += stride;
}
}
static void processSaoCUE2_neon(pixel *rec, int8_t *bufft, int8_t *buff1, int8_t *offsetEo, int width, intptr_t stride)
{
int x;
if (abs(static_cast<int>(buff1 - bufft)) < 16)
{
for (x = 0; x < width; x++)
{
int8_t signDown = x265_signOf(rec[x] - rec[x + stride + 1]);
int edgeType = signDown + buff1[x] + 2;
bufft[x + 1] = -signDown;
rec[x] = x265_clip(rec[x] + offsetEo[edgeType]);;
}
}
else
{
int8x8_t tbl = vld1_s8(offsetEo);
const int8x8_t c = vdup_n_s8(2);
x = 0;
for (; (x + 8) <= width; x += 8)
{
uint8x8_t in0 = vld1_u8(rec + x);
uint8x8_t in1 = vld1_u8(rec + x + stride + 1);
int8x8_t vsignDown = sign_diff_neon(in0, in1);
int8x8_t vsignUp = vld1_s8(buff1 + x);
int8x8_t vedgeType = vadd_s8(vadd_s8(vsignDown, vsignUp), c);
vst1_s8(bufft + x + 1, vneg_s8(vsignDown));
int16x8_t t1 = vmovl_s8(vtbl1_s8(tbl, vedgeType));
t1 = vreinterpretq_s16_u16(vaddw_u8(vreinterpretq_u16_s16(t1),
in0));
vst1_u8(rec + x, vqmovun_s16(t1));
}
for (; x < width; x++)
{
int8_t signDown = x265_signOf(rec[x] - rec[x + stride + 1]);
int edgeType = signDown + buff1[x] + 2;
bufft[x + 1] = -signDown;
rec[x] = x265_clip(rec[x] + offsetEo[edgeType]);;
}
}
}
static void processSaoCUE3_neon(pixel *rec, int8_t *upBuff1, int8_t *offsetEo, intptr_t stride, int startX, int endX)
{
int8_t signDown;
int8_t edgeType;
int8x8_t tbl = vld1_s8(offsetEo);
const int8x8_t c = vdup_n_s8(2);
int x = startX + 1;
for (; (x + 8) <= endX; x += 8)
{
uint8x8_t in0 = vld1_u8(rec + x);
uint8x8_t in1 = vld1_u8(rec + x + stride);
int8x8_t vsignDown = sign_diff_neon(in0, in1);
int8x8_t vsignUp = vld1_s8(upBuff1 + x);
int8x8_t vedgeType = vadd_s8(vadd_s8(vsignDown, vsignUp), c);
vst1_s8(upBuff1 + x - 1, vneg_s8(vsignDown));
int16x8_t t1 = vmovl_s8(vtbl1_s8(tbl, vedgeType));
t1 = vreinterpretq_s16_u16(vaddw_u8(vreinterpretq_u16_s16(t1), in0));
vst1_u8(rec + x, vqmovun_s16(t1));
}
for (; x < endX; x++)
{
signDown = x265_signOf(rec[x] - rec[x + stride]);
edgeType = signDown + upBuff1[x] + 2;
upBuff1[x - 1] = -signDown;
rec[x] = x265_clip(rec[x] + offsetEo[edgeType]);
}
}
static void processSaoCUB0_neon(pixel *rec, const int8_t *offset, int ctuWidth, int ctuHeight, intptr_t stride)
{
#define SAO_BO_BITS 5
const int boShift = X265_DEPTH - SAO_BO_BITS;
int x, y;
int8x8x4_t table = vld1_s8_x4(offset);
for (y = 0; y < ctuHeight; y++)
{
for (x = 0; (x + 8) <= ctuWidth; x += 8)
{
uint8x8_t in = vld1_u8(rec + x);
int8x8_t tbl_idx = vreinterpret_s8_u8(vshr_n_u8(in, boShift));
int8x8_t offsets = vtbl4_s8(table, tbl_idx);
int16x8_t t = vmovl_s8(offsets);
t = vreinterpretq_s16_u16(vaddw_u8(vreinterpretq_u16_s16(t), in));
vst1_u8(rec + x, vqmovun_s16(t));
}
for (; x < ctuWidth; x++)
{
rec[x] = x265_clip(rec[x] + offset[rec[x] >> boShift]);
}
rec += stride;
}
}
}
namespace X265_NS
{
void setupLoopFilterPrimitives_neon(EncoderPrimitives &p)
{
p.saoCuOrgE0 = processSaoCUE0_neon;
p.saoCuOrgE1 = processSaoCUE1_neon;
p.saoCuOrgE1_2Rows = processSaoCUE1_2Rows_neon;
p.saoCuOrgE2[0] = processSaoCUE2_neon;
p.saoCuOrgE2[1] = processSaoCUE2_neon;
p.saoCuOrgE3[0] = processSaoCUE3_neon;
p.saoCuOrgE3[1] = processSaoCUE3_neon;
p.saoCuOrgB0 = processSaoCUB0_neon;
p.sign = calSign_neon;
}
#else //HIGH_BIT_DEPTH
namespace X265_NS
{
void setupLoopFilterPrimitives_neon(EncoderPrimitives &)
{
}
#endif
}
|