]> git.sesse.net Git - ffmpeg/blob - libswscale/swscale_internal.h
swscale: fix compile on ppc.
[ffmpeg] / libswscale / swscale_internal.h
1 /*
2  * Copyright (C) 2001-2003 Michael Niedermayer <michaelni@gmx.at>
3  *
4  * This file is part of Libav.
5  *
6  * Libav 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  * Libav 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 Libav; 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 "config.h"
25
26 #if HAVE_ALTIVEC_H
27 #include <altivec.h>
28 #endif
29
30 #include "libavutil/avutil.h"
31
32 #define STR(s)         AV_TOSTRING(s) //AV_STRINGIFY is too long
33
34 #define FAST_BGR2YV12 //use 7-bit instead of 15-bit coefficients
35
36 #define MAX_FILTER_SIZE 256
37
38 #if HAVE_BIGENDIAN
39 #define ALT32_CORR (-1)
40 #else
41 #define ALT32_CORR   1
42 #endif
43
44 #if ARCH_X86_64
45 #   define APCK_PTR2 8
46 #   define APCK_COEF 16
47 #   define APCK_SIZE 24
48 #else
49 #   define APCK_PTR2 4
50 #   define APCK_COEF 8
51 #   define APCK_SIZE 16
52 #endif
53
54 struct SwsContext;
55
56 typedef int (*SwsFunc)(struct SwsContext *context, const uint8_t* src[],
57                        int srcStride[], int srcSliceY, int srcSliceH,
58                        uint8_t* dst[], int dstStride[]);
59
60 /* This struct should be aligned on at least a 32-byte boundary. */
61 typedef struct SwsContext {
62     /**
63      * info on struct for av_log
64      */
65     const AVClass *av_class;
66
67     /**
68      * Note that src, dst, srcStride, dstStride will be copied in the
69      * sws_scale() wrapper so they can be freely modified here.
70      */
71     SwsFunc swScale;
72     int srcW;                     ///< Width  of source      luma/alpha planes.
73     int srcH;                     ///< Height of source      luma/alpha planes.
74     int dstH;                     ///< Height of destination luma/alpha planes.
75     int chrSrcW;                  ///< Width  of source      chroma     planes.
76     int chrSrcH;                  ///< Height of source      chroma     planes.
77     int chrDstW;                  ///< Width  of destination chroma     planes.
78     int chrDstH;                  ///< Height of destination chroma     planes.
79     int lumXInc, chrXInc;
80     int lumYInc, chrYInc;
81     enum PixelFormat dstFormat;   ///< Destination pixel format.
82     enum PixelFormat srcFormat;   ///< Source      pixel format.
83     int dstFormatBpp;             ///< Number of bits per pixel of the destination pixel format.
84     int srcFormatBpp;             ///< Number of bits per pixel of the source      pixel format.
85     int chrSrcHSubSample;         ///< Binary logarithm of horizontal subsampling factor between luma/alpha and chroma planes in source      image.
86     int chrSrcVSubSample;         ///< Binary logarithm of vertical   subsampling factor between luma/alpha and chroma planes in source      image.
87     int chrDstHSubSample;         ///< Binary logarithm of horizontal subsampling factor between luma/alpha and chroma planes in destination image.
88     int chrDstVSubSample;         ///< Binary logarithm of vertical   subsampling factor between luma/alpha and chroma planes in destination image.
89     int vChrDrop;                 ///< Binary logarithm of extra vertical subsampling factor in source image chroma planes specified by user.
90     int sliceDir;                 ///< Direction that slices are fed to the scaler (1 = top-to-bottom, -1 = bottom-to-top).
91     double param[2];              ///< Input parameters for scaling algorithms that need them.
92
93     uint32_t pal_yuv[256];
94     uint32_t pal_rgb[256];
95
96     /**
97      * @name Scaled horizontal lines ring buffer.
98      * The horizontal scaler keeps just enough scaled lines in a ring buffer
99      * so they may be passed to the vertical scaler. The pointers to the
100      * allocated buffers for each line are duplicated in sequence in the ring
101      * buffer to simplify indexing and avoid wrapping around between lines
102      * inside the vertical scaler code. The wrapping is done before the
103      * vertical scaler is called.
104      */
105     //@{
106     int16_t **lumPixBuf;          ///< Ring buffer for scaled horizontal luma   plane lines to be fed to the vertical scaler.
107     int16_t **chrUPixBuf;         ///< Ring buffer for scaled horizontal chroma plane lines to be fed to the vertical scaler.
108     int16_t **chrVPixBuf;         ///< Ring buffer for scaled horizontal chroma plane lines to be fed to the vertical scaler.
109     int16_t **alpPixBuf;          ///< Ring buffer for scaled horizontal alpha  plane lines to be fed to the vertical scaler.
110     int       vLumBufSize;        ///< Number of vertical luma/alpha lines allocated in the ring buffer.
111     int       vChrBufSize;        ///< Number of vertical chroma     lines allocated in the ring buffer.
112     int       lastInLumBuf;       ///< Last scaled horizontal luma/alpha line from source in the ring buffer.
113     int       lastInChrBuf;       ///< Last scaled horizontal chroma     line from source in the ring buffer.
114     int       lumBufIndex;        ///< Index in ring buffer of the last scaled horizontal luma/alpha line from source.
115     int       chrBufIndex;        ///< Index in ring buffer of the last scaled horizontal chroma     line from source.
116     //@}
117
118     uint8_t *formatConvBuffer;
119
120     /**
121      * @name Horizontal and vertical filters.
122      * To better understand the following fields, here is a pseudo-code of
123      * their usage in filtering a horizontal line:
124      * @code
125      * for (i = 0; i < width; i++) {
126      *     dst[i] = 0;
127      *     for (j = 0; j < filterSize; j++)
128      *         dst[i] += src[ filterPos[i] + j ] * filter[ filterSize * i + j ];
129      *     dst[i] >>= FRAC_BITS; // The actual implementation is fixed-point.
130      * }
131      * @endcode
132      */
133     //@{
134     int16_t *hLumFilter;          ///< Array of horizontal filter coefficients for luma/alpha planes.
135     int16_t *hChrFilter;          ///< Array of horizontal filter coefficients for chroma     planes.
136     int16_t *vLumFilter;          ///< Array of vertical   filter coefficients for luma/alpha planes.
137     int16_t *vChrFilter;          ///< Array of vertical   filter coefficients for chroma     planes.
138     int16_t *hLumFilterPos;       ///< Array of horizontal filter starting positions for each dst[i] for luma/alpha planes.
139     int16_t *hChrFilterPos;       ///< Array of horizontal filter starting positions for each dst[i] for chroma     planes.
140     int16_t *vLumFilterPos;       ///< Array of vertical   filter starting positions for each dst[i] for luma/alpha planes.
141     int16_t *vChrFilterPos;       ///< Array of vertical   filter starting positions for each dst[i] for chroma     planes.
142     int      hLumFilterSize;      ///< Horizontal filter size for luma/alpha pixels.
143     int      hChrFilterSize;      ///< Horizontal filter size for chroma     pixels.
144     int      vLumFilterSize;      ///< Vertical   filter size for luma/alpha pixels.
145     int      vChrFilterSize;      ///< Vertical   filter size for chroma     pixels.
146     //@}
147
148     int lumMmx2FilterCodeSize;    ///< Runtime-generated MMX2 horizontal fast bilinear scaler code size for luma/alpha planes.
149     int chrMmx2FilterCodeSize;    ///< Runtime-generated MMX2 horizontal fast bilinear scaler code size for chroma     planes.
150     uint8_t *lumMmx2FilterCode;   ///< Runtime-generated MMX2 horizontal fast bilinear scaler code for luma/alpha planes.
151     uint8_t *chrMmx2FilterCode;   ///< Runtime-generated MMX2 horizontal fast bilinear scaler code for chroma     planes.
152
153     int canMMX2BeUsed;
154
155     int dstY;                     ///< Last destination vertical line output from last slice.
156     int flags;                    ///< Flags passed by the user to select scaler algorithm, optimizations, subsampling, etc...
157     void * yuvTable;            // pointer to the yuv->rgb table start so it can be freed()
158     uint8_t * table_rV[256];
159     uint8_t * table_gU[256];
160     int    table_gV[256];
161     uint8_t * table_bU[256];
162
163     //Colorspace stuff
164     int contrast, brightness, saturation;    // for sws_getColorspaceDetails
165     int srcColorspaceTable[4];
166     int dstColorspaceTable[4];
167     int srcRange;                 ///< 0 = MPG YUV range, 1 = JPG YUV range (source      image).
168     int dstRange;                 ///< 0 = MPG YUV range, 1 = JPG YUV range (destination image).
169     int yuv2rgb_y_offset;
170     int yuv2rgb_y_coeff;
171     int yuv2rgb_v2r_coeff;
172     int yuv2rgb_v2g_coeff;
173     int yuv2rgb_u2g_coeff;
174     int yuv2rgb_u2b_coeff;
175
176 #define RED_DITHER            "0*8"
177 #define GREEN_DITHER          "1*8"
178 #define BLUE_DITHER           "2*8"
179 #define Y_COEFF               "3*8"
180 #define VR_COEFF              "4*8"
181 #define UB_COEFF              "5*8"
182 #define VG_COEFF              "6*8"
183 #define UG_COEFF              "7*8"
184 #define Y_OFFSET              "8*8"
185 #define U_OFFSET              "9*8"
186 #define V_OFFSET              "10*8"
187 #define LUM_MMX_FILTER_OFFSET "11*8"
188 #define CHR_MMX_FILTER_OFFSET "11*8+4*4*256"
189 #define DSTW_OFFSET           "11*8+4*4*256*2" //do not change, it is hardcoded in the ASM
190 #define ESP_OFFSET            "11*8+4*4*256*2+8"
191 #define VROUNDER_OFFSET       "11*8+4*4*256*2+16"
192 #define U_TEMP                "11*8+4*4*256*2+24"
193 #define V_TEMP                "11*8+4*4*256*2+32"
194 #define Y_TEMP                "11*8+4*4*256*2+40"
195 #define ALP_MMX_FILTER_OFFSET "11*8+4*4*256*2+48"
196 #define UV_OFF                "11*8+4*4*256*3+48"
197
198     DECLARE_ALIGNED(8, uint64_t, redDither);
199     DECLARE_ALIGNED(8, uint64_t, greenDither);
200     DECLARE_ALIGNED(8, uint64_t, blueDither);
201
202     DECLARE_ALIGNED(8, uint64_t, yCoeff);
203     DECLARE_ALIGNED(8, uint64_t, vrCoeff);
204     DECLARE_ALIGNED(8, uint64_t, ubCoeff);
205     DECLARE_ALIGNED(8, uint64_t, vgCoeff);
206     DECLARE_ALIGNED(8, uint64_t, ugCoeff);
207     DECLARE_ALIGNED(8, uint64_t, yOffset);
208     DECLARE_ALIGNED(8, uint64_t, uOffset);
209     DECLARE_ALIGNED(8, uint64_t, vOffset);
210     int32_t  lumMmxFilter[4*MAX_FILTER_SIZE];
211     int32_t  chrMmxFilter[4*MAX_FILTER_SIZE];
212     int dstW;                     ///< Width  of destination luma/alpha planes.
213     DECLARE_ALIGNED(8, uint64_t, esp);
214     DECLARE_ALIGNED(8, uint64_t, vRounder);
215     DECLARE_ALIGNED(8, uint64_t, u_temp);
216     DECLARE_ALIGNED(8, uint64_t, v_temp);
217     DECLARE_ALIGNED(8, uint64_t, y_temp);
218     int32_t  alpMmxFilter[4*MAX_FILTER_SIZE];
219     DECLARE_ALIGNED(8, ptrdiff_t, uv_off); ///< offset (in pixels) between u and v planes
220
221 #if HAVE_ALTIVEC
222     vector signed short   CY;
223     vector signed short   CRV;
224     vector signed short   CBU;
225     vector signed short   CGU;
226     vector signed short   CGV;
227     vector signed short   OY;
228     vector unsigned short CSHIFT;
229     vector signed short   *vYCoeffsBank, *vCCoeffsBank;
230 #endif
231
232 #if ARCH_BFIN
233     DECLARE_ALIGNED(4, uint32_t, oy);
234     DECLARE_ALIGNED(4, uint32_t, oc);
235     DECLARE_ALIGNED(4, uint32_t, zero);
236     DECLARE_ALIGNED(4, uint32_t, cy);
237     DECLARE_ALIGNED(4, uint32_t, crv);
238     DECLARE_ALIGNED(4, uint32_t, rmask);
239     DECLARE_ALIGNED(4, uint32_t, cbu);
240     DECLARE_ALIGNED(4, uint32_t, bmask);
241     DECLARE_ALIGNED(4, uint32_t, cgu);
242     DECLARE_ALIGNED(4, uint32_t, cgv);
243     DECLARE_ALIGNED(4, uint32_t, gmask);
244 #endif
245
246 #if HAVE_VIS
247     DECLARE_ALIGNED(8, uint64_t, sparc_coeffs)[10];
248 #endif
249
250     /* function pointers for swScale() */
251     void (*yuv2nv12X  )(struct SwsContext *c,
252                         const int16_t *lumFilter, const int16_t **lumSrc, int lumFilterSize,
253                         const int16_t *chrFilter, const int16_t **chrUSrc,
254                         const int16_t **chrVSrc, int chrFilterSize,
255                         uint8_t *dest, uint8_t *uDest,
256                         int dstW, int chrDstW, int dstFormat);
257     void (*yuv2yuv1   )(struct SwsContext *c,
258                         const int16_t *lumSrc, const int16_t *chrUSrc,
259                         const int16_t *chrVSrc, const int16_t *alpSrc,
260                         uint8_t *dest,
261                         uint8_t *uDest, uint8_t *vDest, uint8_t *aDest,
262                         long dstW, long chrDstW);
263     void (*yuv2yuvX   )(struct SwsContext *c,
264                         const int16_t *lumFilter, const int16_t **lumSrc, int lumFilterSize,
265                         const int16_t *chrFilter, const int16_t **chrUSrc,
266                         const int16_t **chrVSrc, int chrFilterSize,
267                         const int16_t **alpSrc,
268                         uint8_t *dest,
269                         uint8_t *uDest, uint8_t *vDest, uint8_t *aDest,
270                         long dstW, long chrDstW);
271     void (*yuv2packed1)(struct SwsContext *c,
272                         const uint16_t *buf0,
273                         const uint16_t *ubuf0, const uint16_t *ubuf1,
274                         const uint16_t *vbuf0, const uint16_t *vbuf1,
275                         const uint16_t *abuf0,
276                         uint8_t *dest,
277                         int dstW, int uvalpha, int dstFormat, int flags, int y);
278     void (*yuv2packed2)(struct SwsContext *c,
279                         const uint16_t *buf0, const uint16_t *buf1,
280                         const uint16_t *ubuf0, const uint16_t *ubuf1,
281                         const uint16_t *vbuf0, const uint16_t *vbuf1,
282                         const uint16_t *abuf0, const uint16_t *abuf1,
283                         uint8_t *dest,
284                         int dstW, int yalpha, int uvalpha, int y);
285     void (*yuv2packedX)(struct SwsContext *c,
286                         const int16_t *lumFilter, const int16_t **lumSrc, int lumFilterSize,
287                         const int16_t *chrFilter, const int16_t **chrUSrc,
288                         const int16_t **chrVSrc, int chrFilterSize,
289                         const int16_t **alpSrc, uint8_t *dest,
290                         long dstW, long dstY);
291
292     void (*lumToYV12)(uint8_t *dst, const uint8_t *src,
293                       long width, uint32_t *pal); ///< Unscaled conversion of luma plane to YV12 for horizontal scaler.
294     void (*alpToYV12)(uint8_t *dst, const uint8_t *src,
295                       long width, uint32_t *pal); ///< Unscaled conversion of alpha plane to YV12 for horizontal scaler.
296     void (*chrToYV12)(uint8_t *dstU, uint8_t *dstV,
297                       const uint8_t *src1, const uint8_t *src2,
298                       long width, uint32_t *pal); ///< Unscaled conversion of chroma planes to YV12 for horizontal scaler.
299     void (*hyscale_fast)(struct SwsContext *c,
300                          int16_t *dst, long dstWidth,
301                          const uint8_t *src, int srcW, int xInc);
302     void (*hcscale_fast)(struct SwsContext *c,
303                          int16_t *dst1, int16_t *dst2, long dstWidth,
304                          const uint8_t *src1, const uint8_t *src2,
305                          int srcW, int xInc);
306
307     void (*hScale)(int16_t *dst, int dstW, const uint8_t *src, int srcW,
308                    int xInc, const int16_t *filter, const int16_t *filterPos,
309                    long filterSize);
310
311     void (*lumConvertRange)(uint16_t *dst, int width); ///< Color range conversion function for luma plane if needed.
312     void (*chrConvertRange)(uint16_t *dst1, uint16_t *dst2, int width); ///< Color range conversion function for chroma planes if needed.
313
314     int lumSrcOffset; ///< Offset given to luma src pointers passed to horizontal input functions.
315     int chrSrcOffset; ///< Offset given to chroma src pointers passed to horizontal input functions.
316     int alpSrcOffset; ///< Offset given to alpha src pointers passed to horizontal input functions.
317
318     int needs_hcscale; ///< Set if there are chroma planes to be converted.
319
320 } SwsContext;
321 //FIXME check init (where 0)
322
323 SwsFunc ff_yuv2rgb_get_func_ptr(SwsContext *c);
324 int ff_yuv2rgb_c_init_tables(SwsContext *c, const int inv_table[4],
325                              int fullRange, int brightness,
326                              int contrast, int saturation);
327
328 void ff_yuv2rgb_init_tables_altivec(SwsContext *c, const int inv_table[4],
329                                     int brightness, int contrast, int saturation);
330 SwsFunc ff_yuv2rgb_init_mmx(SwsContext *c);
331 SwsFunc ff_yuv2rgb_init_vis(SwsContext *c);
332 SwsFunc ff_yuv2rgb_init_mlib(SwsContext *c);
333 SwsFunc ff_yuv2rgb_init_altivec(SwsContext *c);
334 SwsFunc ff_yuv2rgb_get_func_ptr_bfin(SwsContext *c);
335 void ff_bfin_get_unscaled_swscale(SwsContext *c);
336 void ff_yuv2packedX_altivec(SwsContext *c, const int16_t *lumFilter,
337                             const int16_t **lumSrc, int lumFilterSize,
338                             const int16_t *chrFilter, const int16_t **chrUSrc,
339                             const int16_t **chrVSrc, int chrFilterSize,
340                             uint8_t *dest, int dstW, int dstY);
341
342 const char *sws_format_name(enum PixelFormat format);
343
344 //FIXME replace this with something faster
345 #define is16BPS(x)      (           \
346            (x)==PIX_FMT_GRAY16BE    \
347         || (x)==PIX_FMT_GRAY16LE    \
348         || (x)==PIX_FMT_BGR48BE     \
349         || (x)==PIX_FMT_BGR48LE     \
350         || (x)==PIX_FMT_RGB48BE     \
351         || (x)==PIX_FMT_RGB48LE     \
352         || (x)==PIX_FMT_YUV420P16LE \
353         || (x)==PIX_FMT_YUV422P16LE \
354         || (x)==PIX_FMT_YUV444P16LE \
355         || (x)==PIX_FMT_YUV420P16BE \
356         || (x)==PIX_FMT_YUV422P16BE \
357         || (x)==PIX_FMT_YUV444P16BE \
358     )
359 #define is9_OR_10BPS(x) (           \
360            (x)==PIX_FMT_YUV420P9LE  \
361         || (x)==PIX_FMT_YUV420P9BE  \
362         || (x)==PIX_FMT_YUV420P10LE \
363         || (x)==PIX_FMT_YUV420P10BE \
364     )
365 #define isBE(x) ((x)&1)
366 #define isPlanar8YUV(x) (           \
367            (x)==PIX_FMT_YUV410P     \
368         || (x)==PIX_FMT_YUV420P     \
369         || (x)==PIX_FMT_YUVA420P    \
370         || (x)==PIX_FMT_YUV411P     \
371         || (x)==PIX_FMT_YUV422P     \
372         || (x)==PIX_FMT_YUV444P     \
373         || (x)==PIX_FMT_YUV440P     \
374         || (x)==PIX_FMT_NV12        \
375         || (x)==PIX_FMT_NV21        \
376     )
377 #define isPlanarYUV(x)  (           \
378         isPlanar8YUV(x)             \
379         || (x)==PIX_FMT_YUV420P9LE  \
380         || (x)==PIX_FMT_YUV420P10LE \
381         || (x)==PIX_FMT_YUV420P16LE \
382         || (x)==PIX_FMT_YUV422P16LE \
383         || (x)==PIX_FMT_YUV444P16LE \
384         || (x)==PIX_FMT_YUV420P9BE  \
385         || (x)==PIX_FMT_YUV420P10BE \
386         || (x)==PIX_FMT_YUV420P16BE \
387         || (x)==PIX_FMT_YUV422P16BE \
388         || (x)==PIX_FMT_YUV444P16BE \
389     )
390 #define isYUV(x)        (           \
391            (x)==PIX_FMT_UYVY422     \
392         || (x)==PIX_FMT_YUYV422     \
393         || isPlanarYUV(x)           \
394     )
395 #define isGray(x)       (           \
396            (x)==PIX_FMT_GRAY8       \
397         || (x)==PIX_FMT_Y400A      \
398         || (x)==PIX_FMT_GRAY16BE    \
399         || (x)==PIX_FMT_GRAY16LE    \
400     )
401 #define isGray16(x)     (           \
402            (x)==PIX_FMT_GRAY16BE    \
403         || (x)==PIX_FMT_GRAY16LE    \
404     )
405 #define isRGBinInt(x)   (           \
406            (x)==PIX_FMT_RGB48BE     \
407         || (x)==PIX_FMT_RGB48LE     \
408         || (x)==PIX_FMT_RGB32       \
409         || (x)==PIX_FMT_RGB32_1     \
410         || (x)==PIX_FMT_RGB24       \
411         || (x)==PIX_FMT_RGB565BE    \
412         || (x)==PIX_FMT_RGB565LE    \
413         || (x)==PIX_FMT_RGB555BE    \
414         || (x)==PIX_FMT_RGB555LE    \
415         || (x)==PIX_FMT_RGB444BE    \
416         || (x)==PIX_FMT_RGB444LE    \
417         || (x)==PIX_FMT_RGB8        \
418         || (x)==PIX_FMT_RGB4        \
419         || (x)==PIX_FMT_RGB4_BYTE   \
420         || (x)==PIX_FMT_MONOBLACK   \
421         || (x)==PIX_FMT_MONOWHITE   \
422     )
423 #define isBGRinInt(x)   (           \
424            (x)==PIX_FMT_BGR48BE     \
425         || (x)==PIX_FMT_BGR48LE     \
426         || (x)==PIX_FMT_BGR32       \
427         || (x)==PIX_FMT_BGR32_1     \
428         || (x)==PIX_FMT_BGR24       \
429         || (x)==PIX_FMT_BGR565BE    \
430         || (x)==PIX_FMT_BGR565LE    \
431         || (x)==PIX_FMT_BGR555BE    \
432         || (x)==PIX_FMT_BGR555LE    \
433         || (x)==PIX_FMT_BGR444BE    \
434         || (x)==PIX_FMT_BGR444LE    \
435         || (x)==PIX_FMT_BGR8        \
436         || (x)==PIX_FMT_BGR4        \
437         || (x)==PIX_FMT_BGR4_BYTE   \
438         || (x)==PIX_FMT_MONOBLACK   \
439         || (x)==PIX_FMT_MONOWHITE   \
440     )
441 #define isRGBinBytes(x) (           \
442            (x)==PIX_FMT_RGB48BE     \
443         || (x)==PIX_FMT_RGB48LE     \
444         || (x)==PIX_FMT_RGBA        \
445         || (x)==PIX_FMT_ARGB        \
446         || (x)==PIX_FMT_RGB24       \
447     )
448 #define isBGRinBytes(x) (           \
449            (x)==PIX_FMT_BGR48BE     \
450         || (x)==PIX_FMT_BGR48LE     \
451         || (x)==PIX_FMT_BGRA        \
452         || (x)==PIX_FMT_ABGR        \
453         || (x)==PIX_FMT_BGR24       \
454     )
455 #define isAnyRGB(x)     (           \
456             isRGBinInt(x)           \
457         ||  isBGRinInt(x)           \
458     )
459 #define isALPHA(x)      (           \
460            (x)==PIX_FMT_BGR32       \
461         || (x)==PIX_FMT_BGR32_1     \
462         || (x)==PIX_FMT_RGB32       \
463         || (x)==PIX_FMT_RGB32_1     \
464         || (x)==PIX_FMT_Y400A       \
465         || (x)==PIX_FMT_YUVA420P    \
466     )
467 #define usePal(x) ((av_pix_fmt_descriptors[x].flags & PIX_FMT_PAL) || (x) == PIX_FMT_Y400A)
468
469 extern const uint64_t ff_dither4[2];
470 extern const uint64_t ff_dither8[2];
471
472 extern const AVClass sws_context_class;
473
474 /**
475  * Sets c->swScale to an unscaled converter if one exists for the specific
476  * source and destination formats, bit depths, flags, etc.
477  */
478 void ff_get_unscaled_swscale(SwsContext *c);
479
480 /**
481  * Returns function pointer to fastest main scaler path function depending
482  * on architecture and available optimizations.
483  */
484 SwsFunc ff_getSwsFunc(SwsContext *c);
485
486 #endif /* SWSCALE_SWSCALE_INTERNAL_H */