2006-07-27 22:35:30 +03:00
|
|
|
/*
|
2006-10-07 18:33:14 +03:00
|
|
|
* AltiVec-enhanced yuv2yuvX
|
|
|
|
*
|
|
|
|
* Copyright (C) 2004 Romain Dolbeau <romain@dolbeau.org>
|
2008-02-25 11:43:52 +02:00
|
|
|
* based on the equivalent C code in swscale.c
|
2006-10-07 18:33:14 +03:00
|
|
|
*
|
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
2009-03-29 16:47:30 +03:00
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2006-10-07 18:33:14 +03:00
|
|
|
*
|
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2009-03-29 16:47:30 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2006-10-07 18:33:14 +03:00
|
|
|
*
|
2009-03-29 16:47:30 +03:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2007-07-05 13:18:58 +03:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2006-10-07 18:33:14 +03:00
|
|
|
*/
|
2004-03-11 19:58:11 +02:00
|
|
|
|
2011-06-03 06:04:04 +03:00
|
|
|
#include <inttypes.h>
|
2012-02-21 21:58:48 +03:00
|
|
|
|
2011-06-03 06:04:04 +03:00
|
|
|
#include "config.h"
|
|
|
|
#include "libswscale/swscale.h"
|
|
|
|
#include "libswscale/swscale_internal.h"
|
2012-07-22 13:29:28 +03:00
|
|
|
#include "libavutil/attributes.h"
|
2011-06-03 06:04:04 +03:00
|
|
|
#include "libavutil/cpu.h"
|
|
|
|
#include "yuv2rgb_altivec.h"
|
2014-11-12 09:02:46 +02:00
|
|
|
#include "libavutil/ppc/util_altivec.h"
|
2011-06-03 06:04:04 +03:00
|
|
|
|
2018-11-26 14:24:15 +02:00
|
|
|
#if HAVE_ALTIVEC && HAVE_BIGENDIAN
|
2006-04-06 13:08:54 +03:00
|
|
|
#define vzero vec_splat_s32(0)
|
2004-04-06 03:25:47 +03:00
|
|
|
|
2014-11-12 09:02:46 +02:00
|
|
|
#define GET_LS(a,b,c,s) {\
|
|
|
|
vector signed short l2 = vec_ld(((b) << 1) + 16, s);\
|
|
|
|
ls = vec_perm(a, l2, c);\
|
|
|
|
a = l2;\
|
|
|
|
}
|
|
|
|
|
|
|
|
#define yuv2planeX_8(d1, d2, l1, src, x, perm, filter) do {\
|
|
|
|
vector signed short ls;\
|
|
|
|
GET_LS(l1, x, perm, src);\
|
|
|
|
vector signed int i1 = vec_mule(filter, ls);\
|
|
|
|
vector signed int i2 = vec_mulo(filter, ls);\
|
|
|
|
vector signed int vf1, vf2;\
|
2015-04-27 05:19:45 +02:00
|
|
|
vf1 = vec_mergeh(i1, i2);\
|
|
|
|
vf2 = vec_mergel(i1, i2);\
|
2014-11-12 09:02:46 +02:00
|
|
|
d1 = vec_add(d1, vf1);\
|
|
|
|
d2 = vec_add(d2, vf2);\
|
2012-10-04 19:30:34 +03:00
|
|
|
} while (0)
|
|
|
|
|
2014-11-12 09:02:46 +02:00
|
|
|
#define LOAD_FILTER(vf,f) {\
|
|
|
|
vector unsigned char perm0 = vec_lvsl(joffset, f);\
|
|
|
|
vf = vec_ld(joffset, f);\
|
|
|
|
vf = vec_perm(vf, vf, perm0);\
|
|
|
|
}
|
|
|
|
#define LOAD_L1(ll1,s,p){\
|
|
|
|
p = vec_lvsl(xoffset, s);\
|
|
|
|
ll1 = vec_ld(xoffset, s);\
|
|
|
|
}
|
2004-04-06 03:25:47 +03:00
|
|
|
|
2014-11-12 09:02:46 +02:00
|
|
|
// The 3 above is 2 (filterSize == 4) + 1 (sizeof(short) == 2).
|
|
|
|
|
|
|
|
// The neat trick: We only care for half the elements,
|
|
|
|
// high or low depending on (i<<3)%16 (it's 0 or 8 here),
|
|
|
|
// and we're going to use vec_mule, so we choose
|
|
|
|
// carefully how to "unpack" the elements into the even slots.
|
|
|
|
#define GET_VF4(a, vf, f) {\
|
|
|
|
vf = vec_ld(a<< 3, f);\
|
|
|
|
if ((a << 3) % 16)\
|
|
|
|
vf = vec_mergel(vf, (vector signed short)vzero);\
|
|
|
|
else\
|
|
|
|
vf = vec_mergeh(vf, (vector signed short)vzero);\
|
|
|
|
}
|
|
|
|
#define FIRST_LOAD(sv, pos, s, per) {\
|
|
|
|
sv = vec_ld(pos, s);\
|
|
|
|
per = vec_lvsl(pos, s);\
|
|
|
|
}
|
|
|
|
#define UPDATE_PTR(s0, d0, s1, d1) {\
|
|
|
|
d0 = s0;\
|
|
|
|
d1 = s1;\
|
|
|
|
}
|
|
|
|
#define LOAD_SRCV(pos, a, s, per, v0, v1, vf) {\
|
|
|
|
v1 = vec_ld(pos + a + 16, s);\
|
|
|
|
vf = vec_perm(v0, v1, per);\
|
|
|
|
}
|
|
|
|
#define LOAD_SRCV8(pos, a, s, per, v0, v1, vf) {\
|
|
|
|
if ((((uintptr_t)s + pos) % 16) > 8) {\
|
|
|
|
v1 = vec_ld(pos + a + 16, s);\
|
|
|
|
}\
|
|
|
|
vf = vec_perm(v0, src_v1, per);\
|
|
|
|
}
|
|
|
|
#define GET_VFD(a, b, f, vf0, vf1, per, vf, off) {\
|
|
|
|
vf1 = vec_ld((a * 2 * filterSize) + (b * 2) + 16 + off, f);\
|
|
|
|
vf = vec_perm(vf0, vf1, per);\
|
|
|
|
}
|
|
|
|
|
2018-11-26 14:24:15 +02:00
|
|
|
#define FUNC(name) name ## _altivec
|
|
|
|
#include "swscale_ppc_template.c"
|
|
|
|
#undef FUNC
|
2007-04-28 14:44:49 +03:00
|
|
|
|
2018-11-26 14:24:15 +02:00
|
|
|
#endif /* HAVE_ALTIVEC && HAVE_BIGENDIAN */
|
2004-07-06 16:52:56 +03:00
|
|
|
|
2012-10-11 02:06:04 +03:00
|
|
|
av_cold void ff_sws_init_swscale_ppc(SwsContext *c)
|
2009-08-17 00:11:28 +03:00
|
|
|
{
|
2012-10-11 02:06:04 +03:00
|
|
|
#if HAVE_ALTIVEC
|
2012-10-06 13:10:34 +03:00
|
|
|
enum AVPixelFormat dstFormat = c->dstFormat;
|
2011-06-06 04:15:44 +03:00
|
|
|
|
2011-06-03 06:04:04 +03:00
|
|
|
if (!(av_get_cpu_flags() & AV_CPU_FLAG_ALTIVEC))
|
|
|
|
return;
|
|
|
|
|
2018-11-26 14:24:15 +02:00
|
|
|
#if HAVE_BIGENDIAN
|
2012-07-03 05:10:11 +03:00
|
|
|
if (c->srcBpc == 8 && c->dstBpc <= 14) {
|
2018-11-26 14:24:15 +02:00
|
|
|
c->hyScale = c->hcScale = hScale_real_altivec;
|
2011-06-29 19:39:43 +03:00
|
|
|
}
|
2016-11-09 21:45:33 +02:00
|
|
|
if (!is16BPS(dstFormat) && !isNBPS(dstFormat) &&
|
2012-10-06 13:10:34 +03:00
|
|
|
dstFormat != AV_PIX_FMT_NV12 && dstFormat != AV_PIX_FMT_NV21 &&
|
2018-08-03 17:06:50 +02:00
|
|
|
dstFormat != AV_PIX_FMT_GRAYF32BE && dstFormat != AV_PIX_FMT_GRAYF32LE &&
|
2016-03-28 18:25:18 +02:00
|
|
|
!c->needAlpha) {
|
2011-10-16 02:00:42 +03:00
|
|
|
c->yuv2planeX = yuv2planeX_altivec;
|
2011-06-06 04:15:44 +03:00
|
|
|
}
|
2018-11-26 14:24:15 +02:00
|
|
|
#endif
|
2011-06-03 05:28:56 +03:00
|
|
|
|
|
|
|
/* The following list of supported dstFormat values should
|
|
|
|
* match what's found in the body of ff_yuv2packedX_altivec() */
|
2016-03-28 18:25:18 +02:00
|
|
|
if (!(c->flags & (SWS_BITEXACT | SWS_FULL_CHR_H_INT)) && !c->needAlpha) {
|
2011-06-16 19:04:24 +03:00
|
|
|
switch (c->dstFormat) {
|
2012-10-06 13:10:34 +03:00
|
|
|
case AV_PIX_FMT_ABGR:
|
2012-02-21 21:58:48 +03:00
|
|
|
c->yuv2packedX = ff_yuv2abgr_X_altivec;
|
|
|
|
break;
|
2012-10-06 13:10:34 +03:00
|
|
|
case AV_PIX_FMT_BGRA:
|
2012-02-21 21:58:48 +03:00
|
|
|
c->yuv2packedX = ff_yuv2bgra_X_altivec;
|
|
|
|
break;
|
2012-10-06 13:10:34 +03:00
|
|
|
case AV_PIX_FMT_ARGB:
|
2012-02-21 21:58:48 +03:00
|
|
|
c->yuv2packedX = ff_yuv2argb_X_altivec;
|
|
|
|
break;
|
2012-10-06 13:10:34 +03:00
|
|
|
case AV_PIX_FMT_RGBA:
|
2012-02-21 21:58:48 +03:00
|
|
|
c->yuv2packedX = ff_yuv2rgba_X_altivec;
|
|
|
|
break;
|
2012-10-06 13:10:34 +03:00
|
|
|
case AV_PIX_FMT_BGR24:
|
2012-02-21 21:58:48 +03:00
|
|
|
c->yuv2packedX = ff_yuv2bgr24_X_altivec;
|
|
|
|
break;
|
2012-10-06 13:10:34 +03:00
|
|
|
case AV_PIX_FMT_RGB24:
|
2012-02-21 21:58:48 +03:00
|
|
|
c->yuv2packedX = ff_yuv2rgb24_X_altivec;
|
|
|
|
break;
|
2007-04-28 14:44:49 +03:00
|
|
|
}
|
2011-06-16 19:04:24 +03:00
|
|
|
}
|
2012-10-11 02:06:04 +03:00
|
|
|
#endif /* HAVE_ALTIVEC */
|
2018-11-26 14:24:15 +02:00
|
|
|
|
|
|
|
ff_sws_init_swscale_vsx(c);
|
2004-07-06 16:52:56 +03:00
|
|
|
}
|