FFmpeg
Loading...
Searching...
No Matches
swscale_internal.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2001-2011 Michael Niedermayer <michaelni@gmx.at>
3 *
4 * This file is part of FFmpeg.
5 *
6 * FFmpeg is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * FFmpeg is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#ifndef SWSCALE_SWSCALE_INTERNAL_H
22#define SWSCALE_SWSCALE_INTERNAL_H
23
24#include <stdatomic.h>
25#include <assert.h>
26
27#include "config.h"
28#include "swscale.h"
29#include "graph.h"
30
32#include "libavutil/avassert.h"
33#include "libavutil/common.h"
34#include "libavutil/frame.h"
36#include "libavutil/log.h"
38#include "libavutil/pixfmt.h"
39#include "libavutil/pixdesc.h"
42
43#if HAVE_ALTIVEC
44#define SWSINTERNAL_ADDITIONAL_ASM_SIZE (7*16 + 2*8 + /* alignment */ 16)
45#endif
46#ifndef SWSINTERNAL_ADDITIONAL_ASM_SIZE
47#define SWSINTERNAL_ADDITIONAL_ASM_SIZE 0
48#endif
49
50#define STR(s) AV_TOSTRING(s) // AV_STRINGIFY is too long
51
52#define YUVRGB_TABLE_HEADROOM 512
53#define YUVRGB_TABLE_LUMA_HEADROOM 512
54
55#define MAX_FILTER_SIZE SWS_MAX_FILTER_SIZE
56
57#define SWS_MAX_THREADS 8192 /* sanity clamp */
58
59#if HAVE_BIGENDIAN
60#define ALT32_CORR (-1)
61#else
62#define ALT32_CORR 1
63#endif
64
65#if ARCH_X86_64
66# define APCK_PTR2 8
67# define APCK_COEF 16
68# define APCK_SIZE 24
69#else
70# define APCK_PTR2 4
71# define APCK_COEF 8
72# define APCK_SIZE 16
73#endif
74
75#define RETCODE_USE_CASCADE -12345
76
77typedef struct SwsInternal SwsInternal;
78
79static inline SwsInternal *sws_internal(const SwsContext *sws)
80{
81 return (SwsInternal *) sws;
82}
83
85
86typedef struct Range {
87 unsigned int start;
88 unsigned int len;
89} Range;
90
91typedef struct RangeList {
93 unsigned int nb_ranges;
95} RangeList;
96
97int ff_range_add(RangeList *r, unsigned int start, unsigned int len);
98
99typedef int (*SwsFunc)(SwsInternal *c, const uint8_t *const src[],
100 const int srcStride[], int srcSliceY, int srcSliceH,
101 uint8_t *const dst[], const int dstStride[]);
102
103typedef void (*SwsColorFunc)(const SwsInternal *c, uint8_t *dst, int dst_stride,
104 const uint8_t *src, int src_stride, int w, int h);
105
106typedef struct SwsLuts {
107 uint16_t *in;
108 uint16_t *out;
109} SwsLuts;
110
111typedef struct SwsColorXform {
113 int16_t mat[3][3];
115
116/**
117 * Write one line of horizontally scaled data to planar output
118 * without any additional vertical scaling (or point-scaling).
119 *
120 * @param src scaled source data, 15 bits for 8-10-bit output,
121 * 19 bits for 16-bit output (in int32_t)
122 * @param dest pointer to the output plane. For >8-bit
123 * output, this is in uint16_t
124 * @param dstW width of destination in pixels
125 * @param dither ordered dither array of type int16_t and size 8
126 * @param offset Dither offset
127 */
128typedef void (*yuv2planar1_fn)(const int16_t *src, uint8_t *dest, int dstW,
129 const uint8_t *dither, int offset);
130
131/**
132 * Write one line of horizontally scaled data to planar output
133 * with multi-point vertical scaling between input pixels.
134 *
135 * @param filter vertical luma/alpha scaling coefficients, 12 bits [0,4096]
136 * @param src scaled luma (Y) or alpha (A) source data, 15 bits for
137 * 8-10-bit output, 19 bits for 16-bit output (in int32_t)
138 * @param filterSize number of vertical input lines to scale
139 * @param dest pointer to output plane. For >8-bit
140 * output, this is in uint16_t
141 * @param dstW width of destination pixels
142 * @param offset Dither offset
143 */
144typedef void (*yuv2planarX_fn)(const int16_t *filter, int filterSize,
145 const int16_t **src, uint8_t *dest, int dstW,
146 const uint8_t *dither, int offset);
147
148/**
149 * Write one line of horizontally scaled chroma to interleaved output
150 * with multi-point vertical scaling between input pixels.
151 *
152 * @param dstFormat destination pixel format
153 * @param chrDither ordered dither array of type uint8_t and size 8
154 * @param chrFilter vertical chroma scaling coefficients, 12 bits [0,4096]
155 * @param chrUSrc scaled chroma (U) source data, 15 bits for 8-10-bit
156 * output, 19 bits for 16-bit output (in int32_t)
157 * @param chrVSrc scaled chroma (V) source data, 15 bits for 8-10-bit
158 * output, 19 bits for 16-bit output (in int32_t)
159 * @param chrFilterSize number of vertical chroma input lines to scale
160 * @param dest pointer to the output plane. For >8-bit
161 * output, this is in uint16_t
162 * @param dstW width of chroma planes
163 */
164typedef void (*yuv2interleavedX_fn)(enum AVPixelFormat dstFormat,
165 const uint8_t *chrDither,
166 const int16_t *chrFilter,
167 int chrFilterSize,
168 const int16_t **chrUSrc,
169 const int16_t **chrVSrc,
170 uint8_t *dest, int dstW);
171
172/**
173 * Write one line of horizontally scaled Y/U/V/A to packed-pixel YUV/RGB
174 * output without any additional vertical scaling (or point-scaling). Note
175 * that this function may do chroma scaling, see the "uvalpha" argument.
176 *
177 * @param c SWS scaling context
178 * @param lumSrc scaled luma (Y) source data, 15 bits for 8-10-bit output,
179 * 19 bits for 16-bit output (in int32_t)
180 * @param chrUSrc scaled chroma (U) source data, 15 bits for 8-10-bit output,
181 * 19 bits for 16-bit output (in int32_t)
182 * @param chrVSrc scaled chroma (V) source data, 15 bits for 8-10-bit output,
183 * 19 bits for 16-bit output (in int32_t)
184 * @param alpSrc scaled alpha (A) source data, 15 bits for 8-10-bit output,
185 * 19 bits for 16-bit output (in int32_t)
186 * @param dest pointer to the output plane. For 16-bit output, this is
187 * uint16_t
188 * @param dstW width of lumSrc and alpSrc in pixels, number of pixels
189 * to write into dest[]
190 * @param uvalpha chroma scaling coefficient for the second line of chroma
191 * pixels, either 2048 or 0. If 0, one chroma input is used
192 * for 2 output pixels (or if the SWS_FULL_CHR_H_INT flag
193 * is set, it generates 1 output pixel). If 2048, two chroma
194 * input pixels should be averaged for 2 output pixels (this
195 * only happens if SWS_FULL_CHR_H_INT is not set)
196 * @param y vertical line number for this output. This does not need
197 * to be used to calculate the offset in the destination,
198 * but can be used to generate comfort noise using dithering
199 * for some output formats.
200 */
201typedef void (*yuv2packed1_fn)(SwsInternal *c, const int16_t *lumSrc,
202 const int16_t *chrUSrc[2],
203 const int16_t *chrVSrc[2],
204 const int16_t *alpSrc, uint8_t *dest,
205 int dstW, int uvalpha, int y);
206/**
207 * Write one line of horizontally scaled Y/U/V/A to packed-pixel YUV/RGB
208 * output by doing bilinear scaling between two input lines.
209 *
210 * @param c SWS scaling context
211 * @param lumSrc scaled luma (Y) source data, 15 bits for 8-10-bit output,
212 * 19 bits for 16-bit output (in int32_t)
213 * @param chrUSrc scaled chroma (U) source data, 15 bits for 8-10-bit output,
214 * 19 bits for 16-bit output (in int32_t)
215 * @param chrVSrc scaled chroma (V) source data, 15 bits for 8-10-bit output,
216 * 19 bits for 16-bit output (in int32_t)
217 * @param alpSrc scaled alpha (A) source data, 15 bits for 8-10-bit output,
218 * 19 bits for 16-bit output (in int32_t)
219 * @param dest pointer to the output plane. For 16-bit output, this is
220 * uint16_t
221 * @param dstW width of lumSrc and alpSrc in pixels, number of pixels
222 * to write into dest[]
223 * @param yalpha luma/alpha scaling coefficients for the second input line.
224 * The first line's coefficients can be calculated by using
225 * 4096 - yalpha
226 * @param uvalpha chroma scaling coefficient for the second input line. The
227 * first line's coefficients can be calculated by using
228 * 4096 - uvalpha
229 * @param y vertical line number for this output. This does not need
230 * to be used to calculate the offset in the destination,
231 * but can be used to generate comfort noise using dithering
232 * for some output formats.
233 */
234typedef void (*yuv2packed2_fn)(SwsInternal *c, const int16_t *lumSrc[2],
235 const int16_t *chrUSrc[2],
236 const int16_t *chrVSrc[2],
237 const int16_t *alpSrc[2],
238 uint8_t *dest,
239 int dstW, int yalpha, int uvalpha, int y);
240/**
241 * Write one line of horizontally scaled Y/U/V/A to packed-pixel YUV/RGB
242 * output by doing multi-point vertical scaling between input pixels.
243 *
244 * @param c SWS scaling context
245 * @param lumFilter vertical luma/alpha scaling coefficients, 12 bits [0,4096]
246 * @param lumSrc scaled luma (Y) source data, 15 bits for 8-10-bit output,
247 * 19 bits for 16-bit output (in int32_t)
248 * @param lumFilterSize number of vertical luma/alpha input lines to scale
249 * @param chrFilter vertical chroma scaling coefficients, 12 bits [0,4096]
250 * @param chrUSrc scaled chroma (U) source data, 15 bits for 8-10-bit output,
251 * 19 bits for 16-bit output (in int32_t)
252 * @param chrVSrc scaled chroma (V) source data, 15 bits for 8-10-bit output,
253 * 19 bits for 16-bit output (in int32_t)
254 * @param chrFilterSize number of vertical chroma input lines to scale
255 * @param alpSrc scaled alpha (A) source data, 15 bits for 8-10-bit output,
256 * 19 bits for 16-bit output (in int32_t)
257 * @param dest pointer to the output plane. For 16-bit output, this is
258 * uint16_t
259 * @param dstW width of lumSrc and alpSrc in pixels, number of pixels
260 * to write into dest[]
261 * @param y vertical line number for this output. This does not need
262 * to be used to calculate the offset in the destination,
263 * but can be used to generate comfort noise using dithering
264 * or some output formats.
265 */
266typedef void (*yuv2packedX_fn)(SwsInternal *c, const int16_t *lumFilter,
267 const int16_t **lumSrc, int lumFilterSize,
268 const int16_t *chrFilter,
269 const int16_t **chrUSrc,
270 const int16_t **chrVSrc, int chrFilterSize,
271 const int16_t **alpSrc, uint8_t *dest,
272 int dstW, int y);
273
274/**
275 * Write one line of horizontally scaled Y/U/V/A to YUV/RGB
276 * output by doing multi-point vertical scaling between input pixels.
277 *
278 * @param c SWS scaling context
279 * @param lumFilter vertical luma/alpha scaling coefficients, 12 bits [0,4096]
280 * @param lumSrc scaled luma (Y) source data, 15 bits for 8-10-bit output,
281 * 19 bits for 16-bit output (in int32_t)
282 * @param lumFilterSize number of vertical luma/alpha input lines to scale
283 * @param chrFilter vertical chroma scaling coefficients, 12 bits [0,4096]
284 * @param chrUSrc scaled chroma (U) source data, 15 bits for 8-10-bit output,
285 * 19 bits for 16-bit output (in int32_t)
286 * @param chrVSrc scaled chroma (V) source data, 15 bits for 8-10-bit output,
287 * 19 bits for 16-bit output (in int32_t)
288 * @param chrFilterSize number of vertical chroma input lines to scale
289 * @param alpSrc scaled alpha (A) source data, 15 bits for 8-10-bit output,
290 * 19 bits for 16-bit output (in int32_t)
291 * @param dest pointer to the output planes. For 16-bit output, this is
292 * uint16_t
293 * @param dstW width of lumSrc and alpSrc in pixels, number of pixels
294 * to write into dest[]
295 * @param y vertical line number for this output. This does not need
296 * to be used to calculate the offset in the destination,
297 * but can be used to generate comfort noise using dithering
298 * or some output formats.
299 */
300typedef void (*yuv2anyX_fn)(SwsInternal *c, const int16_t *lumFilter,
301 const int16_t **lumSrc, int lumFilterSize,
302 const int16_t *chrFilter,
303 const int16_t **chrUSrc,
304 const int16_t **chrVSrc, int chrFilterSize,
305 const int16_t **alpSrc, uint8_t **dest,
306 int dstW, int y);
307
308/**
309 * Unscaled conversion of luma/alpha plane to YV12 for horizontal scaler.
310 */
311typedef void (*planar1_YV12_fn)(uint8_t *dst, const uint8_t *src, const uint8_t *src2,
312 const uint8_t *src3, int width, uint32_t *pal,
313 void *opaque);
314
315/**
316 * Unscaled conversion of chroma plane to YV12 for horizontal scaler.
317 */
318typedef void (*planar2_YV12_fn)(uint8_t *dst, uint8_t *dst2, const uint8_t *src,
319 const uint8_t *src2, const uint8_t *src3,
320 int width, uint32_t *pal, void *opaque);
321
322/**
323 * Unscaled conversion of arbitrary planar data (e.g. RGBA) to YV12, through
324 * conversion using the given color matrix.
325 */
326typedef void (*planarX_YV12_fn)(uint8_t *dst, const uint8_t *src[4], int width,
327 int32_t *rgb2yuv, void *opaque);
328
329typedef void (*planarX2_YV12_fn)(uint8_t *dst, uint8_t *dst2,
330 const uint8_t *src[4], int width,
331 int32_t *rgb2yuv, void *opaque);
332
333struct SwsSlice;
335
336/* This struct should be aligned on at least a 32-byte boundary. */
338 /* Currently active user-facing options. Also contains AVClass */
340
341 /* Parent context (for slice contexts) */
343
347
348 /* Scaling graph, reinitialized dynamically as needed. */
349 SwsGraph *graph[2]; /* top, bottom fields */
350
351 // values passed to current sws_receive_slice() call
354
355 /**
356 * Note that src, dst, srcStride, dstStride will be copied in the
357 * sws_scale() wrapper so they can be freely modified here.
358 */
360 int chrSrcW; ///< Width of source chroma planes.
361 int chrSrcH; ///< Height of source chroma planes.
362 int chrDstW; ///< Width of destination chroma planes.
363 int chrDstH; ///< Height of destination chroma planes.
366 int dstFormatBpp; ///< Number of bits per pixel of the destination pixel format.
367 int srcFormatBpp; ///< Number of bits per pixel of the source pixel format.
369 int chrSrcHSubSample; ///< Binary logarithm of horizontal subsampling factor between luma/alpha and chroma planes in source image.
370 int chrSrcVSubSample; ///< Binary logarithm of vertical subsampling factor between luma/alpha and chroma planes in source image.
371 int chrDstHSubSample; ///< Binary logarithm of horizontal subsampling factor between luma/alpha and chroma planes in destination image.
372 int chrDstVSubSample; ///< Binary logarithm of vertical subsampling factor between luma/alpha and chroma planes in destination image.
373 int vChrDrop; ///< Binary logarithm of extra vertical subsampling factor in source image chroma planes specified by user.
374 int sliceDir; ///< Direction that slices are fed to the scaler (1 = top-to-bottom, -1 = bottom-to-top).
375
378
380
381 /* The cascaded_* fields allow splitting a scaler task into multiple
382 * sequential steps, this is for example used to limit the maximum
383 * downscaling factor that needs to be supported in one scaler.
384 */
387 uint8_t *cascaded_tmp[2][4];
389
392 uint16_t *gamma;
393 uint16_t *inv_gamma;
394
396 int descIndex[2];
400
401 uint32_t pal_yuv[256];
402 uint32_t pal_rgb[256];
403
404 float uint2float_lut[256];
405
406 /**
407 * @name Scaled horizontal lines ring buffer.
408 * The horizontal scaler keeps just enough scaled lines in a ring buffer
409 * so they may be passed to the vertical scaler. The pointers to the
410 * allocated buffers for each line are duplicated in sequence in the ring
411 * buffer to simplify indexing and avoid wrapping around between lines
412 * inside the vertical scaler code. The wrapping is done before the
413 * vertical scaler is called.
414 */
415 //@{
416 int lastInLumBuf; ///< Last scaled horizontal luma/alpha line from source in the ring buffer.
417 int lastInChrBuf; ///< Last scaled horizontal chroma line from source in the ring buffer.
418 //@}
419
422
423 /**
424 * @name Horizontal and vertical filters.
425 * To better understand the following fields, here is a pseudo-code of
426 * their usage in filtering a horizontal line:
427 * @code
428 * for (i = 0; i < width; i++) {
429 * dst[i] = 0;
430 * for (j = 0; j < filterSize; j++)
431 * dst[i] += src[ filterPos[i] + j ] * filter[ filterSize * i + j ];
432 * dst[i] >>= FRAC_BITS; // The actual implementation is fixed-point.
433 * }
434 * @endcode
435 */
436 //@{
437 int16_t *hLumFilter; ///< Array of horizontal filter coefficients for luma/alpha planes.
438 int16_t *hChrFilter; ///< Array of horizontal filter coefficients for chroma planes.
439 int16_t *vLumFilter; ///< Array of vertical filter coefficients for luma/alpha planes.
440 int16_t *vChrFilter; ///< Array of vertical filter coefficients for chroma planes.
441 int32_t *hLumFilterPos; ///< Array of horizontal filter starting positions for each dst[i] for luma/alpha planes.
442 int32_t *hChrFilterPos; ///< Array of horizontal filter starting positions for each dst[i] for chroma planes.
443 int32_t *vLumFilterPos; ///< Array of vertical filter starting positions for each dst[i] for luma/alpha planes.
444 int32_t *vChrFilterPos; ///< Array of vertical filter starting positions for each dst[i] for chroma planes.
445 int hLumFilterSize; ///< Horizontal filter size for luma/alpha pixels.
446 int hChrFilterSize; ///< Horizontal filter size for chroma pixels.
447 int vLumFilterSize; ///< Vertical filter size for luma/alpha pixels.
448 int vChrFilterSize; ///< Vertical filter size for chroma pixels.
449 //@}
450
451 int lumMmxextFilterCodeSize; ///< Runtime-generated MMXEXT horizontal fast bilinear scaler code size for luma/alpha planes.
452 int chrMmxextFilterCodeSize; ///< Runtime-generated MMXEXT horizontal fast bilinear scaler code size for chroma planes.
453 uint8_t *lumMmxextFilterCode; ///< Runtime-generated MMXEXT horizontal fast bilinear scaler code for luma/alpha planes.
454 uint8_t *chrMmxextFilterCode; ///< Runtime-generated MMXEXT horizontal fast bilinear scaler code for chroma planes.
455
458
459 int dstY; ///< Last destination vertical line output from last slice.
460 void *yuvTable; // pointer to the yuv->rgb table start so it can be freed()
461 // alignment ensures the offset can be added in a single
462 // instruction on e.g. ARM
467 DECLARE_ALIGNED(16, int32_t, input_rgb2yuv_table)[16+40*4]; // This table can contain both C and SIMD formatted values, the C vales are always at the XY_IDX points
468#define RY_IDX 0
469#define GY_IDX 1
470#define BY_IDX 2
471#define RU_IDX 3
472#define GU_IDX 4
473#define BU_IDX 5
474#define RV_IDX 6
475#define GV_IDX 7
476#define BV_IDX 8
477#define RGB2YUV_SHIFT 15
478
480
481 //Colorspace stuff
482 int contrast, brightness, saturation; // for sws_getColorspaceDetails
495
496#define RED_DITHER "0*8"
497#define GREEN_DITHER "1*8"
498#define BLUE_DITHER "2*8"
499#define Y_COEFF "3*8"
500#define VR_COEFF "4*8"
501#define UB_COEFF "5*8"
502#define VG_COEFF "6*8"
503#define UG_COEFF "7*8"
504#define Y_OFFSET "8*8"
505#define U_OFFSET "9*8"
506#define V_OFFSET "10*8"
507#define LUM_MMX_FILTER_OFFSET "11*8"
508#define CHR_MMX_FILTER_OFFSET "11*8+4*4*"AV_STRINGIFY(MAX_FILTER_SIZE)
509#define DSTW_OFFSET "11*8+4*4*"AV_STRINGIFY(MAX_FILTER_SIZE)"*2"
510#define ESP_OFFSET "11*8+4*4*"AV_STRINGIFY(MAX_FILTER_SIZE)"*2+8"
511#define VROUNDER_OFFSET "11*8+4*4*"AV_STRINGIFY(MAX_FILTER_SIZE)"*2+16"
512#define U_TEMP "11*8+4*4*"AV_STRINGIFY(MAX_FILTER_SIZE)"*2+24"
513#define V_TEMP "11*8+4*4*"AV_STRINGIFY(MAX_FILTER_SIZE)"*2+32"
514#define Y_TEMP "11*8+4*4*"AV_STRINGIFY(MAX_FILTER_SIZE)"*2+40"
515#define ALP_MMX_FILTER_OFFSET "11*8+4*4*"AV_STRINGIFY(MAX_FILTER_SIZE)"*2+48"
516#define UV_OFF_PX "11*8+4*4*"AV_STRINGIFY(MAX_FILTER_SIZE)"*3+48"
517#define UV_OFF_BYTE "11*8+4*4*"AV_STRINGIFY(MAX_FILTER_SIZE)"*3+56"
518#define DITHER16 "11*8+4*4*"AV_STRINGIFY(MAX_FILTER_SIZE)"*3+64"
519#define DITHER32 "11*8+4*4*"AV_STRINGIFY(MAX_FILTER_SIZE)"*3+80"
520#define DITHER32_INT (11*8+4*4*MAX_FILTER_SIZE*3+80) // value equal to above, used for checking that the struct hasn't been changed by mistake
521
525
526 DECLARE_ALIGNED(8, uint64_t, yCoeff);
537 DECLARE_ALIGNED(8, uint64_t, esp);
539 DECLARE_ALIGNED(8, uint64_t, u_temp);
540 DECLARE_ALIGNED(8, uint64_t, v_temp);
541 DECLARE_ALIGNED(8, uint64_t, y_temp);
543 // alignment of these values is not necessary, but merely here
544 // to maintain the same offset across x8632 and x86-64. Once we
545 // use proper offset macros in the asm, they can be removed.
546 DECLARE_ALIGNED(8, ptrdiff_t, uv_off); ///< offset (in pixels) between u and v planes
547 DECLARE_ALIGNED(8, ptrdiff_t, uv_offx2); ///< offset (in bytes) between u and v planes
548 DECLARE_ALIGNED(8, uint16_t, dither16)[8];
549 DECLARE_ALIGNED(8, uint32_t, dither32)[8];
550
551 const uint8_t *chrDither8, *lumDither8;
552
554
555/* pre defined color-spaces gamma */
556#define XYZ_GAMMA (2.6)
557#define RGB_GAMMA (2.2)
562
563 /* function pointers for swscale() */
571
572 /// Opaque data pointer passed to all input functions.
574
578
579 /**
580 * Functions to read planar input, such as planar RGB, and convert
581 * internally to Y/UV/A.
582 */
583 /** @{ */
587 /** @} */
588
589 /**
590 * Scale one horizontal line of input data using a bilinear filter
591 * to produce one line of output data. Compared to SwsInternal->hScale(),
592 * please take note of the following caveats when using these:
593 * - Scaling is done using only 7 bits instead of 14-bit coefficients.
594 * - You can use no more than 5 input pixels to produce 4 output
595 * pixels. Therefore, this filter should not be used for downscaling
596 * by more than ~20% in width (because that equals more than 5/4th
597 * downscaling and thus more than 5 pixels input per 4 pixels output).
598 * - In general, bilinear filters create artifacts during downscaling
599 * (even when <20%), because one output pixel will span more than one
600 * input pixel, and thus some pixels will need edges of both neighbor
601 * pixels to interpolate the output pixel. Since you can use at most
602 * two input pixels per output pixel in bilinear scaling, this is
603 * impossible and thus downscaling by any size will create artifacts.
604 * To enable this type of scaling, set SWS_FAST_BILINEAR
605 * in SwsInternal->flags.
606 */
607 /** @{ */
609 int16_t *dst, int dstWidth,
610 const uint8_t *src, int srcW, int xInc);
612 int16_t *dst1, int16_t *dst2, int dstWidth,
613 const uint8_t *src1, const uint8_t *src2,
614 int srcW, int xInc);
615 /** @} */
616
617 /**
618 * Scale one horizontal line of input data using a filter over the input
619 * lines, to produce one (differently sized) line of output data.
620 *
621 * @param dst pointer to destination buffer for horizontally scaled
622 * data. If the number of bits per component of one
623 * destination pixel (SwsInternal->dstBpc) is <= 10, data
624 * will be 15 bpc in 16 bits (int16_t) width. Else (i.e.
625 * SwsInternal->dstBpc == 16), data will be 19bpc in
626 * 32 bits (int32_t) width.
627 * @param dstW width of destination image
628 * @param src pointer to source data to be scaled. If the number of
629 * bits per component of a source pixel (SwsInternal->srcBpc)
630 * is 8, this is 8bpc in 8 bits (uint8_t) width. Else
631 * (i.e. SwsInternal->dstBpc > 8), this is native depth
632 * in 16 bits (uint16_t) width. In other words, for 9-bit
633 * YUV input, this is 9bpc, for 10-bit YUV input, this is
634 * 10bpc, and for 16-bit RGB or YUV, this is 16bpc.
635 * @param filter filter coefficients to be used per output pixel for
636 * scaling. This contains 14bpp filtering coefficients.
637 * Guaranteed to contain dstW * filterSize entries.
638 * @param filterPos position of the first input pixel to be used for
639 * each output pixel during scaling. Guaranteed to
640 * contain dstW entries.
641 * @param filterSize the number of input coefficients to be used (and
642 * thus the number of input pixels to be used) for
643 * creating a single output pixel. Is aligned to 4
644 * (and input coefficients thus padded with zeroes)
645 * to simplify creating SIMD code.
646 */
647 /** @{ */
648 void (*hyScale)(SwsInternal *c, int16_t *dst, int dstW,
649 const uint8_t *src, const int16_t *filter,
650 const int32_t *filterPos, int filterSize);
651 void (*hcScale)(SwsInternal *c, int16_t *dst, int dstW,
652 const uint8_t *src, const int16_t *filter,
653 const int32_t *filterPos, int filterSize);
654 /** @} */
655
656 /**
657 * Color range conversion functions if needed.
658 * If SwsInternal->dstBpc is > 14:
659 * - int16_t *dst (data is 15 bpc)
660 * - uint16_t coeff
661 * - int32_t offset
662 * Otherwise (SwsInternal->dstBpc is <= 14):
663 * - int32_t *dst (data is 19 bpc)
664 * - uint32_t coeff
665 * - int64_t offset
666 */
667 /** @{ */
668 void (*lumConvertRange)(int16_t *dst, int width,
669 uint32_t coeff, int64_t offset);
670 void (*chrConvertRange)(int16_t *dst1, int16_t *dst2, int width,
671 uint32_t coeff, int64_t offset);
672 /** @} */
673
678
679 int needs_hcscale; ///< Set if there are chroma planes to be converted.
680
681 // scratch buffer for converting packed rgb0 sources
682 // filled with a copy of the input frame + fully opaque alpha,
683 // then passed as input to further conversion
684 uint8_t *rgb0_scratch;
686
687 // scratch buffer for converting XYZ sources
688 // filled with the input converted to rgb48
689 // then passed as input to further conversion
690 uint8_t *xyz_scratch;
692
693 unsigned int dst_slice_align;
697
699
700 // Hardware specific private data
701 void *hw_priv; /* refstruct */
702
704
705 FFFramePool frame_pool; /* for sws_scale_frame() data allocations */
706};
707//FIXME check init (where 0)
708
709static_assert(offsetof(SwsInternal, redDither) + DITHER32_INT == offsetof(SwsInternal, dither32),
710 "dither32 must be at the same offset as redDither + DITHER32_INT");
711
712#if ARCH_X86_64
713/* x86 yuv2gbrp uses the SwsInternal for yuv coefficients
714 if struct offsets change the asm needs to be updated too */
715static_assert(offsetof(SwsInternal, yuv2rgb_y_offset) == 40348,
716 "yuv2rgb_y_offset must be updated in x86 asm");
717#endif
718
720int ff_yuv2rgb_c_init_tables(SwsInternal *c, const int inv_table[4],
721 int fullRange, int brightness,
722 int contrast, int saturation);
723void ff_yuv2rgb_init_tables_ppc(SwsInternal *c, const int inv_table[4],
724 int brightness, int contrast, int saturation);
725
726void ff_updateMMXDitherTables(SwsInternal *c, int dstY);
727
728void ff_update_palette(SwsInternal *c, const uint32_t *pal);
729
735
738
740
745
747{
750 return desc->comp[0].depth == 16;
751}
752
754{
757 return desc->comp[0].depth == 32;
758}
759
761{
764 return desc->comp[0].depth >= 9 && desc->comp[0].depth <= 14;
765}
766
773
775{
778 return !(desc->flags & AV_PIX_FMT_FLAG_RGB) && desc->nb_components >= 2;
779}
780
787
788/*
789 * Identity semi-planar YUV formats. Specifically, those are YUV formats
790 * where the second and third components (U & V) are on the same plane.
791 */
793{
796 return (isPlanarYUV(pix_fmt) && desc->comp[1].plane == desc->comp[2].plane);
797}
798
805
807{
810 return !(desc->flags & AV_PIX_FMT_FLAG_PAL) &&
811 !(desc->flags & AV_PIX_FMT_FLAG_HWACCEL) &&
812 desc->nb_components <= 2 &&
815}
816
838
860
867
869{
872 return desc->comp[1].depth == 8;
873}
874
882
889
891{
894 return (desc->flags & AV_PIX_FMT_FLAG_FLOAT) && desc->comp[0].depth == 16;
895}
896
898{
902 return 1;
903 return desc->flags & AV_PIX_FMT_FLAG_ALPHA;
904}
905
914
916{
919 return (desc->nb_components >= 2 && (desc->flags & AV_PIX_FMT_FLAG_PLANAR));
920}
921
928
936
938{
939 switch (pix_fmt) {
940 case AV_PIX_FMT_PAL8:
942 case AV_PIX_FMT_BGR8:
943 case AV_PIX_FMT_GRAY8:
945 case AV_PIX_FMT_RGB8:
946 return 1;
947 default:
948 return 0;
949 }
950}
951
952/*
953 * Identity formats where the data is in the high bits, and the low bits are shifted away.
954 */
956{
957 int i;
961 return 0;
962 for (i = 0; i < desc->nb_components; i++) {
963 if (!desc->comp[i].shift)
964 return 0;
965 if ((desc->comp[i].shift + desc->comp[i].depth) & 0x7)
966 return 0;
967 }
968 return 1;
969}
970
971/*
972 * Identity formats where the chroma planes are swapped (CrCb order).
973 */
975{
978 if (!isYUV(pix_fmt))
979 return 0;
980 if ((desc->flags & AV_PIX_FMT_FLAG_ALPHA) && desc->nb_components < 4)
981 return 0;
982 if (desc->nb_components < 3)
983 return 0;
985 return desc->comp[1].offset > desc->comp[2].offset;
986 else
987 return desc->comp[1].plane > desc->comp[2].plane;
988}
989
990extern const uint64_t ff_dither4[2];
991extern const uint64_t ff_dither8[2];
992
993extern const uint8_t ff_dither_2x2_4[3][8];
994extern const uint8_t ff_dither_2x2_8[3][8];
995extern const uint8_t ff_dither_4x4_16[5][8];
996extern const uint8_t ff_dither_8x8_32[9][8];
997extern const uint8_t ff_dither_8x8_73[9][8];
998extern const uint8_t ff_dither_8x8_128[9][8];
999extern const uint8_t ff_dither_8x8_220[9][8];
1000
1001extern const int32_t ff_yuv2rgb_coeffs[11][4];
1002
1003extern const AVClass ff_sws_context_class;
1004
1006 SwsFilter *dstFilter);
1007
1008/**
1009 * Set c->convert_unscaled to an unscaled converter if one exists for the
1010 * specific source and destination formats, bit depths, flags, etc.
1011 */
1016
1018
1020 planar1_YV12_fn *lumToYV12,
1021 planar1_YV12_fn *alpToYV12,
1022 planar2_YV12_fn *chrToYV12,
1023 planarX_YV12_fn *readLumPlanar,
1024 planarX_YV12_fn *readAlpPlanar,
1025 planarX2_YV12_fn *readChrPlanar);
1027 yuv2planar1_fn *yuv2plane1,
1029 yuv2interleavedX_fn *yuv2nv12cX,
1030 yuv2packed1_fn *yuv2packed1,
1031 yuv2packed2_fn *yuv2packed2,
1032 yuv2packedX_fn *yuv2packedX,
1033 yuv2anyX_fn *yuv2anyX);
1041
1044
1045void ff_hyscale_fast_c(SwsInternal *c, int16_t *dst, int dstWidth,
1046 const uint8_t *src, int srcW, int xInc);
1047void ff_hcscale_fast_c(SwsInternal *c, int16_t *dst1, int16_t *dst2,
1048 int dstWidth, const uint8_t *src1,
1049 const uint8_t *src2, int srcW, int xInc);
1050int ff_init_hscaler_mmxext(int dstW, int xInc, uint8_t *filterCode,
1051 int16_t *filter, int32_t *filterPos,
1052 int numSplits);
1053void ff_hyscale_fast_mmxext(SwsInternal *c, int16_t *dst,
1054 int dstWidth, const uint8_t *src,
1055 int srcW, int xInc);
1056void ff_hcscale_fast_mmxext(SwsInternal *c, int16_t *dst1, int16_t *dst2,
1057 int dstWidth, const uint8_t *src1,
1058 const uint8_t *src2, int srcW, int xInc);
1059
1060int ff_sws_alphablendaway(SwsInternal *c, const uint8_t *const src[],
1061 const int srcStride[], int srcSliceY, int srcSliceH,
1062 uint8_t *const dst[], const int dstStride[]);
1063
1064void ff_copyPlane(const uint8_t *src, int srcStride,
1065 int srcSliceY, int srcSliceH, int width,
1066 uint8_t *dst, int dstStride);
1067
1068static inline void fillPlane16(uint8_t *plane, int stride, int width, int height, int y,
1069 int alpha, int bits, const int big_endian)
1070{
1071 uint8_t *ptr = plane + stride * y;
1072 int v = alpha ? 0xFFFF>>(16-bits) : (1<<(bits-1));
1073 if (big_endian != HAVE_BIGENDIAN)
1074 v = av_bswap16(v);
1075 for (int i = 0; i < height; i++) {
1076 for (int j = 0; j < width; j++)
1077 AV_WN16(ptr + 2 * j, v);
1078 ptr += stride;
1079 }
1080}
1081
1082static inline void fillPlane32(uint8_t *plane, int stride, int width, int height, int y,
1083 int alpha, int bits, const int big_endian, int is_float)
1084{
1085 uint8_t *ptr = plane + stride * y;
1086 uint32_t v;
1087 uint32_t onef32 = 0x3f800000;
1088 if (is_float)
1089 v = alpha ? onef32 : 0;
1090 else
1091 v = alpha ? 0xFFFFFFFF>>(32-bits) : (1<<(bits-1));
1092 if (big_endian != HAVE_BIGENDIAN)
1093 v = av_bswap32(v);
1094
1095 for (int i = 0; i < height; i++) {
1096 for (int j = 0; j < width; j++)
1097 AV_WN32(ptr + 4 * j, v);
1098 ptr += stride;
1099 }
1100}
1101
1102
1103#define MAX_SLICE_PLANES 4
1104
1105/// Slice plane
1106typedef struct SwsPlane
1107{
1108 int available_lines; ///< max number of lines that can be hold by this plane
1109 int sliceY; ///< index of first line
1110 int sliceH; ///< number of lines
1111 uint8_t **line; ///< line buffer
1112 uint8_t **tmp; ///< Tmp line buffer used by mmx code
1113} SwsPlane;
1114
1115/**
1116 * Struct which defines a slice of an image to be scaled or an output for
1117 * a scaled slice.
1118 * A slice can also be used as intermediate ring buffer for scaling steps.
1119 */
1120typedef struct SwsSlice
1121{
1122 int width; ///< Slice line width
1123 int h_chr_sub_sample; ///< horizontal chroma subsampling factor
1124 int v_chr_sub_sample; ///< vertical chroma subsampling factor
1125 int is_ring; ///< flag to identify if this slice is a ring buffer
1126 int should_free_lines; ///< flag to identify if there are dynamic allocated lines
1127 enum AVPixelFormat fmt; ///< planes pixel format
1128 SwsPlane plane[MAX_SLICE_PLANES]; ///< color planes
1129} SwsSlice;
1130
1131/**
1132 * Struct which holds all necessary data for processing a slice.
1133 * A processing step can be a color conversion or horizontal/vertical scaling.
1134 */
1136{
1137 SwsSlice *src; ///< Source slice
1138 SwsSlice *dst; ///< Output slice
1139
1140 int alpha; ///< Flag for processing alpha channel
1141 void *instance; ///< Filter instance data
1142
1143 /// Function for processing input slice sliceH lines starting from line sliceY
1144 int (*process)(SwsInternal *c, struct SwsFilterDescriptor *desc, int sliceY, int sliceH);
1146
1147// warp input lines in the form (src + width*i + j) to slice format (line[i][j])
1148// relative=true means first line src[x][0] otherwise first line is src[x][lum/crh Y]
1149int ff_init_slice_from_src(SwsSlice * s, uint8_t *const src[4], const int stride[4],
1150 int srcW, int lumY, int lumH, int chrY, int chrH, int relative);
1151
1152// Initialize scaler filter descriptor chain
1154
1155// Free all filter data
1157
1158/*
1159 function for applying ring buffer logic into slice s
1160 It checks if the slice can hold more @lum lines, if yes
1161 do nothing otherwise remove @lum least used lines.
1162 It applies the same procedure for @chr lines.
1163*/
1164int ff_rotate_slice(SwsSlice *s, int lum, int chr);
1165
1166/// initializes gamma conversion descriptor
1168
1169/// initializes lum pixel format conversion descriptor
1171
1172/// initializes lum horizontal scaling descriptor
1173int ff_init_desc_hscale(SwsFilterDescriptor *desc, SwsSlice *src, SwsSlice *dst, uint16_t *filter, int * filter_pos, int filter_size, int xInc);
1174
1175/// initializes chr pixel format conversion descriptor
1177
1178/// initializes chr horizontal scaling descriptor
1179int ff_init_desc_chscale(SwsFilterDescriptor *desc, SwsSlice *src, SwsSlice *dst, uint16_t *filter, int * filter_pos, int filter_size, int xInc);
1180
1182
1183/// initializes vertical scaling descriptors
1185
1186/// setup vertical scaler functions
1188 yuv2interleavedX_fn yuv2nv12cX, yuv2packed1_fn yuv2packed1, yuv2packed2_fn yuv2packed2,
1189 yuv2packedX_fn yuv2packedX, yuv2anyX_fn yuv2anyX, int use_mmx);
1190
1191int ff_sws_slice_worker(void *priv, int jobnr, int threadnr,
1192 int nb_jobs, int nb_threads);
1193
1194int ff_swscale(SwsInternal *c, const uint8_t *const src[], const int srcStride[],
1195 int srcSliceY, int srcSliceH, uint8_t *const dst[],
1196 const int dstStride[], int dstSliceY, int dstSliceH);
1197
1198/**
1199 * Helper for dispatching a single function across multiple threads. This is
1200 * a wrapper around avpriv_slicethread_create2() + avpriv_slicethread_execute2(),
1201 * falling back to direct invocation if threading is not available.
1202 */
1203int ff_sws_thread_exec(void *priv,
1204 int (*func)(void *priv, int jobnr, int threadnr, int nb_jobs, int nb_threads),
1205 int nb_threads, int nb_jobs);
1206
1207//number of extra lines to process
1208#define MAX_LINES_AHEAD 4
1209
1210//shuffle filter and filterPos for hyScale and hcScale filters in avx2
1211int ff_shuffle_filter_coefficients(SwsInternal *c, int* filterPos, int filterSize, int16_t *filter, int dstW);
1212#endif /* SWSCALE_SWSCALE_INTERNAL_H */
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
Definition dsp.h:87
int32_t
simple assert() macros that are a bit more flexible than ISO C assert().
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition avassert.h:42
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
#define s(width, name)
Definition cbs_vp9.c:198
static IPT relative(const CmsCtx *ctx, IPT ipt)
Definition cms.c:544
static IPT saturation(const CmsCtx *ctx, IPT ipt)
Definition cms.c:559
static void fn rgb2yuv(uint8_t *_yuv[3], const ptrdiff_t yuv_stride[3], int16_t *rgb[3], ptrdiff_t s, int w, int h, const int16_t rgb2yuv_coeffs[3][3][8], const int16_t yuv_offset[8])
common internal and external API header
long long int64_t
Definition coverity.c:34
static enum AVPixelFormat pix_fmt
intptr_t atomic_int
Definition stdatomic.h:55
static const uint8_t bits[8]
Definition fastaudio.c:100
reference-counted frame API
SwsBackend
Definition swscale.h:110
const pixel * src2
static const int16_t alpha[]
Definition ilbcdata.h:55
#define r
Definition input.c:42
#define AV_WN32(p, v)
#define AV_WN16(p, v)
unsigned offset
Definition libaomenc.c:763
int(* func)(AVBPrint *dst, const char *in, const char *arg)
Definition jacosubdec.c:66
#define av_always_inline
Definition attributes.h:72
#define av_cold
Definition attributes.h:117
const char * desc
Definition libsvtav1.c:83
const AVClass ff_sws_context_class
Definition options.c:124
uint8_t w
Definition llvidencdsp.c:39
#define DECLARE_ALIGNED(n, t, v)
Declare a variable that is aligned in memory.
const uint8_t ff_dither_8x8_73[][8]
Definition output.c:72
const uint8_t ff_dither_2x2_4[][8]
Definition output.c:40
const uint8_t ff_dither_2x2_8[][8]
Definition output.c:46
const uint8_t ff_dither_4x4_16[][8]
Definition output.c:52
const uint8_t ff_dither_8x8_220[][8]
Definition output.c:85
const uint8_t ff_dither_8x8_32[][8]
Definition output.c:60
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition pixdesc.c:3460
#define AV_PIX_FMT_FLAG_ALPHA
The pixel format has an alpha channel.
Definition pixdesc.h:147
#define AV_PIX_FMT_FLAG_BITSTREAM
All values of a component are bit-wise packed end to end.
Definition pixdesc.h:124
#define AV_PIX_FMT_FLAG_RGB
The pixel format contains RGB-like data (as opposed to YUV/grayscale).
Definition pixdesc.h:136
#define AV_PIX_FMT_FLAG_FLOAT
The pixel format contains IEEE-754 floating point values.
Definition pixdesc.h:158
#define AV_PIX_FMT_FLAG_HWACCEL
Pixel format is an HW accelerated format.
Definition pixdesc.h:128
#define AV_PIX_FMT_FLAG_PLANAR
At least one pixel component is not in the first data plane.
Definition pixdesc.h:132
#define AV_PIX_FMT_FLAG_BE
Pixel format is big-endian.
Definition pixdesc.h:116
#define AV_PIX_FMT_FLAG_BAYER
The pixel format is following a Bayer pattern.
Definition pixdesc.h:152
#define AV_PIX_FMT_FLAG_PAL
Pixel format has a palette in data[1], values are indexes in this palette.
Definition pixdesc.h:120
pixel format definitions
#define AV_PIX_FMT_BGR32
Definition pixfmt.h:519
AVPixelFormat
Pixel format.
Definition pixfmt.h:71
@ AV_PIX_FMT_RGB24
packed RGB 8:8:8, 24bpp, RGBRGB...
Definition pixfmt.h:75
@ AV_PIX_FMT_MONOBLACK
Y , 1bpp, 0 is black, 1 is white, in each byte pixels are ordered from the msb to the lsb.
Definition pixfmt.h:83
@ AV_PIX_FMT_BGR565BE
packed BGR 5:6:5, 16bpp, (msb) 5B 6G 5R(lsb), big-endian
Definition pixfmt.h:117
@ AV_PIX_FMT_RGB555BE
packed RGB 5:5:5, 16bpp, (msb)1X 5R 5G 5B(lsb), big-endian , X=unused/undefined
Definition pixfmt.h:114
@ AV_PIX_FMT_GRAY8
Y , 8bpp.
Definition pixfmt.h:81
@ AV_PIX_FMT_BGR48BE
packed RGB 16:16:16, 48bpp, 16B, 16G, 16R, the 2-byte value for each R/G/B component is stored as big...
Definition pixfmt.h:145
@ AV_PIX_FMT_RGB48BE
packed RGB 16:16:16, 48bpp, 16R, 16G, 16B, the 2-byte value for each R/G/B component is stored as big...
Definition pixfmt.h:109
@ AV_PIX_FMT_RGBA64BE
packed RGBA 16:16:16:16, 64bpp, 16R, 16G, 16B, 16A, the 2-byte value for each R/G/B/A component is st...
Definition pixfmt.h:202
@ AV_PIX_FMT_RGB8
packed RGB 3:3:2, 8bpp, (msb)3R 3G 2B(lsb)
Definition pixfmt.h:93
@ AV_PIX_FMT_RGBA64LE
packed RGBA 16:16:16:16, 64bpp, 16R, 16G, 16B, 16A, the 2-byte value for each R/G/B/A component is st...
Definition pixfmt.h:203
@ AV_PIX_FMT_BGR8
packed RGB 3:3:2, 8bpp, (msb)2B 3G 3R(lsb)
Definition pixfmt.h:90
@ AV_PIX_FMT_RGB444LE
packed RGB 4:4:4, 16bpp, (msb)4X 4R 4G 4B(lsb), little-endian, X=unused/undefined
Definition pixfmt.h:136
@ AV_PIX_FMT_RGB4_BYTE
packed RGB 1:2:1, 8bpp, (msb)1R 2G 1B(lsb)
Definition pixfmt.h:95
@ AV_PIX_FMT_BGR4_BYTE
packed RGB 1:2:1, 8bpp, (msb)1B 2G 1R(lsb)
Definition pixfmt.h:92
@ AV_PIX_FMT_BGRA64BE
packed RGBA 16:16:16:16, 64bpp, 16B, 16G, 16R, 16A, the 2-byte value for each R/G/B/A component is st...
Definition pixfmt.h:204
@ AV_PIX_FMT_RGB565LE
packed RGB 5:6:5, 16bpp, (msb) 5R 6G 5B(lsb), little-endian
Definition pixfmt.h:113
@ AV_PIX_FMT_RGB555LE
packed RGB 5:5:5, 16bpp, (msb)1X 5R 5G 5B(lsb), little-endian, X=unused/undefined
Definition pixfmt.h:115
@ AV_PIX_FMT_BGR444BE
packed BGR 4:4:4, 16bpp, (msb)4X 4B 4G 4R(lsb), big-endian, X=unused/undefined
Definition pixfmt.h:139
@ AV_PIX_FMT_RGB48LE
packed RGB 16:16:16, 48bpp, 16R, 16G, 16B, the 2-byte value for each R/G/B component is stored as lit...
Definition pixfmt.h:110
@ AV_PIX_FMT_BGR555BE
packed BGR 5:5:5, 16bpp, (msb)1X 5B 5G 5R(lsb), big-endian , X=unused/undefined
Definition pixfmt.h:119
@ AV_PIX_FMT_BGR444LE
packed BGR 4:4:4, 16bpp, (msb)4X 4B 4G 4R(lsb), little-endian, X=unused/undefined
Definition pixfmt.h:138
@ AV_PIX_FMT_RGB444BE
packed RGB 4:4:4, 16bpp, (msb)4X 4R 4G 4B(lsb), big-endian, X=unused/undefined
Definition pixfmt.h:137
@ AV_PIX_FMT_BGR48LE
packed RGB 16:16:16, 48bpp, 16B, 16G, 16R, the 2-byte value for each R/G/B component is stored as lit...
Definition pixfmt.h:146
@ AV_PIX_FMT_RGB565BE
packed RGB 5:6:5, 16bpp, (msb) 5R 6G 5B(lsb), big-endian
Definition pixfmt.h:112
@ AV_PIX_FMT_BGR555LE
packed BGR 5:5:5, 16bpp, (msb)1X 5B 5G 5R(lsb), little-endian, X=unused/undefined
Definition pixfmt.h:120
@ AV_PIX_FMT_BGRA64LE
packed RGBA 16:16:16:16, 64bpp, 16B, 16G, 16R, 16A, the 2-byte value for each R/G/B/A component is st...
Definition pixfmt.h:205
@ AV_PIX_FMT_PAL8
8 bits with AV_PIX_FMT_RGB32 palette
Definition pixfmt.h:84
@ AV_PIX_FMT_BGR24
packed RGB 8:8:8, 24bpp, BGRBGR...
Definition pixfmt.h:76
@ AV_PIX_FMT_BGR565LE
packed BGR 5:6:5, 16bpp, (msb) 5B 6G 5R(lsb), little-endian
Definition pixfmt.h:118
@ AV_PIX_FMT_RGB4
packed RGB 1:2:1 bitstream, 4bpp, (msb)1R 2G 1B(lsb), a byte contains two pixels, the first pixel in ...
Definition pixfmt.h:94
@ AV_PIX_FMT_MONOWHITE
Y , 1bpp, 0 is white, 1 is black, in each byte pixels are ordered from the msb to the lsb.
Definition pixfmt.h:82
@ AV_PIX_FMT_BGR4
packed RGB 1:2:1 bitstream, 4bpp, (msb)1B 2G 1R(lsb), a byte contains two pixels, the first pixel in ...
Definition pixfmt.h:91
#define AV_PIX_FMT_RGB32_1
Definition pixfmt.h:518
#define AV_PIX_FMT_BGR32_1
Definition pixfmt.h:520
#define AV_PIX_FMT_RGB32
Definition pixfmt.h:517
static const uint16_t table[]
Definition prosumer.c:203
#define av_bswap32
Definition bswap.h:47
#define av_bswap16
Definition bswap.h:28
struct AVSliceThread AVSliceThread
Definition slicethread.h:25
Describe the class of an AVClass context structure.
Definition log.h:76
This structure describes decoded (raw) audio or video data.
Definition frame.h:472
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition pixdesc.h:69
Frame pool.
Definition framepool.h:32
unsigned int nb_ranges
AVRational start
unsigned int len
int16_t mat[3][3]
Main external API structure.
Definition swscale.h:227
Struct which holds all necessary data for processing a slice.
SwsSlice * src
Source slice.
void * instance
Filter instance data.
int alpha
Flag for processing alpha channel.
SwsSlice * dst
Output slice.
int(* process)(SwsInternal *c, struct SwsFilterDescriptor *desc, int sliceY, int sliceH)
Function for processing input slice sliceH lines starting from line sliceY.
Filter graph, which represents a 'baked' pixel format conversion.
Definition graph.h:132
int * dither_error[4]
int16_t * hChrFilter
Array of horizontal filter coefficients for chroma planes.
unsigned int rgb0_scratch_allocated
yuv2planar1_fn yuv2plane1
int cascaded_tmpStride[2][4]
int warned_unuseable_bilinear
planar2_YV12_fn chrToYV12
int32_t lumMmxFilter[4 *MAX_FILTER_SIZE]
int lumMmxextFilterCodeSize
Runtime-generated MMXEXT horizontal fast bilinear scaler code size for luma/alpha planes.
uint32_t chrConvertRange_coeff
uint32_t dither32[8]
uint32_t pal_rgb[256]
uint8_t * formatConvBuffer
int chrMmxextFilterCodeSize
Runtime-generated MMXEXT horizontal fast bilinear scaler code size for chroma planes.
int lastInLumBuf
Last scaled horizontal luma/alpha line from source in the ring buffer.
planar1_YV12_fn lumToYV12
int32_t chrMmxFilter[4 *MAX_FILTER_SIZE]
int dstY
Last destination vertical line output from last slice.
int srcColorspaceTable[4]
int32_t * vLumFilterPos
Array of vertical filter starting positions for each dst[i] for luma/alpha planes.
int chrDstVSubSample
Binary logarithm of vertical subsampling factor between luma/alpha and chroma planes in destination i...
uint32_t pal_yuv[256]
SwsColorXform rgb2xyz
int chrSrcH
Height of source chroma planes.
void(* hyscale_fast)(SwsInternal *c, int16_t *dst, int dstWidth, const uint8_t *src, int srcW, int xInc)
Scale one horizontal line of input data using a bilinear filter to produce one line of output data.
SwsContext * cascaded_context[3]
int srcFormatBpp
Number of bits per pixel of the source pixel format.
SwsContext ** slice_ctx
SwsColorFunc xyz12Torgb48
ptrdiff_t uv_offx2
offset (in bytes) between u and v planes
int vChrDrop
Binary logarithm of extra vertical subsampling factor in source image chroma planes specified by user...
int hChrFilterSize
Horizontal filter size for chroma pixels.
const uint8_t * chrDither8
uint64_t greenDither
SwsColorFunc rgb48Toxyz12
struct SwsFilterDescriptor * desc
SwsFunc convert_unscaled
Note that src, dst, srcStride, dstStride will be copied in the sws_scale() wrapper so they can be fre...
uint8_t * table_bU[256+2 *YUVRGB_TABLE_HEADROOM]
int chrSrcHSubSample
Binary logarithm of horizontal subsampling factor between luma/alpha and chroma planes in source imag...
int64_t chrConvertRange_offset
int chrSrcW
Width of source chroma planes.
yuv2packedX_fn yuv2packedX
RangeList src_ranges
uint64_t blueDither
int chrDstH
Height of destination chroma planes.
uint8_t * table_rV[256+2 *YUVRGB_TABLE_HEADROOM]
int needs_hcscale
Set if there are chroma planes to be converted.
atomic_int stride_unaligned_warned
int32_t * hLumFilterPos
Array of horizontal filter starting positions for each dst[i] for luma/alpha planes.
SwsColorXform xyz2rgb
int chrSrcVSubSample
Binary logarithm of vertical subsampling factor between luma/alpha and chroma planes in source image.
uint8_t * cascaded_tmp[2][4]
void * input_opaque
Opaque data pointer passed to all input functions.
uint16_t * gamma
FFFramePool frame_pool
struct SwsSlice * slice
uint8_t * rgb0_scratch
planar1_YV12_fn alpToYV12
int16_t * vChrFilter
Array of vertical filter coefficients for chroma planes.
unsigned int xyz_scratch_allocated
ptrdiff_t uv_off
offset (in pixels) between u and v planes
int table_gV[256+2 *YUVRGB_TABLE_HEADROOM]
int vChrFilterSize
Vertical filter size for chroma pixels.
void(* hyScale)(SwsInternal *c, int16_t *dst, int dstW, const uint8_t *src, const int16_t *filter, const int32_t *filterPos, int filterSize)
Scale one horizontal line of input data using a filter over the input lines, to produce one (differen...
int lastInChrBuf
Last scaled horizontal chroma line from source in the ring buffer.
uint16_t * inv_gamma
uint8_t * lumMmxextFilterCode
Runtime-generated MMXEXT horizontal fast bilinear scaler code for luma/alpha planes.
int64_t lumConvertRange_offset
void(* hcScale)(SwsInternal *c, int16_t *dst, int dstW, const uint8_t *src, const int16_t *filter, const int32_t *filterPos, int filterSize)
void(* hcscale_fast)(SwsInternal *c, int16_t *dst1, int16_t *dst2, int dstWidth, const uint8_t *src1, const uint8_t *src2, int srcW, int xInc)
const uint8_t * lumDither8
int sliceDir
Direction that slices are fed to the scaler (1 = top-to-bottom, -1 = bottom-to-top).
Half2FloatTables * h2f_tables
int32_t * vChrFilterPos
Array of vertical filter starting positions for each dst[i] for chroma planes.
int hLumFilterSize
Horizontal filter size for luma/alpha pixels.
float uint2float_lut[256]
uint16_t dither16[8]
yuv2anyX_fn yuv2anyX
int vLumFilterSize
Vertical filter size for luma/alpha pixels.
atomic_int data_unaligned_warned
int dstFormatBpp
Number of bits per pixel of the destination pixel format.
int32_t * hChrFilterPos
Array of horizontal filter starting positions for each dst[i] for chroma planes.
yuv2packed2_fn yuv2packed2
unsigned int dst_slice_align
SwsContext * parent
uint32_t lumConvertRange_coeff
SwsGraph * graph[2]
int16_t * hLumFilter
Array of horizontal filter coefficients for luma/alpha planes.
SwsContext opts
yuv2packed1_fn yuv2packed1
int16_t * vLumFilter
Array of vertical filter coefficients for luma/alpha planes.
void(* lumConvertRange)(int16_t *dst, int width, uint32_t coeff, int64_t offset)
Color range conversion functions if needed.
AVFrame * frame_src
AVSliceThread * slicethread
int32_t alpMmxFilter[4 *MAX_FILTER_SIZE]
uint8_t * chrMmxextFilterCode
Runtime-generated MMXEXT horizontal fast bilinear scaler code for chroma planes.
uint8_t * table_gU[256+2 *YUVRGB_TABLE_HEADROOM]
yuv2planarX_fn yuv2planeX
int chrDstHSubSample
Binary logarithm of horizontal subsampling factor between luma/alpha and chroma planes in destination...
planarX2_YV12_fn readChrPlanar
planarX_YV12_fn readAlpPlanar
yuv2interleavedX_fn yuv2nv12cX
uint8_t * xyz_scratch
int32_t input_rgb2yuv_table[16+40 *4]
void(* chrConvertRange)(int16_t *dst1, int16_t *dst2, int width, uint32_t coeff, int64_t offset)
int dstColorspaceTable[4]
planarX_YV12_fn readLumPlanar
Functions to read planar input, such as planar RGB, and convert internally to Y/UV/A.
int chrDstW
Width of destination chroma planes.
AVFrame * frame_dst
uint16_t * in
uint16_t * out
Slice plane.
int available_lines
max number of lines that can be hold by this plane
uint8_t ** tmp
Tmp line buffer used by mmx code.
int sliceY
index of first line
int sliceH
number of lines
uint8_t ** line
line buffer
Struct which defines a slice of an image to be scaled or an output for a scaled slice.
int is_ring
flag to identify if this slice is a ring buffer
enum AVPixelFormat fmt
planes pixel format
SwsPlane plane[MAX_SLICE_PLANES]
color planes
int h_chr_sub_sample
horizontal chroma subsampling factor
int should_free_lines
flag to identify if there are dynamic allocated lines
int width
Slice line width.
int v_chr_sub_sample
vertical chroma subsampling factor
#define stride
const uint8_t ff_dither_8x8_128[9][8]
Definition swscale.c:42
external API header
#define YUVRGB_TABLE_HEADROOM
void ff_init_vscale_pfn(SwsInternal *c, yuv2planar1_fn yuv2plane1, yuv2planarX_fn yuv2planeX, yuv2interleavedX_fn yuv2nv12cX, yuv2packed1_fn yuv2packed1, yuv2packed2_fn yuv2packed2, yuv2packedX_fn yuv2packedX, yuv2anyX_fn yuv2anyX, int use_mmx)
setup vertical scaler functions
Definition vscale.c:258
static av_always_inline int isBGRinInt(enum AVPixelFormat pix_fmt)
void ff_updateMMXDitherTables(SwsInternal *c, int dstY)
Definition swscale.c:60
void(* yuv2packed1_fn)(SwsInternal *c, const int16_t *lumSrc, const int16_t *chrUSrc[2], const int16_t *chrVSrc[2], const int16_t *alpSrc, uint8_t *dest, int dstW, int uvalpha, int y)
Write one line of horizontally scaled Y/U/V/A to packed-pixel YUV/RGB output without any additional v...
void(* yuv2planarX_fn)(const int16_t *filter, int filterSize, const int16_t **src, uint8_t *dest, int dstW, const uint8_t *dither, int offset)
Write one line of horizontally scaled data to planar output with multi-point vertical scaling between...
SwsFunc ff_yuv2rgb_init_ppc(SwsInternal *c)
void ff_get_unscaled_swscale_ppc(SwsInternal *c)
int ff_range_add(RangeList *r, unsigned int start, unsigned int len)
Definition utils.c:2384
static av_always_inline int isBayer(enum AVPixelFormat pix_fmt)
int ff_init_desc_cfmt_convert(SwsFilterDescriptor *desc, SwsSlice *src, SwsSlice *dst, uint32_t *pal)
initializes chr pixel format conversion descriptor
Definition hscale.c:238
int ff_sws_alphablendaway(SwsInternal *c, const uint8_t *const src[], const int srcStride[], int srcSliceY, int srcSliceH, uint8_t *const dst[], const int dstStride[])
Definition alphablend.c:23
static void fillPlane16(uint8_t *plane, int stride, int width, int height, int y, int alpha, int bits, const int big_endian)
int ff_sws_init_single_context(SwsContext *sws, SwsFilter *srcFilter, SwsFilter *dstFilter)
Definition utils.c:1137
const uint64_t ff_dither4[2]
Definition swscale.c:33
void ff_hcscale_fast_c(SwsInternal *c, int16_t *dst1, int16_t *dst2, int dstWidth, const uint8_t *src1, const uint8_t *src2, int srcW, int xInc)
static av_always_inline int isPlanar(enum AVPixelFormat pix_fmt)
void ff_sws_init_swscale_arm(SwsInternal *c)
Definition swscale.c:33
void(* planar2_YV12_fn)(uint8_t *dst, uint8_t *dst2, const uint8_t *src, const uint8_t *src2, const uint8_t *src3, int width, uint32_t *pal, void *opaque)
Unscaled conversion of chroma plane to YV12 for horizontal scaler.
av_cold void ff_sws_init_range_convert_riscv(SwsInternal *c)
Definition swscale.c:29
static av_always_inline int isSwappedChroma(enum AVPixelFormat pix_fmt)
int ff_init_hscaler_mmxext(int dstW, int xInc, uint8_t *filterCode, int16_t *filter, int32_t *filterPos, int numSplits)
int ff_shuffle_filter_coefficients(SwsInternal *c, int *filterPos, int filterSize, int16_t *filter, int dstW)
Definition utils.c:97
static av_always_inline int isFloat(enum AVPixelFormat pix_fmt)
void ff_sws_init_scale(SwsInternal *c)
Definition swscale.c:697
int ff_init_vscale(SwsInternal *c, SwsFilterDescriptor *desc, SwsSlice *src, SwsSlice *dst)
initializes vertical scaling descriptors
Definition vscale.c:214
static av_always_inline int isPlanarYUV(enum AVPixelFormat pix_fmt)
void(* yuv2packedX_fn)(SwsInternal *c, const int16_t *lumFilter, const int16_t **lumSrc, int lumFilterSize, const int16_t *chrFilter, const int16_t **chrUSrc, const int16_t **chrVSrc, int chrFilterSize, const int16_t **alpSrc, uint8_t *dest, int dstW, int y)
Write one line of horizontally scaled Y/U/V/A to packed-pixel YUV/RGB output by doing multi-point ver...
void(* planar1_YV12_fn)(uint8_t *dst, const uint8_t *src, const uint8_t *src2, const uint8_t *src3, int width, uint32_t *pal, void *opaque)
Unscaled conversion of luma/alpha plane to YV12 for horizontal scaler.
int ff_sws_slice_worker(void *priv, int jobnr, int threadnr, int nb_jobs, int nb_threads)
Definition swscale.c:1645
av_cold void ff_sws_init_xyzdsp_aarch64(SwsInternal *c)
Definition swscale.c:339
static av_always_inline int isDataInHighBits(enum AVPixelFormat pix_fmt)
SwsFunc ff_yuv2rgb_get_func_ptr(SwsInternal *c)
void ff_sws_init_swscale_aarch64(SwsInternal *c)
Definition swscale.c:350
int ff_init_desc_hscale(SwsFilterDescriptor *desc, SwsSlice *src, SwsSlice *dst, uint16_t *filter, int *filter_pos, int filter_size, int xInc)
initializes lum horizontal scaling descriptor
Definition hscale.c:146
#define MAX_SLICE_PLANES
int ff_rotate_slice(SwsSlice *s, int lum, int chr)
Definition slice.c:120
static av_always_inline int isAnyRGB(enum AVPixelFormat pix_fmt)
#define DITHER32_INT
void ff_sws_init_swscale_vsx(SwsInternal *c)
void ff_sws_init_swscale_ppc(SwsInternal *c)
SwsFunc ff_yuv2rgb_init_x86(SwsInternal *c)
Definition yuv2rgb.c:241
int ff_swscale(SwsInternal *c, const uint8_t *const src[], const int srcStride[], int srcSliceY, int srcSliceH, uint8_t *const dst[], const int dstStride[], int dstSliceY, int dstSliceH)
Definition swscale.c:263
void ff_sws_init_swscale_x86(SwsInternal *c)
Definition swscale.c:485
int ff_init_gamma_convert(SwsFilterDescriptor *desc, SwsSlice *src, uint16_t *table)
initializes gamma conversion descriptor
Definition gamma.c:59
static av_always_inline int is16BPS(enum AVPixelFormat pix_fmt)
void ff_get_unscaled_swscale_arm(SwsInternal *c)
int ff_init_slice_from_src(SwsSlice *s, uint8_t *const src[4], const int stride[4], int srcW, int lumY, int lumH, int chrY, int chrH, int relative)
Definition slice.c:148
static av_always_inline int usePal(enum AVPixelFormat pix_fmt)
SwsBackend ff_sws_enabled_backends(const SwsContext *ctx)
Definition utils.c:60
void ff_hyscale_fast_mmxext(SwsInternal *c, int16_t *dst, int dstWidth, const uint8_t *src, int srcW, int xInc)
void(* yuv2planar1_fn)(const int16_t *src, uint8_t *dest, int dstW, const uint8_t *dither, int offset)
Write one line of horizontally scaled data to planar output without any additional vertical scaling (...
int ff_sws_thread_exec(void *priv, int(*func)(void *priv, int jobnr, int threadnr, int nb_jobs, int nb_threads), int nb_threads, int nb_jobs)
Helper for dispatching a single function across multiple threads.
Definition utils.c:2444
static av_always_inline int isGray(enum AVPixelFormat pix_fmt)
void(* planarX_YV12_fn)(uint8_t *dst, const uint8_t *src[4], int width, int32_t *rgb2yuv, void *opaque)
Unscaled conversion of arbitrary planar data (e.g.
void ff_sws_init_swscale_loongarch(SwsInternal *c)
int ff_init_desc_fmt_convert(SwsFilterDescriptor *desc, SwsSlice *src, SwsSlice *dst, uint32_t *pal)
initializes lum pixel format conversion descriptor
Definition hscale.c:129
static SwsInternal * sws_internal(const SwsContext *sws)
static av_always_inline int isRGB(enum AVPixelFormat pix_fmt)
void ff_get_unscaled_swscale(SwsInternal *c)
Set c->convert_unscaled to an unscaled converter if one exists for the specific source and destinatio...
const uint64_t ff_dither8[2]
Definition swscale.c:37
void ff_yuv2rgb_init_tables_ppc(SwsInternal *c, const int inv_table[4], int brightness, int contrast, int saturation)
int ff_sws_init_altivec_bufs(SwsInternal *c)
void ff_sws_init_output_funcs(SwsInternal *c, yuv2planar1_fn *yuv2plane1, yuv2planarX_fn *yuv2planeX, yuv2interleavedX_fn *yuv2nv12cX, yuv2packed1_fn *yuv2packed1, yuv2packed2_fn *yuv2packed2, yuv2packedX_fn *yuv2packedX, yuv2anyX_fn *yuv2anyX)
Definition output.c:3291
static av_always_inline int isPacked(enum AVPixelFormat pix_fmt)
void ff_sws_init_swscale_riscv(SwsInternal *c)
Definition swscale.c:74
int(* SwsFunc)(SwsInternal *c, const uint8_t *const src[], const int srcStride[], int srcSliceY, int srcSliceH, uint8_t *const dst[], const int dstStride[])
void ff_copyPlane(const uint8_t *src, int srcStride, int srcSliceY, int srcSliceH, int width, uint8_t *dst, int dstStride)
static av_always_inline int isSemiPlanarYUV(enum AVPixelFormat pix_fmt)
int ff_init_desc_chscale(SwsFilterDescriptor *desc, SwsSlice *src, SwsSlice *dst, uint16_t *filter, int *filter_pos, int filter_size, int xInc)
initializes chr horizontal scaling descriptor
Definition hscale.c:253
void ff_hyscale_fast_c(SwsInternal *c, int16_t *dst, int dstWidth, const uint8_t *src, int srcW, int xInc)
SwsFunc ff_yuv2rgb_init_aarch64(SwsInternal *c)
static av_always_inline int isRGBinInt(enum AVPixelFormat pix_fmt)
static av_always_inline int isFloat16(enum AVPixelFormat pix_fmt)
av_cold void ff_sws_init_range_convert_x86(SwsInternal *c)
Definition swscale.c:469
void ff_sws_free_altivec_bufs(SwsInternal *c)
void(* yuv2anyX_fn)(SwsInternal *c, const int16_t *lumFilter, const int16_t **lumSrc, int lumFilterSize, const int16_t *chrFilter, const int16_t **chrUSrc, const int16_t **chrVSrc, int chrFilterSize, const int16_t **alpSrc, uint8_t **dest, int dstW, int y)
Write one line of horizontally scaled Y/U/V/A to YUV/RGB output by doing multi-point vertical scaling...
static void fillPlane32(uint8_t *plane, int stride, int width, int height, int y, int alpha, int bits, const int big_endian, int is_float)
int ff_init_desc_no_chr(SwsFilterDescriptor *desc, SwsSlice *src, SwsSlice *dst)
Definition hscale.c:284
av_cold int ff_sws_fill_xyztables(SwsInternal *c)
Definition utils.c:735
static av_always_inline int isALPHA(enum AVPixelFormat pix_fmt)
void ff_sws_init_input_funcs(SwsInternal *c, planar1_YV12_fn *lumToYV12, planar1_YV12_fn *alpToYV12, planar2_YV12_fn *chrToYV12, planarX_YV12_fn *readLumPlanar, planarX_YV12_fn *readAlpPlanar, planarX2_YV12_fn *readChrPlanar)
#define MAX_FILTER_SIZE
void(* yuv2packed2_fn)(SwsInternal *c, const int16_t *lumSrc[2], const int16_t *chrUSrc[2], const int16_t *chrVSrc[2], const int16_t *alpSrc[2], uint8_t *dest, int dstW, int yalpha, int uvalpha, int y)
Write one line of horizontally scaled Y/U/V/A to packed-pixel YUV/RGB output by doing bilinear scalin...
av_cold void ff_sws_init_range_convert(SwsInternal *c)
Definition swscale.c:626
void ff_get_unscaled_swscale_aarch64(SwsInternal *c)
int ff_free_filters(SwsInternal *c)
Definition slice.c:386
static av_always_inline int isPackedRGB(enum AVPixelFormat pix_fmt)
void(* SwsColorFunc)(const SwsInternal *c, uint8_t *dst, int dst_stride, const uint8_t *src, int src_stride, int w, int h)
void(* yuv2interleavedX_fn)(enum AVPixelFormat dstFormat, const uint8_t *chrDither, const int16_t *chrFilter, int chrFilterSize, const int16_t **chrUSrc, const int16_t **chrVSrc, uint8_t *dest, int dstW)
Write one line of horizontally scaled chroma to interleaved output with multi-point vertical scaling ...
av_cold void ff_sws_init_xyzdsp(SwsInternal *c)
Definition swscale.c:863
SwsFunc ff_yuv2rgb_init_loongarch(SwsInternal *c)
int ff_init_filters(SwsInternal *c)
Definition slice.c:246
static av_always_inline int isBE(enum AVPixelFormat pix_fmt)
static av_always_inline int isPlanarRGB(enum AVPixelFormat pix_fmt)
av_cold void ff_sws_init_range_convert_loongarch(SwsInternal *c)
int ff_yuv2rgb_c_init_tables(SwsInternal *c, const int inv_table[4], int fullRange, int brightness, int contrast, int saturation)
static av_always_inline int isBayer16BPS(enum AVPixelFormat pix_fmt)
static av_always_inline int is32BPS(enum AVPixelFormat pix_fmt)
void ff_update_palette(SwsInternal *c, const uint32_t *pal)
Definition swscale.c:873
void ff_hcscale_fast_mmxext(SwsInternal *c, int16_t *dst1, int16_t *dst2, int dstWidth, const uint8_t *src1, const uint8_t *src2, int srcW, int xInc)
static av_always_inline int isNBPS(enum AVPixelFormat pix_fmt)
av_cold void ff_sws_init_range_convert_aarch64(SwsInternal *c)
Definition swscale.c:314
void(* planarX2_YV12_fn)(uint8_t *dst, uint8_t *dst2, const uint8_t *src[4], int width, int32_t *rgb2yuv, void *opaque)
const int32_t ff_yuv2rgb_coeffs[11][4]
Definition yuv2rgb.c:47
static av_always_inline int isYUV(enum AVPixelFormat pix_fmt)
static void FUNC yuv2planeX(const int16_t *filter, int filterSize, const int16_t **src, uint8_t *dest, int dstW, const uint8_t *dither, int offset)
void(* filter)(uint8_t *src, ptrdiff_t stride, int qscale)
Definition h263dsp.c:29
#define src1
Definition h264pred.c:141
#define src
Definition vp8dsp.c:248
static AVFormatContext * ctx
Definition movenc.c:49
#define height
Definition dsp.h:89
#define width
Definition dsp.h:89
static double lum(void *priv, double x, double y, int plane)
Definition vf_fftfilt.c:107
static const uint16_t dither[8][8]
Definition vf_gradfun.c:46
static const double coeff[2][5]
int len
static double c[64]