blob: 497e19ce1eb5fa1b77ee635061e63632fee4fdd6 [file] [log] [blame]
Jason Sams709a0972012-11-15 18:18:04 -08001/*
Jason Samsbc0ca6b2013-02-15 18:13:43 -08002 * Copyright (C) 2013 The Android Open Source Project
Jason Sams709a0972012-11-15 18:18:04 -08003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17
18#include "rsCpuIntrinsic.h"
19#include "rsCpuIntrinsicInlines.h"
20
Tim Murrayaa782372013-08-29 18:42:54 -070021#ifdef RS_COMPATIBILITY_LIB
22#include "rsCompatibilityLib.h"
23#endif
24
Jason Sams6b589092013-04-19 14:32:31 -070025#ifndef RS_COMPATIBILITY_LIB
26#include "hardware/gralloc.h"
27#endif
28
Jason Sams709a0972012-11-15 18:18:04 -080029using namespace android;
30using namespace android::renderscript;
31
32namespace android {
33namespace renderscript {
34
35
36class RsdCpuScriptIntrinsicYuvToRGB : public RsdCpuScriptIntrinsic {
37public:
38 virtual void populateScript(Script *);
39 virtual void invokeFreeChildren();
40
41 virtual void setGlobalObj(uint32_t slot, ObjectBase *data);
42
43 virtual ~RsdCpuScriptIntrinsicYuvToRGB();
Jason Samsc905efd2012-11-26 15:20:18 -080044 RsdCpuScriptIntrinsicYuvToRGB(RsdCpuReferenceImpl *ctx, const Script *s, const Element *e);
Jason Sams709a0972012-11-15 18:18:04 -080045
46protected:
47 ObjectBaseRef<Allocation> alloc;
48
Chris Wailes80ef6932014-07-08 11:22:18 -070049 static void kernel(const RsExpandKernelParams *p,
Jason Sams709a0972012-11-15 18:18:04 -080050 uint32_t xstart, uint32_t xend,
Chris Wailes9ed79102014-07-25 15:53:28 -070051 uint32_t outstep);
Jason Sams709a0972012-11-15 18:18:04 -080052};
53
54}
55}
56
57
58void RsdCpuScriptIntrinsicYuvToRGB::setGlobalObj(uint32_t slot, ObjectBase *data) {
59 rsAssert(slot == 0);
60 alloc.set(static_cast<Allocation *>(data));
61}
62
63
64
65
66static uchar4 rsYuvToRGBA_uchar4(uchar y, uchar u, uchar v) {
67 short Y = ((short)y) - 16;
68 short U = ((short)u) - 128;
69 short V = ((short)v) - 128;
70
71 short4 p;
Tim Murray0b575de2013-03-15 15:56:43 -070072 p.x = (Y * 298 + V * 409 + 128) >> 8;
73 p.y = (Y * 298 - U * 100 - V * 208 + 128) >> 8;
74 p.z = (Y * 298 + U * 516 + 128) >> 8;
75 p.w = 255;
76 if(p.x < 0) {
77 p.x = 0;
Jason Sams709a0972012-11-15 18:18:04 -080078 }
Tim Murray0b575de2013-03-15 15:56:43 -070079 if(p.x > 255) {
80 p.x = 255;
Jason Sams709a0972012-11-15 18:18:04 -080081 }
Tim Murray0b575de2013-03-15 15:56:43 -070082 if(p.y < 0) {
83 p.y = 0;
Jason Sams709a0972012-11-15 18:18:04 -080084 }
Tim Murray0b575de2013-03-15 15:56:43 -070085 if(p.y > 255) {
86 p.y = 255;
Jason Sams709a0972012-11-15 18:18:04 -080087 }
Tim Murray0b575de2013-03-15 15:56:43 -070088 if(p.z < 0) {
89 p.z = 0;
Jason Sams709a0972012-11-15 18:18:04 -080090 }
Tim Murray0b575de2013-03-15 15:56:43 -070091 if(p.z > 255) {
92 p.z = 255;
Jason Sams709a0972012-11-15 18:18:04 -080093 }
94
synergy dev8994abb2013-12-05 00:24:37 -080095 return (uchar4){static_cast<uchar>(p.x), static_cast<uchar>(p.y),
96 static_cast<uchar>(p.z), static_cast<uchar>(p.w)};
Jason Sams709a0972012-11-15 18:18:04 -080097}
98
99
Simon Hosieccd7a462014-02-01 01:35:11 -0800100extern "C" void rsdIntrinsicYuv_K(void *dst, const uchar *Y, const uchar *uv, uint32_t xstart, size_t xend);
101extern "C" void rsdIntrinsicYuvR_K(void *dst, const uchar *Y, const uchar *uv, uint32_t xstart, size_t xend);
102extern "C" void rsdIntrinsicYuv2_K(void *dst, const uchar *Y, const uchar *u, const uchar *v, size_t xstart, size_t xend);
Jason Sams709a0972012-11-15 18:18:04 -0800103
Chris Wailes80ef6932014-07-08 11:22:18 -0700104void RsdCpuScriptIntrinsicYuvToRGB::kernel(const RsExpandKernelParams *p,
Jason Sams709a0972012-11-15 18:18:04 -0800105 uint32_t xstart, uint32_t xend,
Chris Wailes9ed79102014-07-25 15:53:28 -0700106 uint32_t outstep) {
Jason Sams709a0972012-11-15 18:18:04 -0800107 RsdCpuScriptIntrinsicYuvToRGB *cp = (RsdCpuScriptIntrinsicYuvToRGB *)p->usr;
108 if (!cp->alloc.get()) {
109 ALOGE("YuvToRGB executed without input, skipping");
110 return;
111 }
Jason Samsbc0ca6b2013-02-15 18:13:43 -0800112 const uchar *pinY = (const uchar *)cp->alloc->mHal.drvState.lod[0].mallocPtr;
Chris Wailes44bef6f2014-08-12 13:51:10 -0700113 if (pinY == nullptr) {
Jason Samse99f3e22013-09-11 18:18:54 -0700114 ALOGE("YuvToRGB executed without data, skipping");
115 return;
116 }
Tim Murray606e5002013-06-13 12:33:49 -0700117
118 size_t strideY = cp->alloc->mHal.drvState.lod[0].stride;
119
120 // calculate correct stride in legacy case
121 if (cp->alloc->mHal.drvState.lod[0].dimY == 0) {
122 strideY = p->dimX;
123 }
Jason Samsbc0ca6b2013-02-15 18:13:43 -0800124 const uchar *Y = pinY + (p->y * strideY);
Jason Sams709a0972012-11-15 18:18:04 -0800125
Simon Hosie1d9c8872014-05-01 23:28:45 -0700126 uchar4 *out = (uchar4 *)p->out + xstart;
Jason Sams709a0972012-11-15 18:18:04 -0800127 uint32_t x1 = xstart;
128 uint32_t x2 = xend;
129
Jason Sams0052f8d2013-09-19 17:27:29 -0700130 size_t cstep = cp->alloc->mHal.drvState.yuv.step;
Jason Sams709a0972012-11-15 18:18:04 -0800131
Jason Sams61656a72013-09-03 16:21:18 -0700132 const uchar *pinU = (const uchar *)cp->alloc->mHal.drvState.lod[1].mallocPtr;
133 const size_t strideU = cp->alloc->mHal.drvState.lod[1].stride;
134 const uchar *u = pinU + ((p->y >> 1) * strideU);
Jason Sams06bd91e2013-06-11 18:38:11 -0700135
Jason Sams61656a72013-09-03 16:21:18 -0700136 const uchar *pinV = (const uchar *)cp->alloc->mHal.drvState.lod[2].mallocPtr;
137 const size_t strideV = cp->alloc->mHal.drvState.lod[2].stride;
138 const uchar *v = pinV + ((p->y >> 1) * strideV);
139
Jason Sams0052f8d2013-09-19 17:27:29 -0700140 //ALOGE("pinY, %p, Y, %p, p->y, %d, strideY, %d", pinY, Y, p->y, strideY);
141 //ALOGE("pinU, %p, U, %p, p->y, %d, strideU, %d", pinU, u, p->y, strideU);
142 //ALOGE("pinV, %p, V, %p, p->y, %d, strideV, %d", pinV, v, p->y, strideV);
143 //ALOGE("dimX, %d, dimY, %d", cp->alloc->mHal.drvState.lod[0].dimX, cp->alloc->mHal.drvState.lod[0].dimY);
144 //ALOGE("p->dimX, %d, p->dimY, %d", p->dimX, p->dimY);
145
Chris Wailes44bef6f2014-08-12 13:51:10 -0700146 if (pinU == nullptr) {
Jason Sams61656a72013-09-03 16:21:18 -0700147 // Legacy yuv support didn't fill in uv
148 v = ((uint8_t *)cp->alloc->mHal.drvState.lod[0].mallocPtr) +
149 (strideY * p->dimY) +
150 ((p->y >> 1) * strideY);
151 u = v + 1;
Jason Sams0052f8d2013-09-19 17:27:29 -0700152 cstep = 2;
Jason Sams61656a72013-09-03 16:21:18 -0700153 }
154
Simon Hosie1d9c8872014-05-01 23:28:45 -0700155 /* If we start on an odd pixel then deal with it here and bump things along
156 * so that subsequent code can carry on with even-odd pairing assumptions.
157 */
158 if((x1 & 1) && (x2 > x1)) {
159 int cx = (x1 >> 1) * cstep;
160 *out = rsYuvToRGBA_uchar4(Y[x1], u[cx], v[cx]);
161 out++;
162 x1++;
163 }
Tim Murray6a45ddb2014-08-06 11:49:02 -0700164// reenable for ARM64 when intrinsic is fixed
165#if defined(ARCH_ARM_USE_INTRINSICS) && !defined(ARCH_ARM64_USE_INTRINSICS)
Jason Sams61656a72013-09-03 16:21:18 -0700166 if((x2 > x1) && gArchUseSIMD) {
Simon Hosieccd7a462014-02-01 01:35:11 -0800167 int32_t len = x2 - x1;
168 if (cstep == 1) {
Simon Hosie1d9c8872014-05-01 23:28:45 -0700169 rsdIntrinsicYuv2_K(p->out, Y, u, v, x1, x2);
Simon Hosieccd7a462014-02-01 01:35:11 -0800170 x1 += len;
171 out += len;
172 } else if (cstep == 2) {
173 // Check for proper interleave
174 intptr_t ipu = (intptr_t)u;
175 intptr_t ipv = (intptr_t)v;
Jason Sams61656a72013-09-03 16:21:18 -0700176
Simon Hosieccd7a462014-02-01 01:35:11 -0800177 if (ipu == (ipv + 1)) {
Simon Hosie1d9c8872014-05-01 23:28:45 -0700178 rsdIntrinsicYuv_K(p->out, Y, v, x1, x2);
Simon Hosieccd7a462014-02-01 01:35:11 -0800179 x1 += len;
180 out += len;
181 } else if (ipu == (ipv - 1)) {
Simon Hosie1d9c8872014-05-01 23:28:45 -0700182 rsdIntrinsicYuvR_K(p->out, Y, u, x1, x2);
Simon Hosieccd7a462014-02-01 01:35:11 -0800183 x1 += len;
184 out += len;
Jason Sams6b589092013-04-19 14:32:31 -0700185 }
Jason Sams709a0972012-11-15 18:18:04 -0800186 }
Jason Sams61656a72013-09-03 16:21:18 -0700187 }
Jason Sams6b589092013-04-19 14:32:31 -0700188#endif
Jason Sams61656a72013-09-03 16:21:18 -0700189
190 if(x2 > x1) {
191 // ALOGE("y %i %i %i", p->y, x1, x2);
192 while(x1 < x2) {
193 int cx = (x1 >> 1) * cstep;
194 *out = rsYuvToRGBA_uchar4(Y[x1], u[cx], v[cx]);
195 out++;
196 x1++;
197 *out = rsYuvToRGBA_uchar4(Y[x1], u[cx], v[cx]);
198 out++;
199 x1++;
200 }
Jason Sams709a0972012-11-15 18:18:04 -0800201 }
Jason Sams6b589092013-04-19 14:32:31 -0700202
Jason Sams709a0972012-11-15 18:18:04 -0800203}
204
205RsdCpuScriptIntrinsicYuvToRGB::RsdCpuScriptIntrinsicYuvToRGB(
Jason Samsc905efd2012-11-26 15:20:18 -0800206 RsdCpuReferenceImpl *ctx, const Script *s, const Element *e)
207 : RsdCpuScriptIntrinsic(ctx, s, e, RS_SCRIPT_INTRINSIC_ID_YUV_TO_RGB) {
Jason Sams709a0972012-11-15 18:18:04 -0800208
209 mRootPtr = &kernel;
210}
211
212RsdCpuScriptIntrinsicYuvToRGB::~RsdCpuScriptIntrinsicYuvToRGB() {
213}
214
215void RsdCpuScriptIntrinsicYuvToRGB::populateScript(Script *s) {
216 s->mHal.info.exportedVariableCount = 1;
217}
218
219void RsdCpuScriptIntrinsicYuvToRGB::invokeFreeChildren() {
220 alloc.clear();
221}
222
223
Jason Samsc905efd2012-11-26 15:20:18 -0800224RsdCpuScriptImpl * rsdIntrinsic_YuvToRGB(RsdCpuReferenceImpl *ctx,
225 const Script *s, const Element *e) {
226 return new RsdCpuScriptIntrinsicYuvToRGB(ctx, s, e);
Jason Sams709a0972012-11-15 18:18:04 -0800227}