FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
utils.c
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2001-2003 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 #include "config.h"
22 
23 #define _DEFAULT_SOURCE
24 #define _SVID_SOURCE // needed for MAP_ANONYMOUS
25 #define _DARWIN_C_SOURCE // needed for MAP_ANON
26 #include <inttypes.h>
27 #include <math.h>
28 #include <stdio.h>
29 #include <string.h>
30 #if HAVE_SYS_MMAN_H
31 #include <sys/mman.h>
32 #if defined(MAP_ANON) && !defined(MAP_ANONYMOUS)
33 #define MAP_ANONYMOUS MAP_ANON
34 #endif
35 #endif
36 #if HAVE_VIRTUALALLOC
37 #define WIN32_LEAN_AND_MEAN
38 #include <windows.h>
39 #endif
40 
41 #include "libavutil/attributes.h"
42 #include "libavutil/avassert.h"
43 #include "libavutil/avutil.h"
44 #include "libavutil/bswap.h"
45 #include "libavutil/cpu.h"
46 #include "libavutil/imgutils.h"
47 #include "libavutil/intreadwrite.h"
48 #include "libavutil/libm.h"
49 #include "libavutil/mathematics.h"
50 #include "libavutil/opt.h"
51 #include "libavutil/pixdesc.h"
52 #include "libavutil/aarch64/cpu.h"
53 #include "libavutil/ppc/cpu.h"
54 #include "libavutil/x86/asm.h"
55 #include "libavutil/x86/cpu.h"
56 
57 // We have to implement deprecated functions until they are removed, this is the
58 // simplest way to prevent warnings
59 #undef attribute_deprecated
60 #define attribute_deprecated
61 
62 #include "rgb2rgb.h"
63 #include "swscale.h"
64 #include "swscale_internal.h"
65 
66 #if !FF_API_SWS_VECTOR
67 static SwsVector *sws_getIdentityVec(void);
68 static void sws_addVec(SwsVector *a, SwsVector *b);
69 static void sws_shiftVec(SwsVector *a, int shift);
70 static void sws_printVec2(SwsVector *a, AVClass *log_ctx, int log_level);
71 #endif
72 
73 static void handle_formats(SwsContext *c);
74 
75 unsigned swscale_version(void)
76 {
79 }
80 
81 const char *swscale_configuration(void)
82 {
83  return FFMPEG_CONFIGURATION;
84 }
85 
86 const char *swscale_license(void)
87 {
88 #define LICENSE_PREFIX "libswscale license: "
89  return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;
90 }
91 
92 typedef struct FormatEntry {
96 } FormatEntry;
97 
99  [AV_PIX_FMT_YUV420P] = { 1, 1 },
100  [AV_PIX_FMT_YUYV422] = { 1, 1 },
101  [AV_PIX_FMT_RGB24] = { 1, 1 },
102  [AV_PIX_FMT_BGR24] = { 1, 1 },
103  [AV_PIX_FMT_YUV422P] = { 1, 1 },
104  [AV_PIX_FMT_YUV444P] = { 1, 1 },
105  [AV_PIX_FMT_YUV410P] = { 1, 1 },
106  [AV_PIX_FMT_YUV411P] = { 1, 1 },
107  [AV_PIX_FMT_GRAY8] = { 1, 1 },
108  [AV_PIX_FMT_MONOWHITE] = { 1, 1 },
109  [AV_PIX_FMT_MONOBLACK] = { 1, 1 },
110  [AV_PIX_FMT_PAL8] = { 1, 0 },
111  [AV_PIX_FMT_YUVJ420P] = { 1, 1 },
112  [AV_PIX_FMT_YUVJ411P] = { 1, 1 },
113  [AV_PIX_FMT_YUVJ422P] = { 1, 1 },
114  [AV_PIX_FMT_YUVJ444P] = { 1, 1 },
115  [AV_PIX_FMT_YVYU422] = { 1, 1 },
116  [AV_PIX_FMT_UYVY422] = { 1, 1 },
117  [AV_PIX_FMT_UYYVYY411] = { 0, 0 },
118  [AV_PIX_FMT_BGR8] = { 1, 1 },
119  [AV_PIX_FMT_BGR4] = { 0, 1 },
120  [AV_PIX_FMT_BGR4_BYTE] = { 1, 1 },
121  [AV_PIX_FMT_RGB8] = { 1, 1 },
122  [AV_PIX_FMT_RGB4] = { 0, 1 },
123  [AV_PIX_FMT_RGB4_BYTE] = { 1, 1 },
124  [AV_PIX_FMT_NV12] = { 1, 1 },
125  [AV_PIX_FMT_NV21] = { 1, 1 },
126  [AV_PIX_FMT_ARGB] = { 1, 1 },
127  [AV_PIX_FMT_RGBA] = { 1, 1 },
128  [AV_PIX_FMT_ABGR] = { 1, 1 },
129  [AV_PIX_FMT_BGRA] = { 1, 1 },
130  [AV_PIX_FMT_0RGB] = { 1, 1 },
131  [AV_PIX_FMT_RGB0] = { 1, 1 },
132  [AV_PIX_FMT_0BGR] = { 1, 1 },
133  [AV_PIX_FMT_BGR0] = { 1, 1 },
134  [AV_PIX_FMT_GRAY9BE] = { 1, 1 },
135  [AV_PIX_FMT_GRAY9LE] = { 1, 1 },
136  [AV_PIX_FMT_GRAY10BE] = { 1, 1 },
137  [AV_PIX_FMT_GRAY10LE] = { 1, 1 },
138  [AV_PIX_FMT_GRAY12BE] = { 1, 1 },
139  [AV_PIX_FMT_GRAY12LE] = { 1, 1 },
140  [AV_PIX_FMT_GRAY16BE] = { 1, 1 },
141  [AV_PIX_FMT_GRAY16LE] = { 1, 1 },
142  [AV_PIX_FMT_YUV440P] = { 1, 1 },
143  [AV_PIX_FMT_YUVJ440P] = { 1, 1 },
144  [AV_PIX_FMT_YUV440P10LE] = { 1, 1 },
145  [AV_PIX_FMT_YUV440P10BE] = { 1, 1 },
146  [AV_PIX_FMT_YUV440P12LE] = { 1, 1 },
147  [AV_PIX_FMT_YUV440P12BE] = { 1, 1 },
148  [AV_PIX_FMT_YUVA420P] = { 1, 1 },
149  [AV_PIX_FMT_YUVA422P] = { 1, 1 },
150  [AV_PIX_FMT_YUVA444P] = { 1, 1 },
151  [AV_PIX_FMT_YUVA420P9BE] = { 1, 1 },
152  [AV_PIX_FMT_YUVA420P9LE] = { 1, 1 },
153  [AV_PIX_FMT_YUVA422P9BE] = { 1, 1 },
154  [AV_PIX_FMT_YUVA422P9LE] = { 1, 1 },
155  [AV_PIX_FMT_YUVA444P9BE] = { 1, 1 },
156  [AV_PIX_FMT_YUVA444P9LE] = { 1, 1 },
157  [AV_PIX_FMT_YUVA420P10BE]= { 1, 1 },
158  [AV_PIX_FMT_YUVA420P10LE]= { 1, 1 },
159  [AV_PIX_FMT_YUVA422P10BE]= { 1, 1 },
160  [AV_PIX_FMT_YUVA422P10LE]= { 1, 1 },
161  [AV_PIX_FMT_YUVA444P10BE]= { 1, 1 },
162  [AV_PIX_FMT_YUVA444P10LE]= { 1, 1 },
163  [AV_PIX_FMT_YUVA420P16BE]= { 1, 1 },
164  [AV_PIX_FMT_YUVA420P16LE]= { 1, 1 },
165  [AV_PIX_FMT_YUVA422P16BE]= { 1, 1 },
166  [AV_PIX_FMT_YUVA422P16LE]= { 1, 1 },
167  [AV_PIX_FMT_YUVA444P16BE]= { 1, 1 },
168  [AV_PIX_FMT_YUVA444P16LE]= { 1, 1 },
169  [AV_PIX_FMT_RGB48BE] = { 1, 1 },
170  [AV_PIX_FMT_RGB48LE] = { 1, 1 },
171  [AV_PIX_FMT_RGBA64BE] = { 1, 1, 1 },
172  [AV_PIX_FMT_RGBA64LE] = { 1, 1, 1 },
173  [AV_PIX_FMT_RGB565BE] = { 1, 1 },
174  [AV_PIX_FMT_RGB565LE] = { 1, 1 },
175  [AV_PIX_FMT_RGB555BE] = { 1, 1 },
176  [AV_PIX_FMT_RGB555LE] = { 1, 1 },
177  [AV_PIX_FMT_BGR565BE] = { 1, 1 },
178  [AV_PIX_FMT_BGR565LE] = { 1, 1 },
179  [AV_PIX_FMT_BGR555BE] = { 1, 1 },
180  [AV_PIX_FMT_BGR555LE] = { 1, 1 },
181  [AV_PIX_FMT_YUV420P16LE] = { 1, 1 },
182  [AV_PIX_FMT_YUV420P16BE] = { 1, 1 },
183  [AV_PIX_FMT_YUV422P16LE] = { 1, 1 },
184  [AV_PIX_FMT_YUV422P16BE] = { 1, 1 },
185  [AV_PIX_FMT_YUV444P16LE] = { 1, 1 },
186  [AV_PIX_FMT_YUV444P16BE] = { 1, 1 },
187  [AV_PIX_FMT_RGB444LE] = { 1, 1 },
188  [AV_PIX_FMT_RGB444BE] = { 1, 1 },
189  [AV_PIX_FMT_BGR444LE] = { 1, 1 },
190  [AV_PIX_FMT_BGR444BE] = { 1, 1 },
191  [AV_PIX_FMT_YA8] = { 1, 1 },
192  [AV_PIX_FMT_YA16BE] = { 1, 0 },
193  [AV_PIX_FMT_YA16LE] = { 1, 0 },
194  [AV_PIX_FMT_BGR48BE] = { 1, 1 },
195  [AV_PIX_FMT_BGR48LE] = { 1, 1 },
196  [AV_PIX_FMT_BGRA64BE] = { 1, 1, 1 },
197  [AV_PIX_FMT_BGRA64LE] = { 1, 1, 1 },
198  [AV_PIX_FMT_YUV420P9BE] = { 1, 1 },
199  [AV_PIX_FMT_YUV420P9LE] = { 1, 1 },
200  [AV_PIX_FMT_YUV420P10BE] = { 1, 1 },
201  [AV_PIX_FMT_YUV420P10LE] = { 1, 1 },
202  [AV_PIX_FMT_YUV420P12BE] = { 1, 1 },
203  [AV_PIX_FMT_YUV420P12LE] = { 1, 1 },
204  [AV_PIX_FMT_YUV420P14BE] = { 1, 1 },
205  [AV_PIX_FMT_YUV420P14LE] = { 1, 1 },
206  [AV_PIX_FMT_YUV422P9BE] = { 1, 1 },
207  [AV_PIX_FMT_YUV422P9LE] = { 1, 1 },
208  [AV_PIX_FMT_YUV422P10BE] = { 1, 1 },
209  [AV_PIX_FMT_YUV422P10LE] = { 1, 1 },
210  [AV_PIX_FMT_YUV422P12BE] = { 1, 1 },
211  [AV_PIX_FMT_YUV422P12LE] = { 1, 1 },
212  [AV_PIX_FMT_YUV422P14BE] = { 1, 1 },
213  [AV_PIX_FMT_YUV422P14LE] = { 1, 1 },
214  [AV_PIX_FMT_YUV444P9BE] = { 1, 1 },
215  [AV_PIX_FMT_YUV444P9LE] = { 1, 1 },
216  [AV_PIX_FMT_YUV444P10BE] = { 1, 1 },
217  [AV_PIX_FMT_YUV444P10LE] = { 1, 1 },
218  [AV_PIX_FMT_YUV444P12BE] = { 1, 1 },
219  [AV_PIX_FMT_YUV444P12LE] = { 1, 1 },
220  [AV_PIX_FMT_YUV444P14BE] = { 1, 1 },
221  [AV_PIX_FMT_YUV444P14LE] = { 1, 1 },
222  [AV_PIX_FMT_GBRP] = { 1, 1 },
223  [AV_PIX_FMT_GBRP9LE] = { 1, 1 },
224  [AV_PIX_FMT_GBRP9BE] = { 1, 1 },
225  [AV_PIX_FMT_GBRP10LE] = { 1, 1 },
226  [AV_PIX_FMT_GBRP10BE] = { 1, 1 },
227  [AV_PIX_FMT_GBRAP10LE] = { 1, 1 },
228  [AV_PIX_FMT_GBRAP10BE] = { 1, 1 },
229  [AV_PIX_FMT_GBRP12LE] = { 1, 1 },
230  [AV_PIX_FMT_GBRP12BE] = { 1, 1 },
231  [AV_PIX_FMT_GBRAP12LE] = { 1, 1 },
232  [AV_PIX_FMT_GBRAP12BE] = { 1, 1 },
233  [AV_PIX_FMT_GBRP14LE] = { 1, 1 },
234  [AV_PIX_FMT_GBRP14BE] = { 1, 1 },
235  [AV_PIX_FMT_GBRP16LE] = { 1, 1 },
236  [AV_PIX_FMT_GBRP16BE] = { 1, 1 },
237  [AV_PIX_FMT_GBRAP] = { 1, 1 },
238  [AV_PIX_FMT_GBRAP16LE] = { 1, 1 },
239  [AV_PIX_FMT_GBRAP16BE] = { 1, 1 },
240  [AV_PIX_FMT_BAYER_BGGR8] = { 1, 0 },
241  [AV_PIX_FMT_BAYER_RGGB8] = { 1, 0 },
242  [AV_PIX_FMT_BAYER_GBRG8] = { 1, 0 },
243  [AV_PIX_FMT_BAYER_GRBG8] = { 1, 0 },
244  [AV_PIX_FMT_BAYER_BGGR16LE] = { 1, 0 },
245  [AV_PIX_FMT_BAYER_BGGR16BE] = { 1, 0 },
246  [AV_PIX_FMT_BAYER_RGGB16LE] = { 1, 0 },
247  [AV_PIX_FMT_BAYER_RGGB16BE] = { 1, 0 },
248  [AV_PIX_FMT_BAYER_GBRG16LE] = { 1, 0 },
249  [AV_PIX_FMT_BAYER_GBRG16BE] = { 1, 0 },
250  [AV_PIX_FMT_BAYER_GRBG16LE] = { 1, 0 },
251  [AV_PIX_FMT_BAYER_GRBG16BE] = { 1, 0 },
252  [AV_PIX_FMT_XYZ12BE] = { 1, 1, 1 },
253  [AV_PIX_FMT_XYZ12LE] = { 1, 1, 1 },
254  [AV_PIX_FMT_AYUV64LE] = { 1, 1},
255  [AV_PIX_FMT_P010LE] = { 1, 1 },
256  [AV_PIX_FMT_P010BE] = { 1, 1 },
257  [AV_PIX_FMT_P016LE] = { 1, 0 },
258  [AV_PIX_FMT_P016BE] = { 1, 0 },
259 };
260 
262 {
263  return (unsigned)pix_fmt < AV_PIX_FMT_NB ?
264  format_entries[pix_fmt].is_supported_in : 0;
265 }
266 
268 {
269  return (unsigned)pix_fmt < AV_PIX_FMT_NB ?
270  format_entries[pix_fmt].is_supported_out : 0;
271 }
272 
274 {
275  return (unsigned)pix_fmt < AV_PIX_FMT_NB ?
276  format_entries[pix_fmt].is_supported_endianness : 0;
277 }
278 
279 static double getSplineCoeff(double a, double b, double c, double d,
280  double dist)
281 {
282  if (dist <= 1.0)
283  return ((d * dist + c) * dist + b) * dist + a;
284  else
285  return getSplineCoeff(0.0,
286  b + 2.0 * c + 3.0 * d,
287  c + 3.0 * d,
288  -b - 3.0 * c - 6.0 * d,
289  dist - 1.0);
290 }
291 
292 static av_cold int get_local_pos(SwsContext *s, int chr_subsample, int pos, int dir)
293 {
294  if (pos == -1 || pos <= -513) {
295  pos = (128 << chr_subsample) - 128;
296  }
297  pos += 128; // relative to ideal left edge
298  return pos >> chr_subsample;
299 }
300 
301 typedef struct {
302  int flag; ///< flag associated to the algorithm
303  const char *description; ///< human-readable description
304  int size_factor; ///< size factor used when initing the filters
306 
308  { SWS_AREA, "area averaging", 1 /* downscale only, for upscale it is bilinear */ },
309  { SWS_BICUBIC, "bicubic", 4 },
310  { SWS_BICUBLIN, "luma bicubic / chroma bilinear", -1 },
311  { SWS_BILINEAR, "bilinear", 2 },
312  { SWS_FAST_BILINEAR, "fast bilinear", -1 },
313  { SWS_GAUSS, "Gaussian", 8 /* infinite ;) */ },
314  { SWS_LANCZOS, "Lanczos", -1 /* custom */ },
315  { SWS_POINT, "nearest neighbor / point", -1 },
316  { SWS_SINC, "sinc", 20 /* infinite ;) */ },
317  { SWS_SPLINE, "bicubic spline", 20 /* infinite :)*/ },
318  { SWS_X, "experimental", 8 },
319 };
320 
321 static av_cold int initFilter(int16_t **outFilter, int32_t **filterPos,
322  int *outFilterSize, int xInc, int srcW,
323  int dstW, int filterAlign, int one,
324  int flags, int cpu_flags,
325  SwsVector *srcFilter, SwsVector *dstFilter,
326  double param[2], int srcPos, int dstPos)
327 {
328  int i;
329  int filterSize;
330  int filter2Size;
331  int minFilterSize;
332  int64_t *filter = NULL;
333  int64_t *filter2 = NULL;
334  const int64_t fone = 1LL << (54 - FFMIN(av_log2(srcW/dstW), 8));
335  int ret = -1;
336 
337  emms_c(); // FIXME should not be required but IS (even for non-MMX versions)
338 
339  // NOTE: the +3 is for the MMX(+1) / SSE(+3) scaler which reads over the end
340  FF_ALLOC_ARRAY_OR_GOTO(NULL, *filterPos, (dstW + 3), sizeof(**filterPos), fail);
341 
342  if (FFABS(xInc - 0x10000) < 10 && srcPos == dstPos) { // unscaled
343  int i;
344  filterSize = 1;
346  dstW, sizeof(*filter) * filterSize, fail);
347 
348  for (i = 0; i < dstW; i++) {
349  filter[i * filterSize] = fone;
350  (*filterPos)[i] = i;
351  }
352  } else if (flags & SWS_POINT) { // lame looking point sampling mode
353  int i;
354  int64_t xDstInSrc;
355  filterSize = 1;
357  dstW, sizeof(*filter) * filterSize, fail);
358 
359  xDstInSrc = ((dstPos*(int64_t)xInc)>>8) - ((srcPos*0x8000LL)>>7);
360  for (i = 0; i < dstW; i++) {
361  int xx = (xDstInSrc - ((filterSize - 1) << 15) + (1 << 15)) >> 16;
362 
363  (*filterPos)[i] = xx;
364  filter[i] = fone;
365  xDstInSrc += xInc;
366  }
367  } else if ((xInc <= (1 << 16) && (flags & SWS_AREA)) ||
368  (flags & SWS_FAST_BILINEAR)) { // bilinear upscale
369  int i;
370  int64_t xDstInSrc;
371  filterSize = 2;
373  dstW, sizeof(*filter) * filterSize, fail);
374 
375  xDstInSrc = ((dstPos*(int64_t)xInc)>>8) - ((srcPos*0x8000LL)>>7);
376  for (i = 0; i < dstW; i++) {
377  int xx = (xDstInSrc - ((filterSize - 1) << 15) + (1 << 15)) >> 16;
378  int j;
379 
380  (*filterPos)[i] = xx;
381  // bilinear upscale / linear interpolate / area averaging
382  for (j = 0; j < filterSize; j++) {
383  int64_t coeff= fone - FFABS(((int64_t)xx<<16) - xDstInSrc)*(fone>>16);
384  if (coeff < 0)
385  coeff = 0;
386  filter[i * filterSize + j] = coeff;
387  xx++;
388  }
389  xDstInSrc += xInc;
390  }
391  } else {
392  int64_t xDstInSrc;
393  int sizeFactor = -1;
394 
395  for (i = 0; i < FF_ARRAY_ELEMS(scale_algorithms); i++) {
396  if (flags & scale_algorithms[i].flag && scale_algorithms[i].size_factor > 0) {
397  sizeFactor = scale_algorithms[i].size_factor;
398  break;
399  }
400  }
401  if (flags & SWS_LANCZOS)
402  sizeFactor = param[0] != SWS_PARAM_DEFAULT ? ceil(2 * param[0]) : 6;
403  av_assert0(sizeFactor > 0);
404 
405  if (xInc <= 1 << 16)
406  filterSize = 1 + sizeFactor; // upscale
407  else
408  filterSize = 1 + (sizeFactor * srcW + dstW - 1) / dstW;
409 
410  filterSize = FFMIN(filterSize, srcW - 2);
411  filterSize = FFMAX(filterSize, 1);
412 
414  dstW, sizeof(*filter) * filterSize, fail);
415 
416  xDstInSrc = ((dstPos*(int64_t)xInc)>>7) - ((srcPos*0x10000LL)>>7);
417  for (i = 0; i < dstW; i++) {
418  int xx = (xDstInSrc - (filterSize - 2) * (1LL<<16)) / (1 << 17);
419  int j;
420  (*filterPos)[i] = xx;
421  for (j = 0; j < filterSize; j++) {
422  int64_t d = (FFABS(((int64_t)xx * (1 << 17)) - xDstInSrc)) << 13;
423  double floatd;
424  int64_t coeff;
425 
426  if (xInc > 1 << 16)
427  d = d * dstW / srcW;
428  floatd = d * (1.0 / (1 << 30));
429 
430  if (flags & SWS_BICUBIC) {
431  int64_t B = (param[0] != SWS_PARAM_DEFAULT ? param[0] : 0) * (1 << 24);
432  int64_t C = (param[1] != SWS_PARAM_DEFAULT ? param[1] : 0.6) * (1 << 24);
433 
434  if (d >= 1LL << 31) {
435  coeff = 0.0;
436  } else {
437  int64_t dd = (d * d) >> 30;
438  int64_t ddd = (dd * d) >> 30;
439 
440  if (d < 1LL << 30)
441  coeff = (12 * (1 << 24) - 9 * B - 6 * C) * ddd +
442  (-18 * (1 << 24) + 12 * B + 6 * C) * dd +
443  (6 * (1 << 24) - 2 * B) * (1 << 30);
444  else
445  coeff = (-B - 6 * C) * ddd +
446  (6 * B + 30 * C) * dd +
447  (-12 * B - 48 * C) * d +
448  (8 * B + 24 * C) * (1 << 30);
449  }
450  coeff /= (1LL<<54)/fone;
451  } else if (flags & SWS_X) {
452  double A = param[0] != SWS_PARAM_DEFAULT ? param[0] : 1.0;
453  double c;
454 
455  if (floatd < 1.0)
456  c = cos(floatd * M_PI);
457  else
458  c = -1.0;
459  if (c < 0.0)
460  c = -pow(-c, A);
461  else
462  c = pow(c, A);
463  coeff = (c * 0.5 + 0.5) * fone;
464  } else if (flags & SWS_AREA) {
465  int64_t d2 = d - (1 << 29);
466  if (d2 * xInc < -(1LL << (29 + 16)))
467  coeff = 1.0 * (1LL << (30 + 16));
468  else if (d2 * xInc < (1LL << (29 + 16)))
469  coeff = -d2 * xInc + (1LL << (29 + 16));
470  else
471  coeff = 0.0;
472  coeff *= fone >> (30 + 16);
473  } else if (flags & SWS_GAUSS) {
474  double p = param[0] != SWS_PARAM_DEFAULT ? param[0] : 3.0;
475  coeff = exp2(-p * floatd * floatd) * fone;
476  } else if (flags & SWS_SINC) {
477  coeff = (d ? sin(floatd * M_PI) / (floatd * M_PI) : 1.0) * fone;
478  } else if (flags & SWS_LANCZOS) {
479  double p = param[0] != SWS_PARAM_DEFAULT ? param[0] : 3.0;
480  coeff = (d ? sin(floatd * M_PI) * sin(floatd * M_PI / p) /
481  (floatd * floatd * M_PI * M_PI / p) : 1.0) * fone;
482  if (floatd > p)
483  coeff = 0;
484  } else if (flags & SWS_BILINEAR) {
485  coeff = (1 << 30) - d;
486  if (coeff < 0)
487  coeff = 0;
488  coeff *= fone >> 30;
489  } else if (flags & SWS_SPLINE) {
490  double p = -2.196152422706632;
491  coeff = getSplineCoeff(1.0, 0.0, p, -p - 1.0, floatd) * fone;
492  } else {
493  av_assert0(0);
494  }
495 
496  filter[i * filterSize + j] = coeff;
497  xx++;
498  }
499  xDstInSrc += 2 * xInc;
500  }
501  }
502 
503  /* apply src & dst Filter to filter -> filter2
504  * av_free(filter);
505  */
506  av_assert0(filterSize > 0);
507  filter2Size = filterSize;
508  if (srcFilter)
509  filter2Size += srcFilter->length - 1;
510  if (dstFilter)
511  filter2Size += dstFilter->length - 1;
512  av_assert0(filter2Size > 0);
513  FF_ALLOCZ_ARRAY_OR_GOTO(NULL, filter2, dstW, filter2Size * sizeof(*filter2), fail);
514 
515  for (i = 0; i < dstW; i++) {
516  int j, k;
517 
518  if (srcFilter) {
519  for (k = 0; k < srcFilter->length; k++) {
520  for (j = 0; j < filterSize; j++)
521  filter2[i * filter2Size + k + j] +=
522  srcFilter->coeff[k] * filter[i * filterSize + j];
523  }
524  } else {
525  for (j = 0; j < filterSize; j++)
526  filter2[i * filter2Size + j] = filter[i * filterSize + j];
527  }
528  // FIXME dstFilter
529 
530  (*filterPos)[i] += (filterSize - 1) / 2 - (filter2Size - 1) / 2;
531  }
532  av_freep(&filter);
533 
534  /* try to reduce the filter-size (step1 find size and shift left) */
535  // Assume it is near normalized (*0.5 or *2.0 is OK but * 0.001 is not).
536  minFilterSize = 0;
537  for (i = dstW - 1; i >= 0; i--) {
538  int min = filter2Size;
539  int j;
540  int64_t cutOff = 0.0;
541 
542  /* get rid of near zero elements on the left by shifting left */
543  for (j = 0; j < filter2Size; j++) {
544  int k;
545  cutOff += FFABS(filter2[i * filter2Size]);
546 
547  if (cutOff > SWS_MAX_REDUCE_CUTOFF * fone)
548  break;
549 
550  /* preserve monotonicity because the core can't handle the
551  * filter otherwise */
552  if (i < dstW - 1 && (*filterPos)[i] >= (*filterPos)[i + 1])
553  break;
554 
555  // move filter coefficients left
556  for (k = 1; k < filter2Size; k++)
557  filter2[i * filter2Size + k - 1] = filter2[i * filter2Size + k];
558  filter2[i * filter2Size + k - 1] = 0;
559  (*filterPos)[i]++;
560  }
561 
562  cutOff = 0;
563  /* count near zeros on the right */
564  for (j = filter2Size - 1; j > 0; j--) {
565  cutOff += FFABS(filter2[i * filter2Size + j]);
566 
567  if (cutOff > SWS_MAX_REDUCE_CUTOFF * fone)
568  break;
569  min--;
570  }
571 
572  if (min > minFilterSize)
573  minFilterSize = min;
574  }
575 
576  if (PPC_ALTIVEC(cpu_flags)) {
577  // we can handle the special case 4, so we don't want to go the full 8
578  if (minFilterSize < 5)
579  filterAlign = 4;
580 
581  /* We really don't want to waste our time doing useless computation, so
582  * fall back on the scalar C code for very small filters.
583  * Vectorizing is worth it only if you have a decent-sized vector. */
584  if (minFilterSize < 3)
585  filterAlign = 1;
586  }
587 
588  if (HAVE_MMX && cpu_flags & AV_CPU_FLAG_MMX) {
589  // special case for unscaled vertical filtering
590  if (minFilterSize == 1 && filterAlign == 2)
591  filterAlign = 1;
592  }
593 
594  av_assert0(minFilterSize > 0);
595  filterSize = (minFilterSize + (filterAlign - 1)) & (~(filterAlign - 1));
596  av_assert0(filterSize > 0);
597  filter = av_malloc_array(dstW, filterSize * sizeof(*filter));
598  if (!filter)
599  goto fail;
600  if (filterSize >= MAX_FILTER_SIZE * 16 /
601  ((flags & SWS_ACCURATE_RND) ? APCK_SIZE : 16)) {
602  ret = RETCODE_USE_CASCADE;
603  goto fail;
604  }
605  *outFilterSize = filterSize;
606 
607  if (flags & SWS_PRINT_INFO)
609  "SwScaler: reducing / aligning filtersize %d -> %d\n",
610  filter2Size, filterSize);
611  /* try to reduce the filter-size (step2 reduce it) */
612  for (i = 0; i < dstW; i++) {
613  int j;
614 
615  for (j = 0; j < filterSize; j++) {
616  if (j >= filter2Size)
617  filter[i * filterSize + j] = 0;
618  else
619  filter[i * filterSize + j] = filter2[i * filter2Size + j];
620  if ((flags & SWS_BITEXACT) && j >= minFilterSize)
621  filter[i * filterSize + j] = 0;
622  }
623  }
624 
625  // FIXME try to align filterPos if possible
626 
627  // fix borders
628  for (i = 0; i < dstW; i++) {
629  int j;
630  if ((*filterPos)[i] < 0) {
631  // move filter coefficients left to compensate for filterPos
632  for (j = 1; j < filterSize; j++) {
633  int left = FFMAX(j + (*filterPos)[i], 0);
634  filter[i * filterSize + left] += filter[i * filterSize + j];
635  filter[i * filterSize + j] = 0;
636  }
637  (*filterPos)[i]= 0;
638  }
639 
640  if ((*filterPos)[i] + filterSize > srcW) {
641  int shift = (*filterPos)[i] + FFMIN(filterSize - srcW, 0);
642  int64_t acc = 0;
643 
644  for (j = filterSize - 1; j >= 0; j--) {
645  if ((*filterPos)[i] + j >= srcW) {
646  acc += filter[i * filterSize + j];
647  filter[i * filterSize + j] = 0;
648  }
649  }
650  for (j = filterSize - 1; j >= 0; j--) {
651  if (j < shift) {
652  filter[i * filterSize + j] = 0;
653  } else {
654  filter[i * filterSize + j] = filter[i * filterSize + j - shift];
655  }
656  }
657 
658  (*filterPos)[i]-= shift;
659  filter[i * filterSize + srcW - 1 - (*filterPos)[i]] += acc;
660  }
661  av_assert0((*filterPos)[i] >= 0);
662  av_assert0((*filterPos)[i] < srcW);
663  if ((*filterPos)[i] + filterSize > srcW) {
664  for (j = 0; j < filterSize; j++) {
665  av_assert0((*filterPos)[i] + j < srcW || !filter[i * filterSize + j]);
666  }
667  }
668  }
669 
670  // Note the +1 is for the MMX scaler which reads over the end
671  /* align at 16 for AltiVec (needed by hScale_altivec_real) */
672  FF_ALLOCZ_ARRAY_OR_GOTO(NULL, *outFilter,
673  (dstW + 3), *outFilterSize * sizeof(int16_t), fail);
674 
675  /* normalize & store in outFilter */
676  for (i = 0; i < dstW; i++) {
677  int j;
678  int64_t error = 0;
679  int64_t sum = 0;
680 
681  for (j = 0; j < filterSize; j++) {
682  sum += filter[i * filterSize + j];
683  }
684  sum = (sum + one / 2) / one;
685  if (!sum) {
686  av_log(NULL, AV_LOG_WARNING, "SwScaler: zero vector in scaling\n");
687  sum = 1;
688  }
689  for (j = 0; j < *outFilterSize; j++) {
690  int64_t v = filter[i * filterSize + j] + error;
691  int intV = ROUNDED_DIV(v, sum);
692  (*outFilter)[i * (*outFilterSize) + j] = intV;
693  error = v - intV * sum;
694  }
695  }
696 
697  (*filterPos)[dstW + 0] =
698  (*filterPos)[dstW + 1] =
699  (*filterPos)[dstW + 2] = (*filterPos)[dstW - 1]; /* the MMX/SSE scaler will
700  * read over the end */
701  for (i = 0; i < *outFilterSize; i++) {
702  int k = (dstW - 1) * (*outFilterSize) + i;
703  (*outFilter)[k + 1 * (*outFilterSize)] =
704  (*outFilter)[k + 2 * (*outFilterSize)] =
705  (*outFilter)[k + 3 * (*outFilterSize)] = (*outFilter)[k];
706  }
707 
708  ret = 0;
709 
710 fail:
711  if(ret < 0)
712  av_log(NULL, ret == RETCODE_USE_CASCADE ? AV_LOG_DEBUG : AV_LOG_ERROR, "sws: initFilter failed\n");
713  av_free(filter);
714  av_free(filter2);
715  return ret;
716 }
717 
718 static void fill_rgb2yuv_table(SwsContext *c, const int table[4], int dstRange)
719 {
720  int64_t W, V, Z, Cy, Cu, Cv;
721  int64_t vr = table[0];
722  int64_t ub = table[1];
723  int64_t ug = -table[2];
724  int64_t vg = -table[3];
725  int64_t ONE = 65536;
726  int64_t cy = ONE;
728  int i;
729  static const int8_t map[] = {
730  BY_IDX, GY_IDX, -1 , BY_IDX, BY_IDX, GY_IDX, -1 , BY_IDX,
731  RY_IDX, -1 , GY_IDX, RY_IDX, RY_IDX, -1 , GY_IDX, RY_IDX,
732  RY_IDX, GY_IDX, -1 , RY_IDX, RY_IDX, GY_IDX, -1 , RY_IDX,
733  BY_IDX, -1 , GY_IDX, BY_IDX, BY_IDX, -1 , GY_IDX, BY_IDX,
734  BU_IDX, GU_IDX, -1 , BU_IDX, BU_IDX, GU_IDX, -1 , BU_IDX,
735  RU_IDX, -1 , GU_IDX, RU_IDX, RU_IDX, -1 , GU_IDX, RU_IDX,
736  RU_IDX, GU_IDX, -1 , RU_IDX, RU_IDX, GU_IDX, -1 , RU_IDX,
737  BU_IDX, -1 , GU_IDX, BU_IDX, BU_IDX, -1 , GU_IDX, BU_IDX,
738  BV_IDX, GV_IDX, -1 , BV_IDX, BV_IDX, GV_IDX, -1 , BV_IDX,
739  RV_IDX, -1 , GV_IDX, RV_IDX, RV_IDX, -1 , GV_IDX, RV_IDX,
740  RV_IDX, GV_IDX, -1 , RV_IDX, RV_IDX, GV_IDX, -1 , RV_IDX,
741  BV_IDX, -1 , GV_IDX, BV_IDX, BV_IDX, -1 , GV_IDX, BV_IDX,
744  GY_IDX, -1 , GY_IDX, -1 , GY_IDX, -1 , GY_IDX, -1 ,
745  -1 , GY_IDX, -1 , GY_IDX, -1 , GY_IDX, -1 , GY_IDX,
748  GU_IDX, -1 , GU_IDX, -1 , GU_IDX, -1 , GU_IDX, -1 ,
749  -1 , GU_IDX, -1 , GU_IDX, -1 , GU_IDX, -1 , GU_IDX,
752  GV_IDX, -1 , GV_IDX, -1 , GV_IDX, -1 , GV_IDX, -1 ,
753  -1 , GV_IDX, -1 , GV_IDX, -1 , GV_IDX, -1 , GV_IDX, //23
754  -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , //24
755  -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , //25
756  -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , //26
757  -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , //27
758  -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , //28
759  -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , //29
760  -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , //30
761  -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , //31
762  BY_IDX, GY_IDX, RY_IDX, -1 , -1 , -1 , -1 , -1 , //32
763  BU_IDX, GU_IDX, RU_IDX, -1 , -1 , -1 , -1 , -1 , //33
764  BV_IDX, GV_IDX, RV_IDX, -1 , -1 , -1 , -1 , -1 , //34
765  };
766 
767  dstRange = 0; //FIXME range = 1 is handled elsewhere
768 
769  if (!dstRange) {
770  cy = cy * 255 / 219;
771  } else {
772  vr = vr * 224 / 255;
773  ub = ub * 224 / 255;
774  ug = ug * 224 / 255;
775  vg = vg * 224 / 255;
776  }
777  W = ROUNDED_DIV(ONE*ONE*ug, ub);
778  V = ROUNDED_DIV(ONE*ONE*vg, vr);
779  Z = ONE*ONE-W-V;
780 
781  Cy = ROUNDED_DIV(cy*Z, ONE);
782  Cu = ROUNDED_DIV(ub*Z, ONE);
783  Cv = ROUNDED_DIV(vr*Z, ONE);
784 
785  c->input_rgb2yuv_table[RY_IDX] = -ROUNDED_DIV((1 << RGB2YUV_SHIFT)*V , Cy);
786  c->input_rgb2yuv_table[GY_IDX] = ROUNDED_DIV((1 << RGB2YUV_SHIFT)*ONE*ONE , Cy);
787  c->input_rgb2yuv_table[BY_IDX] = -ROUNDED_DIV((1 << RGB2YUV_SHIFT)*W , Cy);
788 
789  c->input_rgb2yuv_table[RU_IDX] = ROUNDED_DIV((1 << RGB2YUV_SHIFT)*V , Cu);
790  c->input_rgb2yuv_table[GU_IDX] = -ROUNDED_DIV((1 << RGB2YUV_SHIFT)*ONE*ONE , Cu);
791  c->input_rgb2yuv_table[BU_IDX] = ROUNDED_DIV((1 << RGB2YUV_SHIFT)*(Z+W) , Cu);
792 
793  c->input_rgb2yuv_table[RV_IDX] = ROUNDED_DIV((1 << RGB2YUV_SHIFT)*(V+Z) , Cv);
794  c->input_rgb2yuv_table[GV_IDX] = -ROUNDED_DIV((1 << RGB2YUV_SHIFT)*ONE*ONE , Cv);
795  c->input_rgb2yuv_table[BV_IDX] = ROUNDED_DIV((1 << RGB2YUV_SHIFT)*W , Cv);
796 
797  if(/*!dstRange && */!memcmp(table, ff_yuv2rgb_coeffs[SWS_CS_DEFAULT], sizeof(ff_yuv2rgb_coeffs[SWS_CS_DEFAULT]))) {
798  c->input_rgb2yuv_table[BY_IDX] = ((int)(0.114 * 219 / 255 * (1 << RGB2YUV_SHIFT) + 0.5));
799  c->input_rgb2yuv_table[BV_IDX] = (-(int)(0.081 * 224 / 255 * (1 << RGB2YUV_SHIFT) + 0.5));
800  c->input_rgb2yuv_table[BU_IDX] = ((int)(0.500 * 224 / 255 * (1 << RGB2YUV_SHIFT) + 0.5));
801  c->input_rgb2yuv_table[GY_IDX] = ((int)(0.587 * 219 / 255 * (1 << RGB2YUV_SHIFT) + 0.5));
802  c->input_rgb2yuv_table[GV_IDX] = (-(int)(0.419 * 224 / 255 * (1 << RGB2YUV_SHIFT) + 0.5));
803  c->input_rgb2yuv_table[GU_IDX] = (-(int)(0.331 * 224 / 255 * (1 << RGB2YUV_SHIFT) + 0.5));
804  c->input_rgb2yuv_table[RY_IDX] = ((int)(0.299 * 219 / 255 * (1 << RGB2YUV_SHIFT) + 0.5));
805  c->input_rgb2yuv_table[RV_IDX] = ((int)(0.500 * 224 / 255 * (1 << RGB2YUV_SHIFT) + 0.5));
806  c->input_rgb2yuv_table[RU_IDX] = (-(int)(0.169 * 224 / 255 * (1 << RGB2YUV_SHIFT) + 0.5));
807  }
808  for(i=0; i<FF_ARRAY_ELEMS(map); i++)
809  AV_WL16(p + 16*4 + 2*i, map[i] >= 0 ? c->input_rgb2yuv_table[map[i]] : 0);
810 }
811 
812 static void fill_xyztables(struct SwsContext *c)
813 {
814  int i;
815  double xyzgamma = XYZ_GAMMA;
816  double rgbgamma = 1.0 / RGB_GAMMA;
817  double xyzgammainv = 1.0 / XYZ_GAMMA;
818  double rgbgammainv = RGB_GAMMA;
819  static const int16_t xyz2rgb_matrix[3][4] = {
820  {13270, -6295, -2041},
821  {-3969, 7682, 170},
822  { 228, -835, 4329} };
823  static const int16_t rgb2xyz_matrix[3][4] = {
824  {1689, 1464, 739},
825  { 871, 2929, 296},
826  { 79, 488, 3891} };
827  static int16_t xyzgamma_tab[4096], rgbgamma_tab[4096], xyzgammainv_tab[4096], rgbgammainv_tab[4096];
828 
829  memcpy(c->xyz2rgb_matrix, xyz2rgb_matrix, sizeof(c->xyz2rgb_matrix));
830  memcpy(c->rgb2xyz_matrix, rgb2xyz_matrix, sizeof(c->rgb2xyz_matrix));
831  c->xyzgamma = xyzgamma_tab;
832  c->rgbgamma = rgbgamma_tab;
833  c->xyzgammainv = xyzgammainv_tab;
834  c->rgbgammainv = rgbgammainv_tab;
835 
836  if (rgbgamma_tab[4095])
837  return;
838 
839  /* set gamma vectors */
840  for (i = 0; i < 4096; i++) {
841  xyzgamma_tab[i] = lrint(pow(i / 4095.0, xyzgamma) * 4095.0);
842  rgbgamma_tab[i] = lrint(pow(i / 4095.0, rgbgamma) * 4095.0);
843  xyzgammainv_tab[i] = lrint(pow(i / 4095.0, xyzgammainv) * 4095.0);
844  rgbgammainv_tab[i] = lrint(pow(i / 4095.0, rgbgammainv) * 4095.0);
845  }
846 }
847 
848 int sws_setColorspaceDetails(struct SwsContext *c, const int inv_table[4],
849  int srcRange, const int table[4], int dstRange,
850  int brightness, int contrast, int saturation)
851 {
852  const AVPixFmtDescriptor *desc_dst;
853  const AVPixFmtDescriptor *desc_src;
854  int need_reinit = 0;
855 
856  handle_formats(c);
857  desc_dst = av_pix_fmt_desc_get(c->dstFormat);
858  desc_src = av_pix_fmt_desc_get(c->srcFormat);
859 
860  if(!isYUV(c->dstFormat) && !isGray(c->dstFormat))
861  dstRange = 0;
862  if(!isYUV(c->srcFormat) && !isGray(c->srcFormat))
863  srcRange = 0;
864 
865  if (c->srcRange != srcRange ||
866  c->dstRange != dstRange ||
867  c->brightness != brightness ||
868  c->contrast != contrast ||
869  c->saturation != saturation ||
870  memcmp(c->srcColorspaceTable, inv_table, sizeof(int) * 4) ||
871  memcmp(c->dstColorspaceTable, table, sizeof(int) * 4)
872  )
873  need_reinit = 1;
874 
875  memmove(c->srcColorspaceTable, inv_table, sizeof(int) * 4);
876  memmove(c->dstColorspaceTable, table, sizeof(int) * 4);
877 
878 
879 
880  c->brightness = brightness;
881  c->contrast = contrast;
882  c->saturation = saturation;
883  c->srcRange = srcRange;
884  c->dstRange = dstRange;
885 
886  //The srcBpc check is possibly wrong but we seem to lack a definitive reference to test this
887  //and what we have in ticket 2939 looks better with this check
888  if (need_reinit && (c->srcBpc == 8 || !isYUV(c->srcFormat)))
890 
891  c->dstFormatBpp = av_get_bits_per_pixel(desc_dst);
892  c->srcFormatBpp = av_get_bits_per_pixel(desc_src);
893 
895  return sws_setColorspaceDetails(c->cascaded_context[c->cascaded_mainindex],inv_table, srcRange,table, dstRange, brightness, contrast, saturation);
896 
897  if (!need_reinit)
898  return 0;
899 
900  if ((isYUV(c->dstFormat) || isGray(c->dstFormat)) && (isYUV(c->srcFormat) || isGray(c->srcFormat))) {
901  if (!c->cascaded_context[0] &&
902  memcmp(c->dstColorspaceTable, c->srcColorspaceTable, sizeof(int) * 4) &&
903  c->srcW && c->srcH && c->dstW && c->dstH) {
904  enum AVPixelFormat tmp_format;
905  int tmp_width, tmp_height;
906  int srcW = c->srcW;
907  int srcH = c->srcH;
908  int dstW = c->dstW;
909  int dstH = c->dstH;
910  int ret;
911  av_log(c, AV_LOG_VERBOSE, "YUV color matrix differs for YUV->YUV, using intermediate RGB to convert\n");
912 
913  if (isNBPS(c->dstFormat) || is16BPS(c->dstFormat)) {
914  if (isALPHA(c->srcFormat) && isALPHA(c->dstFormat)) {
915  tmp_format = AV_PIX_FMT_BGRA64;
916  } else {
917  tmp_format = AV_PIX_FMT_BGR48;
918  }
919  } else {
920  if (isALPHA(c->srcFormat) && isALPHA(c->dstFormat)) {
921  tmp_format = AV_PIX_FMT_BGRA;
922  } else {
923  tmp_format = AV_PIX_FMT_BGR24;
924  }
925  }
926 
927  if (srcW*srcH > dstW*dstH) {
928  tmp_width = dstW;
929  tmp_height = dstH;
930  } else {
931  tmp_width = srcW;
932  tmp_height = srcH;
933  }
934 
936  tmp_width, tmp_height, tmp_format, 64);
937  if (ret < 0)
938  return ret;
939 
940  c->cascaded_context[0] = sws_alloc_set_opts(srcW, srcH, c->srcFormat,
941  tmp_width, tmp_height, tmp_format,
942  c->flags, c->param);
943  if (!c->cascaded_context[0])
944  return -1;
945 
947  ret = sws_init_context(c->cascaded_context[0], NULL , NULL);
948  if (ret < 0)
949  return ret;
950  //we set both src and dst depending on that the RGB side will be ignored
952  srcRange, table, dstRange,
953  brightness, contrast, saturation);
954 
955  c->cascaded_context[1] = sws_getContext(tmp_width, tmp_height, tmp_format,
956  dstW, dstH, c->dstFormat,
957  c->flags, NULL, NULL, c->param);
958  if (!c->cascaded_context[1])
959  return -1;
961  srcRange, table, dstRange,
962  0, 1 << 16, 1 << 16);
963  return 0;
964  }
965  return -1;
966  }
967 
968  if (!isYUV(c->dstFormat) && !isGray(c->dstFormat)) {
969  ff_yuv2rgb_c_init_tables(c, inv_table, srcRange, brightness,
970  contrast, saturation);
971  // FIXME factorize
972 
973  if (ARCH_PPC)
974  ff_yuv2rgb_init_tables_ppc(c, inv_table, brightness,
975  contrast, saturation);
976  }
977 
978  fill_rgb2yuv_table(c, table, dstRange);
979 
980  return 0;
981 }
982 
983 int sws_getColorspaceDetails(struct SwsContext *c, int **inv_table,
984  int *srcRange, int **table, int *dstRange,
985  int *brightness, int *contrast, int *saturation)
986 {
987  if (!c )
988  return -1;
989 
990  *inv_table = c->srcColorspaceTable;
991  *table = c->dstColorspaceTable;
992  *srcRange = c->srcRange;
993  *dstRange = c->dstRange;
994  *brightness = c->brightness;
995  *contrast = c->contrast;
996  *saturation = c->saturation;
997 
998  return 0;
999 }
1000 
1002 {
1003  switch (*format) {
1004  case AV_PIX_FMT_YUVJ420P:
1005  *format = AV_PIX_FMT_YUV420P;
1006  return 1;
1007  case AV_PIX_FMT_YUVJ411P:
1008  *format = AV_PIX_FMT_YUV411P;
1009  return 1;
1010  case AV_PIX_FMT_YUVJ422P:
1011  *format = AV_PIX_FMT_YUV422P;
1012  return 1;
1013  case AV_PIX_FMT_YUVJ444P:
1014  *format = AV_PIX_FMT_YUV444P;
1015  return 1;
1016  case AV_PIX_FMT_YUVJ440P:
1017  *format = AV_PIX_FMT_YUV440P;
1018  return 1;
1019  case AV_PIX_FMT_GRAY8:
1020  case AV_PIX_FMT_YA8:
1021  case AV_PIX_FMT_GRAY9LE:
1022  case AV_PIX_FMT_GRAY9BE:
1023  case AV_PIX_FMT_GRAY10LE:
1024  case AV_PIX_FMT_GRAY10BE:
1025  case AV_PIX_FMT_GRAY12LE:
1026  case AV_PIX_FMT_GRAY12BE:
1027  case AV_PIX_FMT_GRAY16LE:
1028  case AV_PIX_FMT_GRAY16BE:
1029  case AV_PIX_FMT_YA16BE:
1030  case AV_PIX_FMT_YA16LE:
1031  return 1;
1032  default:
1033  return 0;
1034  }
1035 }
1036 
1038 {
1039  switch (*format) {
1040  case AV_PIX_FMT_0BGR : *format = AV_PIX_FMT_ABGR ; return 1;
1041  case AV_PIX_FMT_BGR0 : *format = AV_PIX_FMT_BGRA ; return 4;
1042  case AV_PIX_FMT_0RGB : *format = AV_PIX_FMT_ARGB ; return 1;
1043  case AV_PIX_FMT_RGB0 : *format = AV_PIX_FMT_RGBA ; return 4;
1044  default: return 0;
1045  }
1046 }
1047 
1049 {
1050  switch (*format) {
1051  case AV_PIX_FMT_XYZ12BE : *format = AV_PIX_FMT_RGB48BE; return 1;
1052  case AV_PIX_FMT_XYZ12LE : *format = AV_PIX_FMT_RGB48LE; return 1;
1053  default: return 0;
1054  }
1055 }
1056 
1058 {
1059  c->src0Alpha |= handle_0alpha(&c->srcFormat);
1060  c->dst0Alpha |= handle_0alpha(&c->dstFormat);
1061  c->srcXYZ |= handle_xyz(&c->srcFormat);
1062  c->dstXYZ |= handle_xyz(&c->dstFormat);
1063  if (c->srcXYZ || c->dstXYZ)
1064  fill_xyztables(c);
1065 }
1066 
1068 {
1069  SwsContext *c = av_mallocz(sizeof(SwsContext));
1070 
1071  av_assert0(offsetof(SwsContext, redDither) + DITHER32_INT == offsetof(SwsContext, dither32));
1072 
1073  if (c) {
1076  }
1077 
1078  return c;
1079 }
1080 
1081 static uint16_t * alloc_gamma_tbl(double e)
1082 {
1083  int i = 0;
1084  uint16_t * tbl;
1085  tbl = (uint16_t*)av_malloc(sizeof(uint16_t) * 1 << 16);
1086  if (!tbl)
1087  return NULL;
1088 
1089  for (i = 0; i < 65536; ++i) {
1090  tbl[i] = pow(i / 65535.0, e) * 65535.0;
1091  }
1092  return tbl;
1093 }
1094 
1096 {
1097  switch(fmt) {
1098  case AV_PIX_FMT_ARGB: return AV_PIX_FMT_RGB24;
1099  case AV_PIX_FMT_RGBA: return AV_PIX_FMT_RGB24;
1100  case AV_PIX_FMT_ABGR: return AV_PIX_FMT_BGR24;
1101  case AV_PIX_FMT_BGRA: return AV_PIX_FMT_BGR24;
1102  case AV_PIX_FMT_YA8: return AV_PIX_FMT_GRAY8;
1103 
1107 
1108  case AV_PIX_FMT_GBRAP: return AV_PIX_FMT_GBRP;
1109 
1112 
1115 
1118 
1123 
1124  case AV_PIX_FMT_YA16BE: return AV_PIX_FMT_GRAY16;
1125  case AV_PIX_FMT_YA16LE: return AV_PIX_FMT_GRAY16;
1126 
1145 
1146 // case AV_PIX_FMT_AYUV64LE:
1147 // case AV_PIX_FMT_AYUV64BE:
1148 // case AV_PIX_FMT_PAL8:
1149  default: return AV_PIX_FMT_NONE;
1150  }
1151 }
1152 
1154  SwsFilter *dstFilter)
1155 {
1156  int i;
1157  int usesVFilter, usesHFilter;
1158  int unscaled;
1159  SwsFilter dummyFilter = { NULL, NULL, NULL, NULL };
1160  int srcW = c->srcW;
1161  int srcH = c->srcH;
1162  int dstW = c->dstW;
1163  int dstH = c->dstH;
1164  int dst_stride = FFALIGN(dstW * sizeof(int16_t) + 66, 16);
1165  int flags, cpu_flags;
1166  enum AVPixelFormat srcFormat = c->srcFormat;
1167  enum AVPixelFormat dstFormat = c->dstFormat;
1168  const AVPixFmtDescriptor *desc_src;
1169  const AVPixFmtDescriptor *desc_dst;
1170  int ret = 0;
1171  enum AVPixelFormat tmpFmt;
1172 
1173  cpu_flags = av_get_cpu_flags();
1174  flags = c->flags;
1175  emms_c();
1176  if (!rgb15to16)
1178 
1179  unscaled = (srcW == dstW && srcH == dstH);
1180 
1181  c->srcRange |= handle_jpeg(&c->srcFormat);
1182  c->dstRange |= handle_jpeg(&c->dstFormat);
1183 
1184  if(srcFormat!=c->srcFormat || dstFormat!=c->dstFormat)
1185  av_log(c, AV_LOG_WARNING, "deprecated pixel format used, make sure you did set range correctly\n");
1186 
1187  if (!c->contrast && !c->saturation && !c->dstFormatBpp)
1188  sws_setColorspaceDetails(c, ff_yuv2rgb_coeffs[SWS_CS_DEFAULT], c->srcRange,
1189  ff_yuv2rgb_coeffs[SWS_CS_DEFAULT],
1190  c->dstRange, 0, 1 << 16, 1 << 16);
1191 
1192  handle_formats(c);
1193  srcFormat = c->srcFormat;
1194  dstFormat = c->dstFormat;
1195  desc_src = av_pix_fmt_desc_get(srcFormat);
1196  desc_dst = av_pix_fmt_desc_get(dstFormat);
1197 
1198  // If the source has no alpha then disable alpha blendaway
1199  if (c->src0Alpha)
1201 
1202  if (!(unscaled && sws_isSupportedEndiannessConversion(srcFormat) &&
1203  av_pix_fmt_swap_endianness(srcFormat) == dstFormat)) {
1204  if (!sws_isSupportedInput(srcFormat)) {
1205  av_log(c, AV_LOG_ERROR, "%s is not supported as input pixel format\n",
1206  av_get_pix_fmt_name(srcFormat));
1207  return AVERROR(EINVAL);
1208  }
1209  if (!sws_isSupportedOutput(dstFormat)) {
1210  av_log(c, AV_LOG_ERROR, "%s is not supported as output pixel format\n",
1211  av_get_pix_fmt_name(dstFormat));
1212  return AVERROR(EINVAL);
1213  }
1214  }
1215  av_assert2(desc_src && desc_dst);
1216 
1217  i = flags & (SWS_POINT |
1218  SWS_AREA |
1219  SWS_BILINEAR |
1221  SWS_BICUBIC |
1222  SWS_X |
1223  SWS_GAUSS |
1224  SWS_LANCZOS |
1225  SWS_SINC |
1226  SWS_SPLINE |
1227  SWS_BICUBLIN);
1228 
1229  /* provide a default scaler if not set by caller */
1230  if (!i) {
1231  if (dstW < srcW && dstH < srcH)
1232  flags |= SWS_BICUBIC;
1233  else if (dstW > srcW && dstH > srcH)
1234  flags |= SWS_BICUBIC;
1235  else
1236  flags |= SWS_BICUBIC;
1237  c->flags = flags;
1238  } else if (i & (i - 1)) {
1239  av_log(c, AV_LOG_ERROR,
1240  "Exactly one scaler algorithm must be chosen, got %X\n", i);
1241  return AVERROR(EINVAL);
1242  }
1243  /* sanity check */
1244  if (srcW < 1 || srcH < 1 || dstW < 1 || dstH < 1) {
1245  /* FIXME check if these are enough and try to lower them after
1246  * fixing the relevant parts of the code */
1247  av_log(c, AV_LOG_ERROR, "%dx%d -> %dx%d is invalid scaling dimension\n",
1248  srcW, srcH, dstW, dstH);
1249  return AVERROR(EINVAL);
1250  }
1251  if (flags & SWS_FAST_BILINEAR) {
1252  if (srcW < 8 || dstW < 8) {
1253  flags ^= SWS_FAST_BILINEAR | SWS_BILINEAR;
1254  c->flags = flags;
1255  }
1256  }
1257 
1258  if (!dstFilter)
1259  dstFilter = &dummyFilter;
1260  if (!srcFilter)
1261  srcFilter = &dummyFilter;
1262 
1263  c->lumXInc = (((int64_t)srcW << 16) + (dstW >> 1)) / dstW;
1264  c->lumYInc = (((int64_t)srcH << 16) + (dstH >> 1)) / dstH;
1265  c->dstFormatBpp = av_get_bits_per_pixel(desc_dst);
1266  c->srcFormatBpp = av_get_bits_per_pixel(desc_src);
1267  c->vRounder = 4 * 0x0001000100010001ULL;
1268 
1269  usesVFilter = (srcFilter->lumV && srcFilter->lumV->length > 1) ||
1270  (srcFilter->chrV && srcFilter->chrV->length > 1) ||
1271  (dstFilter->lumV && dstFilter->lumV->length > 1) ||
1272  (dstFilter->chrV && dstFilter->chrV->length > 1);
1273  usesHFilter = (srcFilter->lumH && srcFilter->lumH->length > 1) ||
1274  (srcFilter->chrH && srcFilter->chrH->length > 1) ||
1275  (dstFilter->lumH && dstFilter->lumH->length > 1) ||
1276  (dstFilter->chrH && dstFilter->chrH->length > 1);
1277 
1280 
1281  if (isAnyRGB(dstFormat) && !(flags&SWS_FULL_CHR_H_INT)) {
1282  if (dstW&1) {
1283  av_log(c, AV_LOG_DEBUG, "Forcing full internal H chroma due to odd output size\n");
1284  flags |= SWS_FULL_CHR_H_INT;
1285  c->flags = flags;
1286  }
1287 
1288  if ( c->chrSrcHSubSample == 0
1289  && c->chrSrcVSubSample == 0
1290  && c->dither != SWS_DITHER_BAYER //SWS_FULL_CHR_H_INT is currently not supported with SWS_DITHER_BAYER
1291  && !(c->flags & SWS_FAST_BILINEAR)
1292  ) {
1293  av_log(c, AV_LOG_DEBUG, "Forcing full internal H chroma due to input having non subsampled chroma\n");
1294  flags |= SWS_FULL_CHR_H_INT;
1295  c->flags = flags;
1296  }
1297  }
1298 
1299  if (c->dither == SWS_DITHER_AUTO) {
1300  if (flags & SWS_ERROR_DIFFUSION)
1301  c->dither = SWS_DITHER_ED;
1302  }
1303 
1304  if(dstFormat == AV_PIX_FMT_BGR4_BYTE ||
1305  dstFormat == AV_PIX_FMT_RGB4_BYTE ||
1306  dstFormat == AV_PIX_FMT_BGR8 ||
1307  dstFormat == AV_PIX_FMT_RGB8) {
1308  if (c->dither == SWS_DITHER_AUTO)
1310  if (!(flags & SWS_FULL_CHR_H_INT)) {
1312  av_log(c, AV_LOG_DEBUG,
1313  "Desired dithering only supported in full chroma interpolation for destination format '%s'\n",
1314  av_get_pix_fmt_name(dstFormat));
1315  flags |= SWS_FULL_CHR_H_INT;
1316  c->flags = flags;
1317  }
1318  }
1319  if (flags & SWS_FULL_CHR_H_INT) {
1320  if (c->dither == SWS_DITHER_BAYER) {
1321  av_log(c, AV_LOG_DEBUG,
1322  "Ordered dither is not supported in full chroma interpolation for destination format '%s'\n",
1323  av_get_pix_fmt_name(dstFormat));
1324  c->dither = SWS_DITHER_ED;
1325  }
1326  }
1327  }
1328  if (isPlanarRGB(dstFormat)) {
1329  if (!(flags & SWS_FULL_CHR_H_INT)) {
1330  av_log(c, AV_LOG_DEBUG,
1331  "%s output is not supported with half chroma resolution, switching to full\n",
1332  av_get_pix_fmt_name(dstFormat));
1333  flags |= SWS_FULL_CHR_H_INT;
1334  c->flags = flags;
1335  }
1336  }
1337 
1338  /* reuse chroma for 2 pixels RGB/BGR unless user wants full
1339  * chroma interpolation */
1340  if (flags & SWS_FULL_CHR_H_INT &&
1341  isAnyRGB(dstFormat) &&
1342  !isPlanarRGB(dstFormat) &&
1343  dstFormat != AV_PIX_FMT_RGBA64LE &&
1344  dstFormat != AV_PIX_FMT_RGBA64BE &&
1345  dstFormat != AV_PIX_FMT_BGRA64LE &&
1346  dstFormat != AV_PIX_FMT_BGRA64BE &&
1347  dstFormat != AV_PIX_FMT_RGB48LE &&
1348  dstFormat != AV_PIX_FMT_RGB48BE &&
1349  dstFormat != AV_PIX_FMT_BGR48LE &&
1350  dstFormat != AV_PIX_FMT_BGR48BE &&
1351  dstFormat != AV_PIX_FMT_RGBA &&
1352  dstFormat != AV_PIX_FMT_ARGB &&
1353  dstFormat != AV_PIX_FMT_BGRA &&
1354  dstFormat != AV_PIX_FMT_ABGR &&
1355  dstFormat != AV_PIX_FMT_RGB24 &&
1356  dstFormat != AV_PIX_FMT_BGR24 &&
1357  dstFormat != AV_PIX_FMT_BGR4_BYTE &&
1358  dstFormat != AV_PIX_FMT_RGB4_BYTE &&
1359  dstFormat != AV_PIX_FMT_BGR8 &&
1360  dstFormat != AV_PIX_FMT_RGB8
1361  ) {
1363  "full chroma interpolation for destination format '%s' not yet implemented\n",
1364  av_get_pix_fmt_name(dstFormat));
1365  flags &= ~SWS_FULL_CHR_H_INT;
1366  c->flags = flags;
1367  }
1368  if (isAnyRGB(dstFormat) && !(flags & SWS_FULL_CHR_H_INT))
1369  c->chrDstHSubSample = 1;
1370 
1371  // drop some chroma lines if the user wants it
1372  c->vChrDrop = (flags & SWS_SRC_V_CHR_DROP_MASK) >>
1374  c->chrSrcVSubSample += c->vChrDrop;
1375 
1376  /* drop every other pixel for chroma calculation unless user
1377  * wants full chroma */
1378  if (isAnyRGB(srcFormat) && !(flags & SWS_FULL_CHR_H_INP) &&
1379  srcFormat != AV_PIX_FMT_RGB8 && srcFormat != AV_PIX_FMT_BGR8 &&
1380  srcFormat != AV_PIX_FMT_RGB4 && srcFormat != AV_PIX_FMT_BGR4 &&
1381  srcFormat != AV_PIX_FMT_RGB4_BYTE && srcFormat != AV_PIX_FMT_BGR4_BYTE &&
1382  srcFormat != AV_PIX_FMT_GBRP9BE && srcFormat != AV_PIX_FMT_GBRP9LE &&
1383  srcFormat != AV_PIX_FMT_GBRP10BE && srcFormat != AV_PIX_FMT_GBRP10LE &&
1384  srcFormat != AV_PIX_FMT_GBRAP10BE && srcFormat != AV_PIX_FMT_GBRAP10LE &&
1385  srcFormat != AV_PIX_FMT_GBRP12BE && srcFormat != AV_PIX_FMT_GBRP12LE &&
1386  srcFormat != AV_PIX_FMT_GBRAP12BE && srcFormat != AV_PIX_FMT_GBRAP12LE &&
1387  srcFormat != AV_PIX_FMT_GBRP14BE && srcFormat != AV_PIX_FMT_GBRP14LE &&
1388  srcFormat != AV_PIX_FMT_GBRP16BE && srcFormat != AV_PIX_FMT_GBRP16LE &&
1389  srcFormat != AV_PIX_FMT_GBRAP16BE && srcFormat != AV_PIX_FMT_GBRAP16LE &&
1390  ((dstW >> c->chrDstHSubSample) <= (srcW >> 1) ||
1391  (flags & SWS_FAST_BILINEAR)))
1392  c->chrSrcHSubSample = 1;
1393 
1394  // Note the AV_CEIL_RSHIFT is so that we always round toward +inf.
1395  c->chrSrcW = AV_CEIL_RSHIFT(srcW, c->chrSrcHSubSample);
1396  c->chrSrcH = AV_CEIL_RSHIFT(srcH, c->chrSrcVSubSample);
1397  c->chrDstW = AV_CEIL_RSHIFT(dstW, c->chrDstHSubSample);
1398  c->chrDstH = AV_CEIL_RSHIFT(dstH, c->chrDstVSubSample);
1399 
1400  FF_ALLOCZ_OR_GOTO(c, c->formatConvBuffer, FFALIGN(srcW*2+78, 16) * 2, fail);
1401 
1402  c->srcBpc = desc_src->comp[0].depth;
1403  if (c->srcBpc < 8)
1404  c->srcBpc = 8;
1405  c->dstBpc = desc_dst->comp[0].depth;
1406  if (c->dstBpc < 8)
1407  c->dstBpc = 8;
1408  if (isAnyRGB(srcFormat) || srcFormat == AV_PIX_FMT_PAL8)
1409  c->srcBpc = 16;
1410  if (c->dstBpc == 16)
1411  dst_stride <<= 1;
1412 
1413  if (INLINE_MMXEXT(cpu_flags) && c->srcBpc == 8 && c->dstBpc <= 14) {
1414  c->canMMXEXTBeUsed = dstW >= srcW && (dstW & 31) == 0 &&
1415  c->chrDstW >= c->chrSrcW &&
1416  (srcW & 15) == 0;
1417  if (!c->canMMXEXTBeUsed && dstW >= srcW && c->chrDstW >= c->chrSrcW && (srcW & 15) == 0
1418 
1419  && (flags & SWS_FAST_BILINEAR)) {
1420  if (flags & SWS_PRINT_INFO)
1421  av_log(c, AV_LOG_INFO,
1422  "output width is not a multiple of 32 -> no MMXEXT scaler\n");
1423  }
1424  if (usesHFilter || isNBPS(c->srcFormat) || is16BPS(c->srcFormat) || isAnyRGB(c->srcFormat))
1425  c->canMMXEXTBeUsed = 0;
1426  } else
1427  c->canMMXEXTBeUsed = 0;
1428 
1429  c->chrXInc = (((int64_t)c->chrSrcW << 16) + (c->chrDstW >> 1)) / c->chrDstW;
1430  c->chrYInc = (((int64_t)c->chrSrcH << 16) + (c->chrDstH >> 1)) / c->chrDstH;
1431 
1432  /* Match pixel 0 of the src to pixel 0 of dst and match pixel n-2 of src
1433  * to pixel n-2 of dst, but only for the FAST_BILINEAR mode otherwise do
1434  * correct scaling.
1435  * n-2 is the last chrominance sample available.
1436  * This is not perfect, but no one should notice the difference, the more
1437  * correct variant would be like the vertical one, but that would require
1438  * some special code for the first and last pixel */
1439  if (flags & SWS_FAST_BILINEAR) {
1440  if (c->canMMXEXTBeUsed) {
1441  c->lumXInc += 20;
1442  c->chrXInc += 20;
1443  }
1444  // we don't use the x86 asm scaler if MMX is available
1445  else if (INLINE_MMX(cpu_flags) && c->dstBpc <= 14) {
1446  c->lumXInc = ((int64_t)(srcW - 2) << 16) / (dstW - 2) - 20;
1447  c->chrXInc = ((int64_t)(c->chrSrcW - 2) << 16) / (c->chrDstW - 2) - 20;
1448  }
1449  }
1450 
1451  // hardcoded for now
1452  c->gamma_value = 2.2;
1453  tmpFmt = AV_PIX_FMT_RGBA64LE;
1454 
1455 
1456  if (!unscaled && c->gamma_flag && (srcFormat != tmpFmt || dstFormat != tmpFmt)) {
1457  SwsContext *c2;
1458  c->cascaded_context[0] = NULL;
1459 
1461  srcW, srcH, tmpFmt, 64);
1462  if (ret < 0)
1463  return ret;
1464 
1465  c->cascaded_context[0] = sws_getContext(srcW, srcH, srcFormat,
1466  srcW, srcH, tmpFmt,
1467  flags, NULL, NULL, c->param);
1468  if (!c->cascaded_context[0]) {
1469  return -1;
1470  }
1471 
1472  c->cascaded_context[1] = sws_getContext(srcW, srcH, tmpFmt,
1473  dstW, dstH, tmpFmt,
1474  flags, srcFilter, dstFilter, c->param);
1475 
1476  if (!c->cascaded_context[1])
1477  return -1;
1478 
1479  c2 = c->cascaded_context[1];
1480  c2->is_internal_gamma = 1;
1481  c2->gamma = alloc_gamma_tbl( c->gamma_value);
1482  c2->inv_gamma = alloc_gamma_tbl(1.f/c->gamma_value);
1483  if (!c2->gamma || !c2->inv_gamma)
1484  return AVERROR(ENOMEM);
1485 
1486  // is_internal_flag is set after creating the context
1487  // to properly create the gamma convert FilterDescriptor
1488  // we have to re-initialize it
1489  ff_free_filters(c2);
1490  if (ff_init_filters(c2) < 0) {
1491  sws_freeContext(c2);
1492  return -1;
1493  }
1494 
1495  c->cascaded_context[2] = NULL;
1496  if (dstFormat != tmpFmt) {
1498  dstW, dstH, tmpFmt, 64);
1499  if (ret < 0)
1500  return ret;
1501 
1502  c->cascaded_context[2] = sws_getContext(dstW, dstH, tmpFmt,
1503  dstW, dstH, dstFormat,
1504  flags, NULL, NULL, c->param);
1505  if (!c->cascaded_context[2])
1506  return -1;
1507  }
1508  return 0;
1509  }
1510 
1511  if (isBayer(srcFormat)) {
1512  if (!unscaled ||
1513  (dstFormat != AV_PIX_FMT_RGB24 && dstFormat != AV_PIX_FMT_YUV420P)) {
1514  enum AVPixelFormat tmpFormat = AV_PIX_FMT_RGB24;
1515 
1517  srcW, srcH, tmpFormat, 64);
1518  if (ret < 0)
1519  return ret;
1520 
1521  c->cascaded_context[0] = sws_getContext(srcW, srcH, srcFormat,
1522  srcW, srcH, tmpFormat,
1523  flags, srcFilter, NULL, c->param);
1524  if (!c->cascaded_context[0])
1525  return -1;
1526 
1527  c->cascaded_context[1] = sws_getContext(srcW, srcH, tmpFormat,
1528  dstW, dstH, dstFormat,
1529  flags, NULL, dstFilter, c->param);
1530  if (!c->cascaded_context[1])
1531  return -1;
1532  return 0;
1533  }
1534  }
1535 
1536  if (CONFIG_SWSCALE_ALPHA && isALPHA(srcFormat) && !isALPHA(dstFormat)) {
1537  enum AVPixelFormat tmpFormat = alphaless_fmt(srcFormat);
1538 
1539  if (tmpFormat != AV_PIX_FMT_NONE && c->alphablend != SWS_ALPHA_BLEND_NONE)
1540  if (!unscaled ||
1541  dstFormat != tmpFormat ||
1542  usesHFilter || usesVFilter ||
1543  c->srcRange != c->dstRange
1544  ) {
1545  c->cascaded_mainindex = 1;
1547  srcW, srcH, tmpFormat, 64);
1548  if (ret < 0)
1549  return ret;
1550 
1551  c->cascaded_context[0] = sws_alloc_set_opts(srcW, srcH, srcFormat,
1552  srcW, srcH, tmpFormat,
1553  flags, c->param);
1554  if (!c->cascaded_context[0])
1555  return -1;
1557  ret = sws_init_context(c->cascaded_context[0], NULL , NULL);
1558  if (ret < 0)
1559  return ret;
1560 
1561  c->cascaded_context[1] = sws_alloc_set_opts(srcW, srcH, tmpFormat,
1562  dstW, dstH, dstFormat,
1563  flags, c->param);
1564  if (!c->cascaded_context[1])
1565  return -1;
1566 
1567  c->cascaded_context[1]->srcRange = c->srcRange;
1568  c->cascaded_context[1]->dstRange = c->dstRange;
1569  ret = sws_init_context(c->cascaded_context[1], srcFilter , dstFilter);
1570  if (ret < 0)
1571  return ret;
1572 
1573  return 0;
1574  }
1575  }
1576 
1577 #if HAVE_MMAP && HAVE_MPROTECT && defined(MAP_ANONYMOUS)
1578 #define USE_MMAP 1
1579 #else
1580 #define USE_MMAP 0
1581 #endif
1582 
1583  /* precalculate horizontal scaler filter coefficients */
1584  {
1585 #if HAVE_MMXEXT_INLINE
1586 // can't downscale !!!
1587  if (c->canMMXEXTBeUsed && (flags & SWS_FAST_BILINEAR)) {
1589  NULL, NULL, 8);
1591  NULL, NULL, NULL, 4);
1592 
1593 #if USE_MMAP
1595  PROT_READ | PROT_WRITE,
1596  MAP_PRIVATE | MAP_ANONYMOUS,
1597  -1, 0);
1599  PROT_READ | PROT_WRITE,
1600  MAP_PRIVATE | MAP_ANONYMOUS,
1601  -1, 0);
1602 #elif HAVE_VIRTUALALLOC
1603  c->lumMmxextFilterCode = VirtualAlloc(NULL,
1605  MEM_COMMIT,
1606  PAGE_EXECUTE_READWRITE);
1607  c->chrMmxextFilterCode = VirtualAlloc(NULL,
1609  MEM_COMMIT,
1610  PAGE_EXECUTE_READWRITE);
1611 #else
1614 #endif
1615 
1616 #ifdef MAP_ANONYMOUS
1617  if (c->lumMmxextFilterCode == MAP_FAILED || c->chrMmxextFilterCode == MAP_FAILED)
1618 #else
1620 #endif
1621  {
1622  av_log(c, AV_LOG_ERROR, "Failed to allocate MMX2FilterCode\n");
1623  return AVERROR(ENOMEM);
1624  }
1625 
1626  FF_ALLOCZ_OR_GOTO(c, c->hLumFilter, (dstW / 8 + 8) * sizeof(int16_t), fail);
1627  FF_ALLOCZ_OR_GOTO(c, c->hChrFilter, (c->chrDstW / 4 + 8) * sizeof(int16_t), fail);
1628  FF_ALLOCZ_OR_GOTO(c, c->hLumFilterPos, (dstW / 2 / 8 + 8) * sizeof(int32_t), fail);
1629  FF_ALLOCZ_OR_GOTO(c, c->hChrFilterPos, (c->chrDstW / 2 / 4 + 8) * sizeof(int32_t), fail);
1630 
1632  c->hLumFilter, (uint32_t*)c->hLumFilterPos, 8);
1634  c->hChrFilter, (uint32_t*)c->hChrFilterPos, 4);
1635 
1636 #if USE_MMAP
1637  if ( mprotect(c->lumMmxextFilterCode, c->lumMmxextFilterCodeSize, PROT_EXEC | PROT_READ) == -1
1638  || mprotect(c->chrMmxextFilterCode, c->chrMmxextFilterCodeSize, PROT_EXEC | PROT_READ) == -1) {
1639  av_log(c, AV_LOG_ERROR, "mprotect failed, cannot use fast bilinear scaler\n");
1640  goto fail;
1641  }
1642 #endif
1643  } else
1644 #endif /* HAVE_MMXEXT_INLINE */
1645  {
1646  const int filterAlign = X86_MMX(cpu_flags) ? 4 :
1647  PPC_ALTIVEC(cpu_flags) ? 8 :
1648  have_neon(cpu_flags) ? 8 : 1;
1649 
1650  if ((ret = initFilter(&c->hLumFilter, &c->hLumFilterPos,
1651  &c->hLumFilterSize, c->lumXInc,
1652  srcW, dstW, filterAlign, 1 << 14,
1653  (flags & SWS_BICUBLIN) ? (flags | SWS_BICUBIC) : flags,
1654  cpu_flags, srcFilter->lumH, dstFilter->lumH,
1655  c->param,
1656  get_local_pos(c, 0, 0, 0),
1657  get_local_pos(c, 0, 0, 0))) < 0)
1658  goto fail;
1659  if ((ret = initFilter(&c->hChrFilter, &c->hChrFilterPos,
1660  &c->hChrFilterSize, c->chrXInc,
1661  c->chrSrcW, c->chrDstW, filterAlign, 1 << 14,
1662  (flags & SWS_BICUBLIN) ? (flags | SWS_BILINEAR) : flags,
1663  cpu_flags, srcFilter->chrH, dstFilter->chrH,
1664  c->param,
1666  get_local_pos(c, c->chrDstHSubSample, c->dst_h_chr_pos, 0))) < 0)
1667  goto fail;
1668  }
1669  } // initialize horizontal stuff
1670 
1671  /* precalculate vertical scaler filter coefficients */
1672  {
1673  const int filterAlign = X86_MMX(cpu_flags) ? 2 :
1674  PPC_ALTIVEC(cpu_flags) ? 8 :
1675  have_neon(cpu_flags) ? 2 : 1;
1676 
1677  if ((ret = initFilter(&c->vLumFilter, &c->vLumFilterPos, &c->vLumFilterSize,
1678  c->lumYInc, srcH, dstH, filterAlign, (1 << 12),
1679  (flags & SWS_BICUBLIN) ? (flags | SWS_BICUBIC) : flags,
1680  cpu_flags, srcFilter->lumV, dstFilter->lumV,
1681  c->param,
1682  get_local_pos(c, 0, 0, 1),
1683  get_local_pos(c, 0, 0, 1))) < 0)
1684  goto fail;
1685  if ((ret = initFilter(&c->vChrFilter, &c->vChrFilterPos, &c->vChrFilterSize,
1686  c->chrYInc, c->chrSrcH, c->chrDstH,
1687  filterAlign, (1 << 12),
1688  (flags & SWS_BICUBLIN) ? (flags | SWS_BILINEAR) : flags,
1689  cpu_flags, srcFilter->chrV, dstFilter->chrV,
1690  c->param,
1692  get_local_pos(c, c->chrDstVSubSample, c->dst_v_chr_pos, 1))) < 0)
1693 
1694  goto fail;
1695 
1696 #if HAVE_ALTIVEC
1697  FF_ALLOC_OR_GOTO(c, c->vYCoeffsBank, sizeof(vector signed short) * c->vLumFilterSize * c->dstH, fail);
1698  FF_ALLOC_OR_GOTO(c, c->vCCoeffsBank, sizeof(vector signed short) * c->vChrFilterSize * c->chrDstH, fail);
1699 
1700  for (i = 0; i < c->vLumFilterSize * c->dstH; i++) {
1701  int j;
1702  short *p = (short *)&c->vYCoeffsBank[i];
1703  for (j = 0; j < 8; j++)
1704  p[j] = c->vLumFilter[i];
1705  }
1706 
1707  for (i = 0; i < c->vChrFilterSize * c->chrDstH; i++) {
1708  int j;
1709  short *p = (short *)&c->vCCoeffsBank[i];
1710  for (j = 0; j < 8; j++)
1711  p[j] = c->vChrFilter[i];
1712  }
1713 #endif
1714  }
1715 
1716  for (i = 0; i < 4; i++)
1717  FF_ALLOCZ_OR_GOTO(c, c->dither_error[i], (c->dstW+2) * sizeof(int), fail);
1718 
1719  c->needAlpha = (CONFIG_SWSCALE_ALPHA && isALPHA(c->srcFormat) && isALPHA(c->dstFormat)) ? 1 : 0;
1720 
1721  // 64 / c->scalingBpp is the same as 16 / sizeof(scaling_intermediate)
1722  c->uv_off = (dst_stride>>1) + 64 / (c->dstBpc &~ 7);
1723  c->uv_offx2 = dst_stride + 16;
1724 
1725  av_assert0(c->chrDstH <= dstH);
1726 
1727  if (flags & SWS_PRINT_INFO) {
1728  const char *scaler = NULL, *cpucaps;
1729 
1730  for (i = 0; i < FF_ARRAY_ELEMS(scale_algorithms); i++) {
1731  if (flags & scale_algorithms[i].flag) {
1732  scaler = scale_algorithms[i].description;
1733  break;
1734  }
1735  }
1736  if (!scaler)
1737  scaler = "ehh flags invalid?!";
1738  av_log(c, AV_LOG_INFO, "%s scaler, from %s to %s%s ",
1739  scaler,
1740  av_get_pix_fmt_name(srcFormat),
1741 #ifdef DITHER1XBPP
1742  dstFormat == AV_PIX_FMT_BGR555 || dstFormat == AV_PIX_FMT_BGR565 ||
1743  dstFormat == AV_PIX_FMT_RGB444BE || dstFormat == AV_PIX_FMT_RGB444LE ||
1744  dstFormat == AV_PIX_FMT_BGR444BE || dstFormat == AV_PIX_FMT_BGR444LE ?
1745  "dithered " : "",
1746 #else
1747  "",
1748 #endif
1749  av_get_pix_fmt_name(dstFormat));
1750 
1751  if (INLINE_MMXEXT(cpu_flags))
1752  cpucaps = "MMXEXT";
1753  else if (INLINE_AMD3DNOW(cpu_flags))
1754  cpucaps = "3DNOW";
1755  else if (INLINE_MMX(cpu_flags))
1756  cpucaps = "MMX";
1757  else if (PPC_ALTIVEC(cpu_flags))
1758  cpucaps = "AltiVec";
1759  else
1760  cpucaps = "C";
1761 
1762  av_log(c, AV_LOG_INFO, "using %s\n", cpucaps);
1763 
1764  av_log(c, AV_LOG_VERBOSE, "%dx%d -> %dx%d\n", srcW, srcH, dstW, dstH);
1765  av_log(c, AV_LOG_DEBUG,
1766  "lum srcW=%d srcH=%d dstW=%d dstH=%d xInc=%d yInc=%d\n",
1767  c->srcW, c->srcH, c->dstW, c->dstH, c->lumXInc, c->lumYInc);
1768  av_log(c, AV_LOG_DEBUG,
1769  "chr srcW=%d srcH=%d dstW=%d dstH=%d xInc=%d yInc=%d\n",
1770  c->chrSrcW, c->chrSrcH, c->chrDstW, c->chrDstH,
1771  c->chrXInc, c->chrYInc);
1772  }
1773 
1774  /* alpha blend special case, note this has been split via cascaded contexts if its scaled */
1775  if (unscaled && !usesHFilter && !usesVFilter &&
1777  isALPHA(srcFormat) &&
1778  (c->srcRange == c->dstRange || isAnyRGB(dstFormat)) &&
1779  alphaless_fmt(srcFormat) == dstFormat
1780  ) {
1782 
1783  if (flags & SWS_PRINT_INFO)
1784  av_log(c, AV_LOG_INFO,
1785  "using alpha blendaway %s -> %s special converter\n",
1786  av_get_pix_fmt_name(srcFormat), av_get_pix_fmt_name(dstFormat));
1787  return 0;
1788  }
1789 
1790  /* unscaled special cases */
1791  if (unscaled && !usesHFilter && !usesVFilter &&
1792  (c->srcRange == c->dstRange || isAnyRGB(dstFormat))) {
1794 
1795  if (c->swscale) {
1796  if (flags & SWS_PRINT_INFO)
1797  av_log(c, AV_LOG_INFO,
1798  "using unscaled %s -> %s special converter\n",
1799  av_get_pix_fmt_name(srcFormat), av_get_pix_fmt_name(dstFormat));
1800  return 0;
1801  }
1802  }
1803 
1804  c->swscale = ff_getSwsFunc(c);
1805  return ff_init_filters(c);
1806 fail: // FIXME replace things by appropriate error codes
1807  if (ret == RETCODE_USE_CASCADE) {
1808  int tmpW = sqrt(srcW * (int64_t)dstW);
1809  int tmpH = sqrt(srcH * (int64_t)dstH);
1810  enum AVPixelFormat tmpFormat = AV_PIX_FMT_YUV420P;
1811 
1812  if (isALPHA(srcFormat))
1813  tmpFormat = AV_PIX_FMT_YUVA420P;
1814 
1815  if (srcW*(int64_t)srcH <= 4LL*dstW*dstH)
1816  return AVERROR(EINVAL);
1817 
1819  tmpW, tmpH, tmpFormat, 64);
1820  if (ret < 0)
1821  return ret;
1822 
1823  c->cascaded_context[0] = sws_getContext(srcW, srcH, srcFormat,
1824  tmpW, tmpH, tmpFormat,
1825  flags, srcFilter, NULL, c->param);
1826  if (!c->cascaded_context[0])
1827  return -1;
1828 
1829  c->cascaded_context[1] = sws_getContext(tmpW, tmpH, tmpFormat,
1830  dstW, dstH, dstFormat,
1831  flags, NULL, dstFilter, c->param);
1832  if (!c->cascaded_context[1])
1833  return -1;
1834  return 0;
1835  }
1836  return -1;
1837 }
1838 
1839 SwsContext *sws_alloc_set_opts(int srcW, int srcH, enum AVPixelFormat srcFormat,
1840  int dstW, int dstH, enum AVPixelFormat dstFormat,
1841  int flags, const double *param)
1842 {
1843  SwsContext *c;
1844 
1845  if (!(c = sws_alloc_context()))
1846  return NULL;
1847 
1848  c->flags = flags;
1849  c->srcW = srcW;
1850  c->srcH = srcH;
1851  c->dstW = dstW;
1852  c->dstH = dstH;
1853  c->srcFormat = srcFormat;
1854  c->dstFormat = dstFormat;
1855 
1856  if (param) {
1857  c->param[0] = param[0];
1858  c->param[1] = param[1];
1859  }
1860 
1861  return c;
1862 }
1863 
1864 SwsContext *sws_getContext(int srcW, int srcH, enum AVPixelFormat srcFormat,
1865  int dstW, int dstH, enum AVPixelFormat dstFormat,
1866  int flags, SwsFilter *srcFilter,
1867  SwsFilter *dstFilter, const double *param)
1868 {
1869  SwsContext *c;
1870 
1871  c = sws_alloc_set_opts(srcW, srcH, srcFormat,
1872  dstW, dstH, dstFormat,
1873  flags, param);
1874  if (!c)
1875  return NULL;
1876 
1877  if (sws_init_context(c, srcFilter, dstFilter) < 0) {
1878  sws_freeContext(c);
1879  return NULL;
1880  }
1881 
1882  return c;
1883 }
1884 
1885 static int isnan_vec(SwsVector *a)
1886 {
1887  int i;
1888  for (i=0; i<a->length; i++)
1889  if (isnan(a->coeff[i]))
1890  return 1;
1891  return 0;
1892 }
1893 
1894 static void makenan_vec(SwsVector *a)
1895 {
1896  int i;
1897  for (i=0; i<a->length; i++)
1898  a->coeff[i] = NAN;
1899 }
1900 
1901 SwsFilter *sws_getDefaultFilter(float lumaGBlur, float chromaGBlur,
1902  float lumaSharpen, float chromaSharpen,
1903  float chromaHShift, float chromaVShift,
1904  int verbose)
1905 {
1906  SwsFilter *filter = av_malloc(sizeof(SwsFilter));
1907  if (!filter)
1908  return NULL;
1909 
1910  if (lumaGBlur != 0.0) {
1911  filter->lumH = sws_getGaussianVec(lumaGBlur, 3.0);
1912  filter->lumV = sws_getGaussianVec(lumaGBlur, 3.0);
1913  } else {
1914  filter->lumH = sws_getIdentityVec();
1915  filter->lumV = sws_getIdentityVec();
1916  }
1917 
1918  if (chromaGBlur != 0.0) {
1919  filter->chrH = sws_getGaussianVec(chromaGBlur, 3.0);
1920  filter->chrV = sws_getGaussianVec(chromaGBlur, 3.0);
1921  } else {
1922  filter->chrH = sws_getIdentityVec();
1923  filter->chrV = sws_getIdentityVec();
1924  }
1925 
1926  if (!filter->lumH || !filter->lumV || !filter->chrH || !filter->chrV)
1927  goto fail;
1928 
1929  if (chromaSharpen != 0.0) {
1930  SwsVector *id = sws_getIdentityVec();
1931  if (!id)
1932  goto fail;
1933  sws_scaleVec(filter->chrH, -chromaSharpen);
1934  sws_scaleVec(filter->chrV, -chromaSharpen);
1935  sws_addVec(filter->chrH, id);
1936  sws_addVec(filter->chrV, id);
1937  sws_freeVec(id);
1938  }
1939 
1940  if (lumaSharpen != 0.0) {
1941  SwsVector *id = sws_getIdentityVec();
1942  if (!id)
1943  goto fail;
1944  sws_scaleVec(filter->lumH, -lumaSharpen);
1945  sws_scaleVec(filter->lumV, -lumaSharpen);
1946  sws_addVec(filter->lumH, id);
1947  sws_addVec(filter->lumV, id);
1948  sws_freeVec(id);
1949  }
1950 
1951  if (chromaHShift != 0.0)
1952  sws_shiftVec(filter->chrH, (int)(chromaHShift + 0.5));
1953 
1954  if (chromaVShift != 0.0)
1955  sws_shiftVec(filter->chrV, (int)(chromaVShift + 0.5));
1956 
1957  sws_normalizeVec(filter->chrH, 1.0);
1958  sws_normalizeVec(filter->chrV, 1.0);
1959  sws_normalizeVec(filter->lumH, 1.0);
1960  sws_normalizeVec(filter->lumV, 1.0);
1961 
1962  if (isnan_vec(filter->chrH) ||
1963  isnan_vec(filter->chrV) ||
1964  isnan_vec(filter->lumH) ||
1965  isnan_vec(filter->lumV))
1966  goto fail;
1967 
1968  if (verbose)
1969  sws_printVec2(filter->chrH, NULL, AV_LOG_DEBUG);
1970  if (verbose)
1971  sws_printVec2(filter->lumH, NULL, AV_LOG_DEBUG);
1972 
1973  return filter;
1974 
1975 fail:
1976  sws_freeVec(filter->lumH);
1977  sws_freeVec(filter->lumV);
1978  sws_freeVec(filter->chrH);
1979  sws_freeVec(filter->chrV);
1980  av_freep(&filter);
1981  return NULL;
1982 }
1983 
1985 {
1986  SwsVector *vec;
1987 
1988  if(length <= 0 || length > INT_MAX/ sizeof(double))
1989  return NULL;
1990 
1991  vec = av_malloc(sizeof(SwsVector));
1992  if (!vec)
1993  return NULL;
1994  vec->length = length;
1995  vec->coeff = av_malloc(sizeof(double) * length);
1996  if (!vec->coeff)
1997  av_freep(&vec);
1998  return vec;
1999 }
2000 
2001 SwsVector *sws_getGaussianVec(double variance, double quality)
2002 {
2003  const int length = (int)(variance * quality + 0.5) | 1;
2004  int i;
2005  double middle = (length - 1) * 0.5;
2006  SwsVector *vec;
2007 
2008  if(variance < 0 || quality < 0)
2009  return NULL;
2010 
2011  vec = sws_allocVec(length);
2012 
2013  if (!vec)
2014  return NULL;
2015 
2016  for (i = 0; i < length; i++) {
2017  double dist = i - middle;
2018  vec->coeff[i] = exp(-dist * dist / (2 * variance * variance)) /
2019  sqrt(2 * variance * M_PI);
2020  }
2021 
2022  sws_normalizeVec(vec, 1.0);
2023 
2024  return vec;
2025 }
2026 
2027 /**
2028  * Allocate and return a vector with length coefficients, all
2029  * with the same value c.
2030  */
2031 #if !FF_API_SWS_VECTOR
2032 static
2033 #endif
2035 {
2036  int i;
2037  SwsVector *vec = sws_allocVec(length);
2038 
2039  if (!vec)
2040  return NULL;
2041 
2042  for (i = 0; i < length; i++)
2043  vec->coeff[i] = c;
2044 
2045  return vec;
2046 }
2047 
2048 /**
2049  * Allocate and return a vector with just one coefficient, with
2050  * value 1.0.
2051  */
2052 #if !FF_API_SWS_VECTOR
2053 static
2054 #endif
2056 {
2057  return sws_getConstVec(1.0, 1);
2058 }
2059 
2060 static double sws_dcVec(SwsVector *a)
2061 {
2062  int i;
2063  double sum = 0;
2064 
2065  for (i = 0; i < a->length; i++)
2066  sum += a->coeff[i];
2067 
2068  return sum;
2069 }
2070 
2071 void sws_scaleVec(SwsVector *a, double scalar)
2072 {
2073  int i;
2074 
2075  for (i = 0; i < a->length; i++)
2076  a->coeff[i] *= scalar;
2077 }
2078 
2080 {
2081  sws_scaleVec(a, height / sws_dcVec(a));
2082 }
2083 
2084 #if FF_API_SWS_VECTOR
2086 {
2087  int length = a->length + b->length - 1;
2088  int i, j;
2089  SwsVector *vec = sws_getConstVec(0.0, length);
2090 
2091  if (!vec)
2092  return NULL;
2093 
2094  for (i = 0; i < a->length; i++) {
2095  for (j = 0; j < b->length; j++) {
2096  vec->coeff[i + j] += a->coeff[i] * b->coeff[j];
2097  }
2098  }
2099 
2100  return vec;
2101 }
2102 #endif
2103 
2105 {
2106  int length = FFMAX(a->length, b->length);
2107  int i;
2108  SwsVector *vec = sws_getConstVec(0.0, length);
2109 
2110  if (!vec)
2111  return NULL;
2112 
2113  for (i = 0; i < a->length; i++)
2114  vec->coeff[i + (length - 1) / 2 - (a->length - 1) / 2] += a->coeff[i];
2115  for (i = 0; i < b->length; i++)
2116  vec->coeff[i + (length - 1) / 2 - (b->length - 1) / 2] += b->coeff[i];
2117 
2118  return vec;
2119 }
2120 
2121 #if FF_API_SWS_VECTOR
2123 {
2124  int length = FFMAX(a->length, b->length);
2125  int i;
2126  SwsVector *vec = sws_getConstVec(0.0, length);
2127 
2128  if (!vec)
2129  return NULL;
2130 
2131  for (i = 0; i < a->length; i++)
2132  vec->coeff[i + (length - 1) / 2 - (a->length - 1) / 2] += a->coeff[i];
2133  for (i = 0; i < b->length; i++)
2134  vec->coeff[i + (length - 1) / 2 - (b->length - 1) / 2] -= b->coeff[i];
2135 
2136  return vec;
2137 }
2138 #endif
2139 
2140 /* shift left / or right if "shift" is negative */
2142 {
2143  int length = a->length + FFABS(shift) * 2;
2144  int i;
2145  SwsVector *vec = sws_getConstVec(0.0, length);
2146 
2147  if (!vec)
2148  return NULL;
2149 
2150  for (i = 0; i < a->length; i++) {
2151  vec->coeff[i + (length - 1) / 2 -
2152  (a->length - 1) / 2 - shift] = a->coeff[i];
2153  }
2154 
2155  return vec;
2156 }
2157 
2158 #if !FF_API_SWS_VECTOR
2159 static
2160 #endif
2162 {
2163  SwsVector *shifted = sws_getShiftedVec(a, shift);
2164  if (!shifted) {
2165  makenan_vec(a);
2166  return;
2167  }
2168  av_free(a->coeff);
2169  a->coeff = shifted->coeff;
2170  a->length = shifted->length;
2171  av_free(shifted);
2172 }
2173 
2174 #if !FF_API_SWS_VECTOR
2175 static
2176 #endif
2178 {
2179  SwsVector *sum = sws_sumVec(a, b);
2180  if (!sum) {
2181  makenan_vec(a);
2182  return;
2183  }
2184  av_free(a->coeff);
2185  a->coeff = sum->coeff;
2186  a->length = sum->length;
2187  av_free(sum);
2188 }
2189 
2190 #if FF_API_SWS_VECTOR
2192 {
2193  SwsVector *diff = sws_diffVec(a, b);
2194  if (!diff) {
2195  makenan_vec(a);
2196  return;
2197  }
2198  av_free(a->coeff);
2199  a->coeff = diff->coeff;
2200  a->length = diff->length;
2201  av_free(diff);
2202 }
2203 
2205 {
2206  SwsVector *conv = sws_getConvVec(a, b);
2207  if (!conv) {
2208  makenan_vec(a);
2209  return;
2210  }
2211  av_free(a->coeff);
2212  a->coeff = conv->coeff;
2213  a->length = conv->length;
2214  av_free(conv);
2215 }
2216 
2218 {
2219  SwsVector *vec = sws_allocVec(a->length);
2220 
2221  if (!vec)
2222  return NULL;
2223 
2224  memcpy(vec->coeff, a->coeff, a->length * sizeof(*a->coeff));
2225 
2226  return vec;
2227 }
2228 #endif
2229 
2230 /**
2231  * Print with av_log() a textual representation of the vector a
2232  * if log_level <= av_log_level.
2233  */
2234 #if !FF_API_SWS_VECTOR
2235 static
2236 #endif
2237 void sws_printVec2(SwsVector *a, AVClass *log_ctx, int log_level)
2238 {
2239  int i;
2240  double max = 0;
2241  double min = 0;
2242  double range;
2243 
2244  for (i = 0; i < a->length; i++)
2245  if (a->coeff[i] > max)
2246  max = a->coeff[i];
2247 
2248  for (i = 0; i < a->length; i++)
2249  if (a->coeff[i] < min)
2250  min = a->coeff[i];
2251 
2252  range = max - min;
2253 
2254  for (i = 0; i < a->length; i++) {
2255  int x = (int)((a->coeff[i] - min) * 60.0 / range + 0.5);
2256  av_log(log_ctx, log_level, "%1.3f ", a->coeff[i]);
2257  for (; x > 0; x--)
2258  av_log(log_ctx, log_level, " ");
2259  av_log(log_ctx, log_level, "|\n");
2260  }
2261 }
2262 
2264 {
2265  if (!a)
2266  return;
2267  av_freep(&a->coeff);
2268  a->length = 0;
2269  av_free(a);
2270 }
2271 
2273 {
2274  if (!filter)
2275  return;
2276 
2277  sws_freeVec(filter->lumH);
2278  sws_freeVec(filter->lumV);
2279  sws_freeVec(filter->chrH);
2280  sws_freeVec(filter->chrV);
2281  av_free(filter);
2282 }
2283 
2285 {
2286  int i;
2287  if (!c)
2288  return;
2289 
2290  for (i = 0; i < 4; i++)
2291  av_freep(&c->dither_error[i]);
2292 
2293  av_freep(&c->vLumFilter);
2294  av_freep(&c->vChrFilter);
2295  av_freep(&c->hLumFilter);
2296  av_freep(&c->hChrFilter);
2297 #if HAVE_ALTIVEC
2298  av_freep(&c->vYCoeffsBank);
2299  av_freep(&c->vCCoeffsBank);
2300 #endif
2301 
2302  av_freep(&c->vLumFilterPos);
2303  av_freep(&c->vChrFilterPos);
2304  av_freep(&c->hLumFilterPos);
2305  av_freep(&c->hChrFilterPos);
2306 
2307 #if HAVE_MMX_INLINE
2308 #if USE_MMAP
2309  if (c->lumMmxextFilterCode)
2311  if (c->chrMmxextFilterCode)
2313 #elif HAVE_VIRTUALALLOC
2314  if (c->lumMmxextFilterCode)
2315  VirtualFree(c->lumMmxextFilterCode, 0, MEM_RELEASE);
2316  if (c->chrMmxextFilterCode)
2317  VirtualFree(c->chrMmxextFilterCode, 0, MEM_RELEASE);
2318 #else
2321 #endif
2324 #endif /* HAVE_MMX_INLINE */
2325 
2326  av_freep(&c->yuvTable);
2328 
2332  memset(c->cascaded_context, 0, sizeof(c->cascaded_context));
2333  av_freep(&c->cascaded_tmp[0]);
2334  av_freep(&c->cascaded1_tmp[0]);
2335 
2336  av_freep(&c->gamma);
2337  av_freep(&c->inv_gamma);
2338 
2339  ff_free_filters(c);
2340 
2341  av_free(c);
2342 }
2343 
2344 struct SwsContext *sws_getCachedContext(struct SwsContext *context, int srcW,
2345  int srcH, enum AVPixelFormat srcFormat,
2346  int dstW, int dstH,
2347  enum AVPixelFormat dstFormat, int flags,
2348  SwsFilter *srcFilter,
2349  SwsFilter *dstFilter,
2350  const double *param)
2351 {
2352  static const double default_param[2] = { SWS_PARAM_DEFAULT,
2354  int64_t src_h_chr_pos = -513, dst_h_chr_pos = -513,
2355  src_v_chr_pos = -513, dst_v_chr_pos = -513;
2356 
2357  if (!param)
2358  param = default_param;
2359 
2360  if (context &&
2361  (context->srcW != srcW ||
2362  context->srcH != srcH ||
2363  context->srcFormat != srcFormat ||
2364  context->dstW != dstW ||
2365  context->dstH != dstH ||
2366  context->dstFormat != dstFormat ||
2367  context->flags != flags ||
2368  context->param[0] != param[0] ||
2369  context->param[1] != param[1])) {
2370 
2371  av_opt_get_int(context, "src_h_chr_pos", 0, &src_h_chr_pos);
2372  av_opt_get_int(context, "src_v_chr_pos", 0, &src_v_chr_pos);
2373  av_opt_get_int(context, "dst_h_chr_pos", 0, &dst_h_chr_pos);
2374  av_opt_get_int(context, "dst_v_chr_pos", 0, &dst_v_chr_pos);
2375  sws_freeContext(context);
2376  context = NULL;
2377  }
2378 
2379  if (!context) {
2380  if (!(context = sws_alloc_context()))
2381  return NULL;
2382  context->srcW = srcW;
2383  context->srcH = srcH;
2384  context->srcFormat = srcFormat;
2385  context->dstW = dstW;
2386  context->dstH = dstH;
2387  context->dstFormat = dstFormat;
2388  context->flags = flags;
2389  context->param[0] = param[0];
2390  context->param[1] = param[1];
2391 
2392  av_opt_set_int(context, "src_h_chr_pos", src_h_chr_pos, 0);
2393  av_opt_set_int(context, "src_v_chr_pos", src_v_chr_pos, 0);
2394  av_opt_set_int(context, "dst_h_chr_pos", dst_h_chr_pos, 0);
2395  av_opt_set_int(context, "dst_v_chr_pos", dst_v_chr_pos, 0);
2396 
2397  if (sws_init_context(context, srcFilter, dstFilter) < 0) {
2398  sws_freeContext(context);
2399  return NULL;
2400  }
2401  }
2402  return context;
2403 }
packed YUV 4:2:2, 16bpp, Cb Y0 Cr Y1
Definition: pixfmt.h:82
SwsVector * chrV
Definition: swscale.h:119
uint8_t is_supported_out
Definition: utils.c:94
planar GBR 4:4:4:4 40bpp, little-endian
Definition: pixfmt.h:305
#define NULL
Definition: coverity.c:32
int sws_isSupportedOutput(enum AVPixelFormat pix_fmt)
Return a positive value if pix_fmt is a supported output format, 0 otherwise.
Definition: utils.c:267
static const FormatEntry format_entries[AV_PIX_FMT_NB]
Definition: utils.c:98
planar YUV 4:2:2, 18bpp, (1 Cr & Cb sample per 2x1 Y samples), big-endian
Definition: pixfmt.h:177
static av_always_inline int isAnyRGB(enum AVPixelFormat pix_fmt)
planar YUV 4:4:0,20bpp, (1 Cr & Cb sample per 1x2 Y samples), little-endian
Definition: pixfmt.h:289
const char * s
Definition: avisynth_c.h:768
planar YUV 4:4:4,42bpp, (1 Cr & Cb sample per 1x1 Y samples), big-endian
Definition: pixfmt.h:266
static enum AVPixelFormat pix_fmt
static SwsVector * sws_sumVec(SwsVector *a, SwsVector *b)
Definition: utils.c:2104
av_cold void ff_yuv2rgb_init_tables_ppc(SwsContext *c, const int inv_table[4], int brightness, int contrast, int saturation)
static int shift(int a, int b)
Definition: sonic.c:82
static int handle_0alpha(enum AVPixelFormat *format)
Definition: utils.c:1037
planar YUV 4:2:0,21bpp, (1 Cr & Cb sample per 2x2 Y samples), little-endian
Definition: pixfmt.h:259
#define SWS_SRC_V_CHR_DROP_MASK
Definition: swscale.h:70
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2419
int chrSrcH
Height of source chroma planes.
#define FF_ALLOCZ_ARRAY_OR_GOTO(ctx, p, nelem, elsize, label)
Definition: internal.h:160
#define SWS_X
Definition: swscale.h:61
int ff_free_filters(SwsContext *c)
Definition: slice.c:377
static av_always_inline int isPlanarRGB(enum AVPixelFormat pix_fmt)
#define LIBSWSCALE_VERSION_MICRO
Definition: version.h:31
#define RV_IDX
#define SWS_BICUBIC
Definition: swscale.h:60
uint8_t * chrMmxextFilterCode
Runtime-generated MMXEXT horizontal fast bilinear scaler code for chroma planes.
static void fill_rgb2yuv_table(SwsContext *c, const int table[4], int dstRange)
Definition: utils.c:718
planar YUV 4:2:2,28bpp, (1 Cr & Cb sample per 2x1 Y samples), little-endian
Definition: pixfmt.h:263
planar YUV 4:2:0, 15bpp, (1 Cr & Cb sample per 2x2 Y samples), little-endian
Definition: pixfmt.h:170
#define BV_IDX
static int conv(int samples, float **pcm, char *buf, int channels)
Definition: libvorbisdec.c:120
#define C
8 bits gray, 8 bits alpha
Definition: pixfmt.h:154
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:220
uint8_t * lumMmxextFilterCode
Runtime-generated MMXEXT horizontal fast bilinear scaler code for luma/alpha planes.
const char * fmt
Definition: avisynth_c.h:769
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition: pixfmt.h:67
misc image utilities
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:182
SwsVector * lumV
Definition: swscale.h:117
int16_t * rgbgamma
packed RGB 8:8:8, 24bpp, RGBRGB...
Definition: pixfmt.h:64
packed RGB 1:2:1 bitstream, 4bpp, (msb)1B 2G 1R(lsb), a byte contains two pixels, the first pixel in ...
Definition: pixfmt.h:85
static av_cold int get_local_pos(SwsContext *s, int chr_subsample, int pos, int dir)
Definition: utils.c:292
Definition: vf_geq.c:47
SwsAlphaBlend alphablend
int sws_getColorspaceDetails(struct SwsContext *c, int **inv_table, int *srcRange, int **table, int *dstRange, int *brightness, int *contrast, int *saturation)
Definition: utils.c:983
int av_image_alloc(uint8_t *pointers[4], int linesizes[4], int w, int h, enum AVPixelFormat pix_fmt, int align)
Allocate an image with size w and h and pixel format pix_fmt, and fill pointers and linesizes accordi...
Definition: imgutils.c:192
planar YUV 4:4:4, 27bpp, (1 Cr & Cb sample per 1x1 Y samples), big-endian
Definition: pixfmt.h:173
int acc
Definition: yuv2rgb.c:546
int av_get_bits_per_pixel(const AVPixFmtDescriptor *pixdesc)
Return the number of bits per pixel used by the pixel format described by pixdesc.
Definition: pixdesc.c:2371
SwsVector * sws_getGaussianVec(double variance, double quality)
Return a normalized Gaussian curve used to filter stuff quality = 3 is high quality, lower is lower quality.
Definition: utils.c:2001
planar YUV 4:4:4,36bpp, (1 Cr & Cb sample per 1x1 Y samples), big-endian
Definition: pixfmt.h:264
bayer, GBGB..(odd line), RGRG..(even line), 8-bit samples */
Definition: pixfmt.h:276
void av_opt_set_defaults(void *s)
Set the values of all AVOption fields to their default values.
Definition: opt.c:1291
int vChrDrop
Binary logarithm of extra vertical subsampling factor in source image chroma planes specified by user...
bayer, GRGR..(odd line), BGBG..(even line), 8-bit samples */
Definition: pixfmt.h:277
int ff_yuv2rgb_c_init_tables(SwsContext *c, const int inv_table[4], int fullRange, int brightness, int contrast, int saturation)
Definition: yuv2rgb.c:765
planar GBR 4:4:4 24bpp
Definition: pixfmt.h:180
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:219
packed RGB 5:5:5, 16bpp, (msb)1X 5R 5G 5B(lsb), little-endian, X=unused/undefined ...
Definition: pixfmt.h:116
#define SWS_BICUBLIN
Definition: swscale.h:64
int16_t * rgbgammainv
const char * b
Definition: vf_curves.c:113
int flag
Definition: cpu.c:34
static double getSplineCoeff(double a, double b, double c, double d, double dist)
Definition: utils.c:279
#define AV_PIX_FMT_GBRP10
Definition: pixfmt.h:395
bayer, GRGR..(odd line), BGBG..(even line), 16-bit samples, little-endian */
Definition: pixfmt.h:284
#define GV_IDX
int dstFormatBpp
Number of bits per pixel of the destination pixel format.
int av_log2(unsigned v)
Definition: intmath.c:26
#define AV_PIX_FMT_BGRA64
Definition: pixfmt.h:374
planar YUV 4:4:4 40bpp, (1 Cr & Cb sample per 1x1 Y & A samples, little-endian)
Definition: pixfmt.h:201
static av_always_inline int is16BPS(enum AVPixelFormat pix_fmt)
Convenience header that includes libavutil's core.
static int handle_jpeg(enum AVPixelFormat *format)
Definition: utils.c:1001
int sws_isSupportedEndiannessConversion(enum AVPixelFormat pix_fmt)
Definition: utils.c:273
static int isnan_vec(SwsVector *a)
Definition: utils.c:1885
int16_t * xyzgammainv
packed BGR 5:6:5, 16bpp, (msb) 5B 6G 5R(lsb), little-endian
Definition: pixfmt.h:119
#define SWS_SRC_V_CHR_DROP_SHIFT
Definition: swscale.h:71
const char * swscale_configuration(void)
Return the libswscale build-time configuration.
Definition: utils.c:81
planar GBR 4:4:4 36bpp, little-endian
Definition: pixfmt.h:269
The following 12 formats have the disadvantage of needing 1 format for each bit depth.
Definition: pixfmt.h:167
packed RGB 4:4:4, 16bpp, (msb)4X 4R 4G 4B(lsb), big-endian, X=unused/undefined
Definition: pixfmt.h:151
static atomic_int cpu_flags
Definition: cpu.c:50
const int32_t ff_yuv2rgb_coeffs[11][4]
Definition: yuv2rgb.c:49
void * av_mallocz(size_t size)
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
Definition: mem.c:222
packed BGR 8:8:8, 32bpp, XBGRXBGR... X=unused/undefined
Definition: pixfmt.h:253
int srcRange
0 = MPG YUV range, 1 = JPG YUV range (source image).
bayer, BGBG..(odd line), GRGR..(even line), 8-bit samples */
Definition: pixfmt.h:274
#define RGB_GAMMA
#define SWS_PRINT_INFO
Definition: swscale.h:75
Y , 12bpp, little-endian.
Definition: pixfmt.h:310
enum AVPixelFormat av_pix_fmt_swap_endianness(enum AVPixelFormat pix_fmt)
Utility function to swap the endianness of a pixel format.
Definition: pixdesc.c:2516
planar GBR 4:4:4 36bpp, big-endian
Definition: pixfmt.h:268
planar YUV 4:2:0, 24bpp, (1 Cr & Cb sample per 2x2 Y samples), little-endian
Definition: pixfmt.h:139
packed RGB 1:2:1 bitstream, 4bpp, (msb)1R 2G 1B(lsb), a byte contains two pixels, the first pixel in ...
Definition: pixfmt.h:88
Macro definitions for various function/variable attributes.
packed RGB 5:6:5, 16bpp, (msb) 5R 6G 5B(lsb), little-endian
Definition: pixfmt.h:114
int srcH
Height of source luma/alpha planes.
packed RGB 1:2:1, 8bpp, (msb)1B 2G 1R(lsb)
Definition: pixfmt.h:86
#define SWS_BILINEAR
Definition: swscale.h:59
planar YUV 4:2:0 22.5bpp, (1 Cr & Cb sample per 2x2 Y & A samples), little-endian ...
Definition: pixfmt.h:191
void sws_convVec(SwsVector *a, SwsVector *b)
Definition: utils.c:2204
#define RU_IDX
planar GBRA 4:4:4:4 64bpp, big-endian
Definition: pixfmt.h:230
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:37
planar YUV 4:2:0 40bpp, (1 Cr & Cb sample per 2x2 Y & A samples, big-endian)
Definition: pixfmt.h:202
static uint16_t * alloc_gamma_tbl(double e)
Definition: utils.c:1081
planar YUV 4:2:0, 20bpp, (1 Cr & Cb sample per 2x2 Y & A samples)
Definition: pixfmt.h:102
int chrDstVSubSample
Binary logarithm of vertical subsampling factor between luma/alpha and chroma planes in destination i...
ptrdiff_t uv_off
offset (in pixels) between u and v planes
AVComponentDescriptor comp[4]
Parameters that describe how pixels are packed.
Definition: pixdesc.h:117
uint8_t
#define av_cold
Definition: attributes.h:82
#define av_malloc(s)
int length
number of coefficients in the vector
Definition: swscale.h:111
av_cold int sws_init_context(SwsContext *c, SwsFilter *srcFilter, SwsFilter *dstFilter)
Initialize the swscaler context sws_context.
Definition: utils.c:1153
#define SWS_LANCZOS
Definition: swscale.h:67
#define av_assert2(cond)
assert() equivalent, that does lie in speed critical code.
Definition: avassert.h:64
packed RGB 8:8:8, 32bpp, RGBXRGBX... X=unused/undefined
Definition: pixfmt.h:252
8 bits with AV_PIX_FMT_RGB32 palette
Definition: pixfmt.h:73
AVOptions.
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:111
SwsVector * sws_cloneVec(SwsVector *a)
Definition: utils.c:2217
int vChrFilterSize
Vertical filter size for chroma pixels.
bayer, GBGB..(odd line), RGRG..(even line), 16-bit samples, little-endian */
Definition: pixfmt.h:282
bayer, GBGB..(odd line), RGRG..(even line), 16-bit samples, big-endian */
Definition: pixfmt.h:283
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:217
packed RGB 4:4:4, 16bpp, (msb)4X 4R 4G 4B(lsb), little-endian, X=unused/undefined ...
Definition: pixfmt.h:150
planar YUV 4:4:4,36bpp, (1 Cr & Cb sample per 1x1 Y samples), little-endian
Definition: pixfmt.h:265
#define emms_c()
Definition: internal.h:54
#define SWS_FULL_CHR_H_INT
Definition: swscale.h:79
static void filter(int16_t *output, ptrdiff_t out_stride, int16_t *low, ptrdiff_t low_stride, int16_t *high, ptrdiff_t high_stride, int len, uint8_t clip)
Definition: cfhd.c:80
int cascaded_tmpStride[4]
packed RGB 5:6:5, 16bpp, (msb) 5R 6G 5B(lsb), big-endian
Definition: pixfmt.h:113
packed ABGR 8:8:8:8, 32bpp, ABGRABGR...
Definition: pixfmt.h:95
planar YUV 4:2:0 40bpp, (1 Cr & Cb sample per 2x2 Y & A samples, little-endian)
Definition: pixfmt.h:203
#define SWS_FAST_BILINEAR
Definition: swscale.h:58
SwsVector * sws_getConstVec(double c, int length)
Allocate and return a vector with length coefficients, all with the same value c. ...
Definition: utils.c:2034
planar YUV 4:4:0,20bpp, (1 Cr & Cb sample per 1x2 Y samples), big-endian
Definition: pixfmt.h:290
planar GBR 4:4:4 48bpp, big-endian
Definition: pixfmt.h:186
planar YUV 4:4:0 full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV440P and setting color_range...
Definition: pixfmt.h:101
Y , 9bpp, little-endian.
Definition: pixfmt.h:330
static int flags
Definition: log.c:57
SwsContext * sws_getContext(int srcW, int srcH, enum AVPixelFormat srcFormat, int dstW, int dstH, enum AVPixelFormat dstFormat, int flags, SwsFilter *srcFilter, SwsFilter *dstFilter, const double *param)
Allocate and return an SwsContext.
Definition: utils.c:1864
planar YUV 4:2:2, 16bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV422P and setting col...
Definition: pixfmt.h:75
planar YUV 4:4:4 64bpp, (1 Cr & Cb sample per 1x1 Y & A samples, big-endian)
Definition: pixfmt.h:206
#define AV_PIX_FMT_BGR48
Definition: pixfmt.h:370
#define AV_LOG_VERBOSE
Detailed information.
Definition: log.h:192
int16_t rgb2xyz_matrix[3][4]
#define AV_PIX_FMT_YUV444P16
Definition: pixfmt.h:392
Y , 10bpp, little-endian.
Definition: pixfmt.h:312
external API header
enum AVPixelFormat dstFormat
Destination pixel format.
#define isALPHA(x)
Definition: swscale.c:51
int ff_sws_alphablendaway(SwsContext *c, const uint8_t *src[], int srcStride[], int srcSliceY, int srcSliceH, uint8_t *dst[], int dstStride[])
Definition: alphablend.c:23
planar YUV 4:4:0,24bpp, (1 Cr & Cb sample per 1x2 Y samples), big-endian
Definition: pixfmt.h:292
uint16_t * inv_gamma
#define A(x)
Definition: vp56_arith.h:28
bayer, BGBG..(odd line), GRGR..(even line), 16-bit samples, little-endian */
Definition: pixfmt.h:278
#define FFALIGN(x, a)
Definition: macros.h:48
int chrSrcHSubSample
Binary logarithm of horizontal subsampling factor between luma/alpha and chroma planes in source imag...
#define av_log(a,...)
static av_always_inline int isYUV(enum AVPixelFormat pix_fmt)
static SwsVector * sws_getShiftedVec(SwsVector *a, int shift)
Definition: utils.c:2141
uint64_t vRounder
#define ROUNDED_DIV(a, b)
Definition: common.h:56
int32_t * vChrFilterPos
Array of vertical filter starting positions for each dst[i] for chroma planes.
int dstH
Height of destination luma/alpha planes.
int * dither_error[4]
planar YUV 4:2:0, 13.5bpp, (1 Cr & Cb sample per 2x2 Y samples), little-endian
Definition: pixfmt.h:168
SwsFilter * sws_getDefaultFilter(float lumaGBlur, float chromaGBlur, float lumaSharpen, float chromaSharpen, float chromaHShift, float chromaVShift, int verbose)
Definition: utils.c:1901
planar GBR 4:4:4 27bpp, big-endian
Definition: pixfmt.h:182
#define INLINE_MMX(flags)
Definition: cpu.h:85
planar YUV 4:4:4, 30bpp, (1 Cr & Cb sample per 1x1 Y samples), little-endian
Definition: pixfmt.h:176
planar YUV 4:2:2 24bpp, (1 Cr & Cb sample per 2x1 Y & A samples)
Definition: pixfmt.h:188
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
16 bits gray, 16 bits alpha (big-endian)
Definition: pixfmt.h:226
like NV12, with 16bpp per component, big-endian
Definition: pixfmt.h:315
int32_t * hChrFilterPos
Array of horizontal filter starting positions for each dst[i] for chroma planes.
planar YUV 4:4:4, 48bpp, (1 Cr & Cb sample per 1x1 Y samples), big-endian
Definition: pixfmt.h:144
#define AVERROR(e)
Definition: error.h:43
int hLumFilterSize
Horizontal filter size for luma/alpha pixels.
SwsFunc ff_getSwsFunc(SwsContext *c)
Return function pointer to fastest main scaler path function depending on architecture and available ...
Definition: swscale.c:592
const char * description
human-readable description
Definition: utils.c:303
int av_pix_fmt_get_chroma_sub_sample(enum AVPixelFormat pix_fmt, int *h_shift, int *v_shift)
Utility function to access log2_chroma_w log2_chroma_h from the pixel format AVPixFmtDescriptor.
Definition: pixdesc.c:2447
static const struct endianess table[]
#define PPC_ALTIVEC(flags)
Definition: cpu.h:26
#define SWS_MAX_REDUCE_CUTOFF
Definition: swscale.h:87
packed BGRA 8:8:8:8, 32bpp, BGRABGRA...
Definition: pixfmt.h:96
void sws_subVec(SwsVector *a, SwsVector *b)
Definition: utils.c:2191
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition: log.h:197
void sws_printVec2(SwsVector *a, AVClass *log_ctx, int log_level)
Print with av_log() a textual representation of the vector a if log_level <= av_log_level.
Definition: utils.c:2237
planar YUV 4:4:4 36bpp, (1 Cr & Cb sample per 1x1 Y & A samples), big-endian
Definition: pixfmt.h:194
planar YUV 4:2:2, 20bpp, (1 Cr & Cb sample per 2x1 Y samples), little-endian
Definition: pixfmt.h:172
int av_opt_set_int(void *obj, const char *name, int64_t val, int search_flags)
Definition: opt.c:558
planar YUV 4:2:0, 12bpp, 1 plane for Y and 1 plane for the UV components, which are interleaved (firs...
Definition: pixfmt.h:90
#define AV_PIX_FMT_RGB48
Definition: pixfmt.h:365
simple assert() macros that are a bit more flexible than ISO C assert().
planar YUV 4:2:2,28bpp, (1 Cr & Cb sample per 2x1 Y samples), big-endian
Definition: pixfmt.h:262
GLsizei GLsizei * length
Definition: opengl_enc.c:115
like NV12, with 16bpp per component, little-endian
Definition: pixfmt.h:314
planar YUV 4:2:2, 32bpp, (1 Cr & Cb sample per 2x1 Y samples), big-endian
Definition: pixfmt.h:142
#define AV_PIX_FMT_YUV444P10
Definition: pixfmt.h:382
like NV12, with 10bpp per component, data in the high bits, zeros in the low bits, big-endian
Definition: pixfmt.h:299
#define SWS_CS_DEFAULT
Definition: swscale.h:95
#define X86_MMX(flags)
Definition: cpu.h:31
planar YUV 4:4:4 36bpp, (1 Cr & Cb sample per 1x1 Y & A samples), little-endian
Definition: pixfmt.h:195
#define FFMAX(a, b)
Definition: common.h:94
packed ARGB 8:8:8:8, 32bpp, ARGBARGB...
Definition: pixfmt.h:93
void sws_scaleVec(SwsVector *a, double scalar)
Scale all the coefficients of a by the scalar value.
Definition: utils.c:2071
int chrDstW
Width of destination chroma planes.
SwsVector * lumH
Definition: swscale.h:116
#define fail()
Definition: checkasm.h:109
int8_t exp
Definition: eval.c:65
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:160
packed RGBA 8:8:8:8, 32bpp, RGBARGBA...
Definition: pixfmt.h:94
uint8_t * cascaded1_tmp[4]
void sws_normalizeVec(SwsVector *a, double height)
Scale all the coefficients of a so that their sum equals height.
Definition: utils.c:2079
planar YUV 4:2:0 25bpp, (1 Cr & Cb sample per 2x2 Y & A samples, big-endian)
Definition: pixfmt.h:196
struct SwsContext * sws_getCachedContext(struct SwsContext *context, int srcW, int srcH, enum AVPixelFormat srcFormat, int dstW, int dstH, enum AVPixelFormat dstFormat, int flags, SwsFilter *srcFilter, SwsFilter *dstFilter, const double *param)
Check if context can be reused, otherwise reallocate a new one.
Definition: utils.c:2344
#define LICENSE_PREFIX
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition: pixfmt.h:66
#define RETCODE_USE_CASCADE
static enum AVPixelFormat alphaless_fmt(enum AVPixelFormat fmt)
Definition: utils.c:1095
int32_t * hLumFilterPos
Array of horizontal filter starting positions for each dst[i] for luma/alpha planes.
void sws_freeFilter(SwsFilter *filter)
Definition: utils.c:2272
int hChrFilterSize
Horizontal filter size for chroma pixels.
int16_t * xyzgamma
SwsVector * sws_allocVec(int length)
Allocate and return an uninitialized vector with length coefficients.
Definition: utils.c:1984
#define AV_PIX_FMT_YUV422P9
Definition: pixfmt.h:377
as above, but U and V bytes are swapped
Definition: pixfmt.h:91
int dstRange
0 = MPG YUV range, 1 = JPG YUV range (destination image).
planar GBR 4:4:4:4 48bpp, big-endian
Definition: pixfmt.h:301
#define RGB2YUV_SHIFT
ptrdiff_t uv_offx2
offset (in bytes) between u and v planes
planar GBR 4:4:4:4 40bpp, big-endian
Definition: pixfmt.h:304
#define APCK_SIZE
#define have_neon(flags)
Definition: cpu.h:27
#define AV_PIX_FMT_GBRP16
Definition: pixfmt.h:398
#define AV_PIX_FMT_GRAY16
Definition: pixfmt.h:363
#define FFMIN(a, b)
Definition: common.h:96
packed RGB 1:2:1, 8bpp, (msb)1R 2G 1B(lsb)
Definition: pixfmt.h:89
planar YUV 4:2:0, 12bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV420P and setting col...
Definition: pixfmt.h:74
#define SWS_GAUSS
Definition: swscale.h:65
SwsVector * chrH
Definition: swscale.h:118
uint8_t * formatConvBuffer
#define INLINE_AMD3DNOW(flags)
Definition: cpu.h:83
static av_always_inline int isBayer(enum AVPixelFormat pix_fmt)
av_cold void ff_sws_rgb2rgb_init(void)
Definition: rgb2rgb.c:133
int32_t
#define RY_IDX
void sws_shiftVec(SwsVector *a, int shift)
Definition: utils.c:2161
void sws_freeContext(SwsContext *c)
Free the swscaler context swsContext.
Definition: utils.c:2284
planar YUV 4:4:4 40bpp, (1 Cr & Cb sample per 1x1 Y & A samples, big-endian)
Definition: pixfmt.h:200
packed YUV 4:2:2, 16bpp, Y0 Cr Y1 Cb
Definition: pixfmt.h:222
#define FFABS(a)
Absolute value, Note, INT_MIN / INT64_MIN result in undefined behavior as they are not representable ...
Definition: common.h:72
planar YUV 4:2:2 27bpp, (1 Cr & Cb sample per 2x1 Y & A samples), big-endian
Definition: pixfmt.h:192
packed RGB 8:8:8, 24bpp, BGRBGR...
Definition: pixfmt.h:65
planar YUV 4:2:0,18bpp, (1 Cr & Cb sample per 2x2 Y samples), little-endian
Definition: pixfmt.h:257
packed XYZ 4:4:4, 36 bpp, (msb) 12X, 12Y, 12Z (lsb), the 2-byte value for each X/Y/Z is stored as big...
Definition: pixfmt.h:212
planar YUV 4:2:0, 15bpp, (1 Cr & Cb sample per 2x2 Y samples), big-endian
Definition: pixfmt.h:169
av_cold void ff_sws_init_range_convert(SwsContext *c)
Definition: swscale.c:534
SwsContext * sws_alloc_set_opts(int srcW, int srcH, enum AVPixelFormat srcFormat, int dstW, int dstH, enum AVPixelFormat dstFormat, int flags, const double *param)
Allocate and return an SwsContext.
Definition: utils.c:1839
unsigned swscale_version(void)
Definition: utils.c:75
like NV12, with 10bpp per component, data in the high bits, zeros in the low bits, little-endian
Definition: pixfmt.h:298
double gamma_value
int sws_setColorspaceDetails(struct SwsContext *c, const int inv_table[4], int srcRange, const int table[4], int dstRange, int brightness, int contrast, int saturation)
Definition: utils.c:848
int srcColorspaceTable[4]
int dstW
Width of destination luma/alpha planes.
#define AV_PIX_FMT_YUV444P9
Definition: pixfmt.h:378
planar YUV 4:2:2, 18bpp, (1 Cr & Cb sample per 2x1 Y samples), little-endian
Definition: pixfmt.h:178
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:159
#define DITHER1XBPP
static void error(const char *err)
packed BGR 5:6:5, 16bpp, (msb) 5B 6G 5R(lsb), big-endian
Definition: pixfmt.h:118
uint8_t * cascaded_tmp[4]
#define FF_ARRAY_ELEMS(a)
static const ScaleAlgorithm scale_algorithms[]
Definition: utils.c:307
int cascaded1_tmpStride[4]
planar GBR 4:4:4:4 48bpp, little-endian
Definition: pixfmt.h:302
#define AV_PIX_FMT_YUV420P16
Definition: pixfmt.h:390
int32_t * vLumFilterPos
Array of vertical filter starting positions for each dst[i] for luma/alpha planes.
#define isGray(x)
Definition: swscale.c:40
#define AV_PIX_FMT_BGR555
Definition: pixfmt.h:372
int av_opt_get_int(void *obj, const char *name, int search_flags, int64_t *out_val)
Definition: opt.c:875
packed RGB 3:3:2, 8bpp, (msb)2B 3G 3R(lsb)
Definition: pixfmt.h:84
double * coeff
pointer to the list of coefficients
Definition: swscale.h:110
int flag
flag associated to the algorithm
Definition: utils.c:302
#define AV_LOG_INFO
Standard information.
Definition: log.h:187
planar YUV 4:2:0, 24bpp, (1 Cr & Cb sample per 2x2 Y samples), big-endian
Definition: pixfmt.h:140
int dstColorspaceTable[4]
static av_cold int initFilter(int16_t **outFilter, int32_t **filterPos, int *outFilterSize, int xInc, int srcW, int dstW, int filterAlign, int one, int flags, int cpu_flags, SwsVector *srcFilter, SwsVector *dstFilter, double param[2], int srcPos, int dstPos)
Definition: utils.c:321
void(* rgb15to16)(const uint8_t *src, uint8_t *dst, int src_size)
Definition: rgb2rgb.c:51
const AVClass * av_class
info on struct for av_log
int16_t xyz2rgb_matrix[3][4]
planar YUV 4:4:4 32bpp, (1 Cr & Cb sample per 1x1 Y & A samples)
Definition: pixfmt.h:189
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition: pixdesc.h:81
#define DITHER32_INT
bayer, RGRG..(odd line), GBGB..(even line), 16-bit samples, big-endian */
Definition: pixfmt.h:281
void sws_freeVec(SwsVector *a)
Definition: utils.c:2263
planar GBR 4:4:4 30bpp, big-endian
Definition: pixfmt.h:184
#define AV_CPU_FLAG_MMX
standard MMX
Definition: cpu.h:31
bayer, GRGR..(odd line), BGBG..(even line), 16-bit samples, big-endian */
Definition: pixfmt.h:285
planar YUV 4:2:2 48bpp, (1 Cr & Cb sample per 2x1 Y & A samples, big-endian)
Definition: pixfmt.h:204
int chrDstH
Height of destination chroma planes.
packed YUV 4:2:2, 16bpp, Y0 Cb Y1 Cr
Definition: pixfmt.h:63
planar YUV 4:4:0,24bpp, (1 Cr & Cb sample per 1x2 Y samples), little-endian
Definition: pixfmt.h:291
planar GBR 4:4:4 42bpp, little-endian
Definition: pixfmt.h:271
#define SWS_ERROR_DIFFUSION
Definition: swscale.h:85
Replacements for frequently missing libm functions.
#define SWS_AREA
Definition: swscale.h:63
#define AV_PIX_FMT_YUV420P10
Definition: pixfmt.h:379
planar YUV 4:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples)
Definition: pixfmt.h:68
planar YUV 4:2:2 48bpp, (1 Cr & Cb sample per 2x1 Y & A samples, little-endian)
Definition: pixfmt.h:205
static SwsVector * sws_diffVec(SwsVector *a, SwsVector *b)
Definition: utils.c:2122
static const char * format
Definition: movenc.c:47
int lumMmxextFilterCodeSize
Runtime-generated MMXEXT horizontal fast bilinear scaler code size for luma/alpha planes...
Describe the class of an AVClass context structure.
Definition: log.h:67
planar YUV 4:4:4 64bpp, (1 Cr & Cb sample per 1x1 Y & A samples, little-endian)
Definition: pixfmt.h:207
#define W(a, i, v)
Definition: jpegls.h:122
int ff_init_hscaler_mmxext(int dstW, int xInc, uint8_t *filterCode, int16_t *filter, int32_t *filterPos, int numSplits)
Y , 16bpp, big-endian.
Definition: pixfmt.h:98
#define isnan(x)
Definition: libm.h:340
int vLumFilterSize
Vertical filter size for luma/alpha pixels.
#define SWS_ACCURATE_RND
Definition: swscale.h:83
byte swapping routines
static void handle_formats(SwsContext *c)
Definition: utils.c:1057
planar YUV 4:2:0,21bpp, (1 Cr & Cb sample per 2x2 Y samples), big-endian
Definition: pixfmt.h:258
packed BGR 8:8:8, 32bpp, BGRXBGRX... X=unused/undefined
Definition: pixfmt.h:254
int chrMmxextFilterCodeSize
Runtime-generated MMXEXT horizontal fast bilinear scaler code size for chroma planes.
Y , 9bpp, big-endian.
Definition: pixfmt.h:329
planar GBR 4:4:4 42bpp, big-endian
Definition: pixfmt.h:270
planar YUV 4:2:0 22.5bpp, (1 Cr & Cb sample per 2x2 Y & A samples), big-endian
Definition: pixfmt.h:190
#define AV_PIX_FMT_YUV420P9
Definition: pixfmt.h:376
const VDPAUPixFmtMap * map
packed BGR 5:5:5, 16bpp, (msb)1X 5B 5G 5R(lsb), little-endian, X=unused/undefined ...
Definition: pixfmt.h:121
int16_t * vChrFilter
Array of vertical filter coefficients for chroma planes.
int av_get_cpu_flags(void)
Return the flags which specify extensions supported by the CPU.
Definition: cpu.c:92
#define SWS_POINT
Definition: swscale.h:62
int ff_init_filters(SwsContext *c)
Definition: slice.c:249
bayer, BGBG..(odd line), GRGR..(even line), 16-bit samples, big-endian */
Definition: pixfmt.h:279
int16_t * hLumFilter
Array of horizontal filter coefficients for luma/alpha planes.
SwsContext * sws_alloc_context(void)
Allocate an empty SwsContext.
Definition: utils.c:1067
#define GY_IDX
#define AV_PIX_FMT_BGR565
Definition: pixfmt.h:371
#define SWS_SPLINE
Definition: swscale.h:68
#define AV_PIX_FMT_GBRP12
Definition: pixfmt.h:396
#define SWS_SINC
Definition: swscale.h:66
planar YUV 4:2:2 30bpp, (1 Cr & Cb sample per 2x1 Y & A samples, little-endian)
Definition: pixfmt.h:199
#define AV_PIX_FMT_YUV422P10
Definition: pixfmt.h:380
packed RGB 5:5:5, 16bpp, (msb)1X 5R 5G 5B(lsb), big-endian , X=unused/undefined
Definition: pixfmt.h:115
#define SWS_BITEXACT
Definition: swscale.h:84
bayer, RGRG..(odd line), GBGB..(even line), 16-bit samples, little-endian */
Definition: pixfmt.h:280
Y , 10bpp, big-endian.
Definition: pixfmt.h:311
packed BGR 4:4:4, 16bpp, (msb)4X 4B 4G 4R(lsb), big-endian, X=unused/undefined
Definition: pixfmt.h:153
planar YUV 4:4:4, 27bpp, (1 Cr & Cb sample per 1x1 Y samples), little-endian
Definition: pixfmt.h:174
planar YUV 4:4:4, 48bpp, (1 Cr & Cb sample per 1x1 Y samples), little-endian
Definition: pixfmt.h:143
static int handle_xyz(enum AVPixelFormat *format)
Definition: utils.c:1048
#define FF_ALLOC_ARRAY_OR_GOTO(ctx, p, nelem, elsize, label)
Definition: internal.h:151
Definition: vc1_parser.c:48
SwsDither dither
uint8_t is_supported_in
Definition: utils.c:93
Y , 1bpp, 0 is black, 1 is white, in each byte pixels are ordered from the msb to the lsb...
Definition: pixfmt.h:72
void sws_addVec(SwsVector *a, SwsVector *b)
Definition: utils.c:2177
#define INLINE_MMXEXT(flags)
Definition: cpu.h:86
int
static double sws_dcVec(SwsVector *a)
Definition: utils.c:2060
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:62
planar YUV 4:2:2,24bpp, (1 Cr & Cb sample per 2x1 Y samples), little-endian
Definition: pixfmt.h:261
Y , 8bpp.
Definition: pixfmt.h:70
double param[2]
Input parameters for scaling algorithms that need them.
#define exp2(x)
Definition: libm.h:288
Y , 1bpp, 0 is white, 1 is black, in each byte pixels are ordered from the msb to the lsb...
Definition: pixfmt.h:71
planar GBRA 4:4:4:4 32bpp
Definition: pixfmt.h:229
#define FF_ALLOC_OR_GOTO(ctx, p, size, label)
Definition: internal.h:133
planar GBR 4:4:4 27bpp, little-endian
Definition: pixfmt.h:183
static double c[64]
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:110
#define AV_WL16(p, v)
Definition: intreadwrite.h:417
enum AVPixelFormat srcFormat
Source pixel format.
planar YUV 4:2:2, 32bpp, (1 Cr & Cb sample per 2x1 Y samples), little-endian
Definition: pixfmt.h:141
planar YUV 4:4:4, 24bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV444P and setting col...
Definition: pixfmt.h:76
bayer, RGRG..(odd line), GBGB..(even line), 8-bit samples */
Definition: pixfmt.h:275
packed RGB 3:3:2, 8bpp, (msb)2R 3G 3B(lsb)
Definition: pixfmt.h:87
static const uint64_t c2
Definition: murmur3.c:50
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
Definition: pixfmt.h:69
#define XYZ_GAMMA
planar YUV 4:2:0 25bpp, (1 Cr & Cb sample per 2x2 Y & A samples, little-endian)
Definition: pixfmt.h:197
struct SwsContext * cascaded_context[3]
#define SWS_PARAM_DEFAULT
Definition: swscale.h:73
#define SWS_FULL_CHR_H_INP
Definition: swscale.h:81
uint16_t * gamma
SwsFunc swscale
Note that src, dst, srcStride, dstStride will be copied in the sws_scale() wrapper so they can be fre...
#define MAX_FILTER_SIZE
static av_always_inline int diff(const uint32_t a, const uint32_t b)
packed XYZ 4:4:4, 36 bpp, (msb) 12X, 12Y, 12Z (lsb), the 2-byte value for each X/Y/Z is stored as lit...
Definition: pixfmt.h:211
#define av_free(p)
int size_factor
size factor used when initing the filters
Definition: utils.c:304
planar YUV 4:4:4,42bpp, (1 Cr & Cb sample per 1x1 Y samples), little-endian
Definition: pixfmt.h:267
#define NAN
Definition: math.h:28
int srcFormatBpp
Number of bits per pixel of the source pixel format.
const AVClass ff_sws_context_class
Definition: options.c:87
Y , 16bpp, little-endian.
Definition: pixfmt.h:99
uint8_t is_supported_endianness
Definition: utils.c:95
static const double coeff[2][5]
Definition: vf_owdenoise.c:72
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples) full scale (JPEG), deprecated in favor ...
Definition: pixfmt.h:272
#define lrint
Definition: tablegen.h:53
16 bits gray, 16 bits alpha (little-endian)
Definition: pixfmt.h:227
int sws_isSupportedInput(enum AVPixelFormat pix_fmt)
Return a positive value if pix_fmt is a supported input format, 0 otherwise.
Definition: utils.c:261
SwsVector * sws_getIdentityVec(void)
Allocate and return a vector with just one coefficient, with value 1.0.
Definition: utils.c:2055
planar YUV 4:2:2 30bpp, (1 Cr & Cb sample per 2x1 Y & A samples, big-endian)
Definition: pixfmt.h:198
Y , 12bpp, big-endian.
Definition: pixfmt.h:309
static int height
Definition: utils.c:158
int32_t input_rgb2yuv_table[16+40 *4]
packed BGR 5:5:5, 16bpp, (msb)1X 5B 5G 5R(lsb), big-endian , X=unused/undefined
Definition: pixfmt.h:120
number of pixel formats, DO NOT USE THIS if you want to link with shared libav* because the number of...
Definition: pixfmt.h:344
int16_t * vLumFilter
Array of vertical filter coefficients for luma/alpha planes.
#define av_freep(p)
#define GU_IDX
planar YUV 4:4:0 (1 Cr & Cb sample per 1x2 Y samples)
Definition: pixfmt.h:100
#define M_PI
Definition: mathematics.h:52
planar GBR 4:4:4 48bpp, little-endian
Definition: pixfmt.h:187
static void makenan_vec(SwsVector *a)
Definition: utils.c:1894
int16_t * hChrFilter
Array of horizontal filter coefficients for chroma planes.
#define av_malloc_array(a, b)
packed BGR 4:4:4, 16bpp, (msb)4X 4B 4G 4R(lsb), little-endian, X=unused/undefined ...
Definition: pixfmt.h:152
const char * av_get_pix_fmt_name(enum AVPixelFormat pix_fmt)
Return the short name for a pixel format, NULL in case pix_fmt is unknown.
Definition: pixdesc.c:2335
planar YUV 4:2:2 27bpp, (1 Cr & Cb sample per 2x1 Y & A samples), little-endian
Definition: pixfmt.h:193
#define BY_IDX
int chrDstHSubSample
Binary logarithm of horizontal subsampling factor between luma/alpha and chroma planes in destination...
int chrSrcW
Width of source chroma planes.
int depth
Number of bits in the component.
Definition: pixdesc.h:58
void ff_get_unscaled_swscale(SwsContext *c)
Set c->swscale to an unscaled converter if one exists for the specific source and destination formats...
planar GBRA 4:4:4:4 64bpp, little-endian
Definition: pixfmt.h:231
packed RGB 8:8:8, 32bpp, XRGBXRGB... X=unused/undefined
Definition: pixfmt.h:251
int srcW
Width of source luma/alpha planes.
packed YUV 4:1:1, 12bpp, Cb Y0 Y1 Cr Y2 Y3
Definition: pixfmt.h:83
static void fill_xyztables(struct SwsContext *c)
Definition: utils.c:812
float min
int chrSrcVSubSample
Binary logarithm of vertical subsampling factor between luma/alpha and chroma planes in source image...
int flags
Flags passed by the user to select scaler algorithm, optimizations, subsampling, etc...
AVPixelFormat
Pixel format.
Definition: pixfmt.h:60
planar YUV 4:2:0,18bpp, (1 Cr & Cb sample per 2x2 Y samples), big-endian
Definition: pixfmt.h:256
#define AV_PIX_FMT_YUV422P16
Definition: pixfmt.h:391
#define BU_IDX
planar YUV 4:4:4, 30bpp, (1 Cr & Cb sample per 1x1 Y samples), big-endian
Definition: pixfmt.h:175
for(j=16;j >0;--j)
planar YUV 4:2:2,24bpp, (1 Cr & Cb sample per 2x1 Y samples), big-endian
Definition: pixfmt.h:260
static av_always_inline int isNBPS(enum AVPixelFormat pix_fmt)
#define FF_ALLOCZ_OR_GOTO(ctx, p, size, label)
Definition: internal.h:142
planar GBR 4:4:4 30bpp, little-endian
Definition: pixfmt.h:185
static SwsVector * sws_getConvVec(SwsVector *a, SwsVector *b)
Definition: utils.c:2085
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:218
#define LIBSWSCALE_VERSION_INT
Definition: version.h:33
packed AYUV 4:4:4,64bpp (1 Cr & Cb sample per 1x1 Y & A samples), little-endian
Definition: pixfmt.h:293
#define V
Definition: avdct.c:30
#define AV_CEIL_RSHIFT(a, b)
Definition: common.h:58
planar YUV 4:2:2, 20bpp, (1 Cr & Cb sample per 2x1 Y samples), big-endian
Definition: pixfmt.h:171
const char * swscale_license(void)
Return the libswscale license.
Definition: utils.c:86