29 int y_stride,
int c_stride,
int src_stride,
34 int y_stride,
int c_stride,
int src_stride,
38 int srcStride[],
int srcSliceY,
int srcSliceH,
39 uint8_t *dst[],
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],
44 context->
srcW, srcSliceH,
45 dstStride[0], dstStride[1], srcStride[0],
51 static int rgbx_to_nv12_neon_16_wrapper(
SwsContext *context,
const uint8_t *src[],
52 int srcStride[],
int srcSliceY,
int srcSliceH,
53 uint8_t *dst[],
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],
58 context->
srcW, srcSliceH,
59 dstStride[0], dstStride[1], srcStride[0],
66 #define YUV_TO_RGB_TABLE(precision) \
67 c->yuv2rgb_v2r_coeff / ((precision) == 16 ? 1 << 7 : 1), \
68 c->yuv2rgb_u2g_coeff / ((precision) == 16 ? 1 << 7 : 1), \
69 c->yuv2rgb_v2g_coeff / ((precision) == 16 ? 1 << 7 : 1), \
70 c->yuv2rgb_u2b_coeff / ((precision) == 16 ? 1 << 7 : 1), \
72 #define DECLARE_FF_YUVX_TO_RGBX_FUNCS(ifmt, ofmt, precision) \
73 int ff_##ifmt##_to_##ofmt##_neon_##precision(int w, int h, \
74 uint8_t *dst, int linesize, \
75 const uint8_t *srcY, int linesizeY, \
76 const uint8_t *srcU, int linesizeU, \
77 const uint8_t *srcV, int linesizeV, \
78 const int16_t *table, \
82 static int ifmt##_to_##ofmt##_neon_wrapper_##precision(SwsContext *c, const uint8_t *src[], \
83 int srcStride[], int srcSliceY, int srcSliceH, \
84 uint8_t *dst[], int dstStride[]) { \
85 const int16_t yuv2rgb_table[] = { YUV_TO_RGB_TABLE(precision) }; \
87 ff_##ifmt##_to_##ofmt##_neon_##precision(c->srcW, 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 >> 9, \
94 c->yuv2rgb_y_coeff / ((precision) == 16 ? 1 << 7 : 1)); \
99 #define DECLARE_FF_YUVX_TO_ALL_RGBX_FUNCS(yuvx, precision) \
100 DECLARE_FF_YUVX_TO_RGBX_FUNCS(yuvx, argb, precision) \
101 DECLARE_FF_YUVX_TO_RGBX_FUNCS(yuvx, rgba, precision) \
102 DECLARE_FF_YUVX_TO_RGBX_FUNCS(yuvx, abgr, precision) \
103 DECLARE_FF_YUVX_TO_RGBX_FUNCS(yuvx, bgra, precision) \
105 #define DECLARE_FF_YUVX_TO_ALL_RGBX_ALL_PRECISION_FUNCS(yuvx) \
106 DECLARE_FF_YUVX_TO_ALL_RGBX_FUNCS(yuvx, 16) \
111 #define DECLARE_FF_NVX_TO_RGBX_FUNCS(ifmt, ofmt, precision) \
112 int ff_##ifmt##_to_##ofmt##_neon_##precision(int w, int h, \
113 uint8_t *dst, int linesize, \
114 const uint8_t *srcY, int linesizeY, \
115 const uint8_t *srcC, int linesizeC, \
116 const int16_t *table, \
120 static int ifmt##_to_##ofmt##_neon_wrapper_##precision(SwsContext *c, const uint8_t *src[], \
121 int srcStride[], int srcSliceY, int srcSliceH, \
122 uint8_t *dst[], int dstStride[]) { \
123 const int16_t yuv2rgb_table[] = { YUV_TO_RGB_TABLE(precision) }; \
125 ff_##ifmt##_to_##ofmt##_neon_##precision(c->srcW, srcSliceH, \
126 dst[0] + srcSliceY * dstStride[0], dstStride[0], \
127 src[0], srcStride[0], src[1], srcStride[1], \
129 c->yuv2rgb_y_offset >> 9, \
130 c->yuv2rgb_y_coeff / ((precision) == 16 ? 1 << 7 : 1)); \
135 #define DECLARE_FF_NVX_TO_ALL_RGBX_FUNCS(nvx, precision) \
136 DECLARE_FF_NVX_TO_RGBX_FUNCS(nvx, argb, precision) \
137 DECLARE_FF_NVX_TO_RGBX_FUNCS(nvx, rgba, precision) \
138 DECLARE_FF_NVX_TO_RGBX_FUNCS(nvx, abgr, precision) \
139 DECLARE_FF_NVX_TO_RGBX_FUNCS(nvx, bgra, precision) \
141 #define DECLARE_FF_NVX_TO_ALL_RGBX_ALL_PRECISION_FUNCS(nvx) \
142 DECLARE_FF_NVX_TO_ALL_RGBX_FUNCS(nvx, 16) \
151 #define SET_FF_NVX_TO_RGBX_FUNC(ifmt, IFMT, ofmt, OFMT, accurate_rnd) do { \
152 if (c->srcFormat == AV_PIX_FMT_##IFMT \
153 && c->dstFormat == AV_PIX_FMT_##OFMT \
156 && !accurate_rnd) { \
157 c->swscale = ifmt##_to_##ofmt##_neon_wrapper_16; \
161 #define SET_FF_NVX_TO_ALL_RGBX_FUNC(nvx, NVX, accurate_rnd) do { \
162 SET_FF_NVX_TO_RGBX_FUNC(nvx, NVX, argb, ARGB, accurate_rnd); \
163 SET_FF_NVX_TO_RGBX_FUNC(nvx, NVX, rgba, RGBA, accurate_rnd); \
164 SET_FF_NVX_TO_RGBX_FUNC(nvx, NVX, abgr, ABGR, accurate_rnd); \
165 SET_FF_NVX_TO_RGBX_FUNC(nvx, NVX, bgra, BGRA, accurate_rnd); \
173 && (c->
srcW >= 16)) {
174 c->
swscale = accurate_rnd ? rgbx_to_nv12_neon_32_wrapper
175 : rgbx_to_nv12_neon_16_wrapper;
static void get_unscaled_swscale_neon(SwsContext *c)
enum AVPixelFormat dstFormat
Destination pixel format.
planar YUV 4:2:0, 12bpp, 1 plane for Y and 1 plane for the UV components, which are interleaved (firs...
packed RGBA 8:8:8:8, 32bpp, RGBARGBA...
BYTE int const BYTE int int int height
#define DECLARE_FF_YUVX_TO_ALL_RGBX_ALL_PRECISION_FUNCS(yuvx)
#define SET_FF_NVX_TO_ALL_RGBX_FUNC(nvx, NVX, accurate_rnd)
#define DECLARE_FF_NVX_TO_ALL_RGBX_ALL_PRECISION_FUNCS(nvx)
int av_get_cpu_flags(void)
Return the flags which specify extensions supported by the CPU.
void ff_get_unscaled_swscale_arm(SwsContext *c)
enum AVPixelFormat srcFormat
Source pixel format.
SwsFunc swscale
Note that src, dst, srcStride, dstStride will be copied in the sws_scale() wrapper so they can be fre...
int32_t input_rgb2yuv_table[16+40 *4]
int srcW
Width of source luma/alpha planes.
int flags
Flags passed by the user to select scaler algorithm, optimizations, subsampling, etc...