26#if HAVE_AS_DN_DIRECTIVE
27extern void rgbx_to_nv12_neon_32(
const uint8_t *
src, uint8_t *y, uint8_t *
chroma,
29 int y_stride,
int c_stride,
int src_stride,
32extern void rgbx_to_nv12_neon_16(
const uint8_t *
src, uint8_t *y, uint8_t *
chroma,
34 int y_stride,
int c_stride,
int src_stride,
37static int rgbx_to_nv12_neon_32_wrapper(
SwsInternal *context,
const uint8_t *
const src[],
38 const int srcStride[],
int srcSliceY,
int srcSliceH,
39 uint8_t *
const dst[],
const int dstStride[]) {
41 rgbx_to_nv12_neon_32(
src[0] + srcSliceY * srcStride[0],
42 dst[0] + srcSliceY * dstStride[0],
43 dst[1] + (srcSliceY / 2) * dstStride[1],
45 dstStride[0], dstStride[1], srcStride[0],
51static int rgbx_to_nv12_neon_16_wrapper(
SwsInternal *context,
const uint8_t *
const src[],
52 const int srcStride[],
int srcSliceY,
int srcSliceH,
53 uint8_t *
const dst[],
const int dstStride[]) {
55 rgbx_to_nv12_neon_16(
src[0] + srcSliceY * srcStride[0],
56 dst[0] + srcSliceY * dstStride[0],
57 dst[1] + (srcSliceY / 2) * dstStride[1],
59 dstStride[0], dstStride[1], srcStride[0],
65#define YUV_TO_RGB_TABLE \
66 c->yuv2rgb_v2r_coeff, \
67 c->yuv2rgb_u2g_coeff, \
68 c->yuv2rgb_v2g_coeff, \
69 c->yuv2rgb_u2b_coeff, \
71#define DECLARE_FF_YUVX_TO_RGBX_FUNCS(ifmt, ofmt) \
72int ff_##ifmt##_to_##ofmt##_neon(int w, int h, \
73 uint8_t *dst, int linesize, \
74 const uint8_t *srcY, int linesizeY, \
75 const uint8_t *srcU, int linesizeU, \
76 const uint8_t *srcV, int linesizeV, \
77 const int16_t *table, \
81static int ifmt##_to_##ofmt##_neon_wrapper(SwsInternal *c, const uint8_t *const src[], \
82 const int srcStride[], int srcSliceY, \
83 int srcSliceH, uint8_t *const dst[], \
84 const int dstStride[]) { \
85 const int16_t yuv2rgb_table[] = { YUV_TO_RGB_TABLE }; \
87 ff_##ifmt##_to_##ofmt##_neon(c->opts.src_w, srcSliceH, \
88 dst[0] + srcSliceY * dstStride[0], dstStride[0], \
89 src[0], srcStride[0], \
90 src[1], srcStride[1], \
91 src[2], srcStride[2], \
93 c->yuv2rgb_y_offset >> 6, \
94 c->yuv2rgb_y_coeff); \
99#define DECLARE_FF_YUVX_TO_ALL_RGBX_FUNCS(yuvx) \
100DECLARE_FF_YUVX_TO_RGBX_FUNCS(yuvx, argb) \
101DECLARE_FF_YUVX_TO_RGBX_FUNCS(yuvx, rgba) \
102DECLARE_FF_YUVX_TO_RGBX_FUNCS(yuvx, abgr) \
103DECLARE_FF_YUVX_TO_RGBX_FUNCS(yuvx, bgra) \
108#define DECLARE_FF_NVX_TO_RGBX_FUNCS(ifmt, ofmt) \
109int ff_##ifmt##_to_##ofmt##_neon(int w, int h, \
110 uint8_t *dst, int linesize, \
111 const uint8_t *srcY, int linesizeY, \
112 const uint8_t *srcC, int linesizeC, \
113 const int16_t *table, \
117static int ifmt##_to_##ofmt##_neon_wrapper(SwsInternal *c, const uint8_t *const src[], \
118 const int srcStride[], int srcSliceY, \
119 int srcSliceH, uint8_t *const dst[], \
120 const int dstStride[]) { \
121 const int16_t yuv2rgb_table[] = { YUV_TO_RGB_TABLE }; \
123 ff_##ifmt##_to_##ofmt##_neon(c->opts.src_w, srcSliceH, \
124 dst[0] + srcSliceY * dstStride[0], dstStride[0], \
125 src[0], srcStride[0], src[1], srcStride[1], \
127 c->yuv2rgb_y_offset >> 6, \
128 c->yuv2rgb_y_coeff); \
133#define DECLARE_FF_NVX_TO_ALL_RGBX_FUNCS(nvx) \
134DECLARE_FF_NVX_TO_RGBX_FUNCS(nvx, argb) \
135DECLARE_FF_NVX_TO_RGBX_FUNCS(nvx, rgba) \
136DECLARE_FF_NVX_TO_RGBX_FUNCS(nvx, abgr) \
137DECLARE_FF_NVX_TO_RGBX_FUNCS(nvx, bgra) \
139DECLARE_FF_NVX_TO_ALL_RGBX_FUNCS(nv12)
140DECLARE_FF_NVX_TO_ALL_RGBX_FUNCS(nv21)
146#define SET_FF_NVX_TO_RGBX_FUNC(ifmt, IFMT, ofmt, OFMT, accurate_rnd) do { \
147 if (c->opts.src_format == AV_PIX_FMT_##IFMT \
148 && c->opts.dst_format == AV_PIX_FMT_##OFMT \
149 && !(c->opts.src_h & 1) \
150 && !(c->opts.src_w & 15) \
151 && !accurate_rnd) { \
152 c->convert_unscaled = ifmt##_to_##ofmt##_neon_wrapper; \
156#define SET_FF_NVX_TO_ALL_RGBX_FUNC(nvx, NVX, accurate_rnd) do { \
157 SET_FF_NVX_TO_RGBX_FUNC(nvx, NVX, argb, ARGB, accurate_rnd); \
158 SET_FF_NVX_TO_RGBX_FUNC(nvx, NVX, rgba, RGBA, accurate_rnd); \
159 SET_FF_NVX_TO_RGBX_FUNC(nvx, NVX, abgr, ABGR, accurate_rnd); \
160 SET_FF_NVX_TO_RGBX_FUNC(nvx, NVX, bgra, BGRA, accurate_rnd); \
167 && (
c->opts.src_w >= 16)) {
168 c->convert_unscaled = accurate_rnd ? rgbx_to_nv12_neon_32_wrapper
169 : rgbx_to_nv12_neon_16_wrapper;
172 SET_FF_NVX_TO_ALL_RGBX_FUNC(nv12, NV12, accurate_rnd);
173 SET_FF_NVX_TO_ALL_RGBX_FUNC(nv21, NV21, accurate_rnd);
174 SET_FF_NVX_TO_ALL_RGBX_FUNC(yuv420p, YUV420P, accurate_rnd);
175 SET_FF_NVX_TO_ALL_RGBX_FUNC(yuv422p, YUV422P, accurate_rnd);
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
static void get_unscaled_swscale_neon(SwsInternal *c)
#define DECLARE_FF_YUVX_TO_ALL_RGBX_FUNCS(yuvx)
void ff_get_unscaled_swscale_arm(SwsInternal *c)
@ SWS_ACCURATE_RND
Force bit-exact output.
static atomic_int cpu_flags
int av_get_cpu_flags(void)
Return the flags which specify extensions supported by the CPU.
@ AV_PIX_FMT_NV12
planar YUV 4:2:0, 12bpp, 1 plane for Y and 1 plane for the UV components, which are interleaved (firs...
@ AV_PIX_FMT_RGBA
packed RGBA 8:8:8:8, 32bpp, RGBARGBA...
int src_w
Deprecated frame property overrides, for the legacy API only.
int32_t input_rgb2yuv_table[16+40 *4]