libswscale/swscale.c
fe8054c0
 /*
0a3a125f
  * Copyright (C) 2001-2011 Michael Niedermayer <michaelni@gmx.at>
d026b45e
  *
  * This file is part of FFmpeg.
  *
819ee683
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
d026b45e
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
819ee683
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
d026b45e
  *
819ee683
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
b19bcbaa
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
d026b45e
  */
783e9cc9
 
d3f41512
 #include <inttypes.h>
077ea8a7
 #include <math.h>
c1b0bfb4
 #include <stdio.h>
ef0ee7f6
 #include <string.h>
 
895b6161
 #include "libavutil/avassert.h"
7248797c
 #include "libavutil/avutil.h"
83da2c6f
 #include "libavutil/bswap.h"
ef0ee7f6
 #include "libavutil/cpu.h"
633a2a08
 #include "libavutil/imgutils.h"
ef0ee7f6
 #include "libavutil/intreadwrite.h"
 #include "libavutil/mathematics.h"
a9af75ae
 #include "libavutil/pixdesc.h"
ef0ee7f6
 #include "config.h"
 #include "rgb2rgb.h"
 #include "swscale_internal.h"
 #include "swscale.h"
0d9f3d85
 
c6280127
 DECLARE_ALIGNED(8, const uint8_t, ff_dither_8x8_128)[9][8] = {
ef0ee7f6
     {  36, 68,  60, 92,  34, 66,  58, 90, },
     { 100,  4, 124, 28,  98,  2, 122, 26, },
     {  52, 84,  44, 76,  50, 82,  42, 74, },
     { 116, 20, 108, 12, 114, 18, 106, 10, },
     {  32, 64,  56, 88,  38, 70,  62, 94, },
     {  96,  0, 120, 24, 102,  6, 126, 30, },
     {  48, 80,  40, 72,  54, 86,  46, 78, },
     { 112, 16, 104,  8, 118, 22, 110, 14, },
c6280127
     {  36, 68,  60, 92,  34, 66,  58, 90, },
c59f9a68
 };
5cebb24b
 
d2585315
 DECLARE_ALIGNED(8, static const uint8_t, sws_pb_64)[8] = {
ef0ee7f6
     64, 64, 64, 64, 64, 64, 64, 64
4e3e333a
 };
3d3c8149
 
ef0ee7f6
 static av_always_inline void fillPlane(uint8_t *plane, int stride, int width,
                                        int height, int y, uint8_t val)
dd68318c
 {
d4da3e47
     int i;
ef0ee7f6
     uint8_t *ptr = plane + stride * y;
     for (i = 0; i < height; i++) {
d4da3e47
         memset(ptr, val, width);
         ptr += stride;
     }
 }
 
ef0ee7f6
 static void hScale16To19_c(SwsContext *c, int16_t *_dst, int dstW,
                            const uint8_t *_src, const int16_t *filter,
2254b559
                            const int32_t *filterPos, int filterSize)
45f6ffe5
 {
0a7068fa
     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(c->srcFormat);
45f6ffe5
     int i;
ef0ee7f6
     int32_t *dst        = (int32_t *) _dst;
45f6ffe5
     const uint16_t *src = (const uint16_t *) _src;
0a7068fa
     int bits            = desc->comp[0].depth_minus1;
ef0ee7f6
     int sh              = bits - 4;
45f6ffe5
 
a291345b
     if((isAnyRGB(c->srcFormat) || c->srcFormat==AV_PIX_FMT_PAL8) && desc->comp[0].depth_minus1<15)
987e4c17
         sh= 9;
 
45f6ffe5
     for (i = 0; i < dstW; i++) {
         int j;
         int srcPos = filterPos[i];
ef0ee7f6
         int val    = 0;
45f6ffe5
 
         for (j = 0; j < filterSize; j++) {
             val += src[srcPos + j] * filter[filterSize * i + j];
         }
         // filter=14 bit, input=16 bit, output=30 bit, >> 11 makes 19 bit
948ccdad
         dst[i] = FFMIN(val >> sh, (1 << 19) - 1);
45f6ffe5
     }
 }
 
ef0ee7f6
 static void hScale16To15_c(SwsContext *c, int16_t *dst, int dstW,
                            const uint8_t *_src, const int16_t *filter,
2254b559
                            const int32_t *filterPos, int filterSize)
28c1115a
 {
0a7068fa
     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(c->srcFormat);
28c1115a
     int i;
     const uint16_t *src = (const uint16_t *) _src;
0a7068fa
     int sh              = desc->comp[0].depth_minus1;
28c1115a
 
66bb5cd5
     if(sh<15)
a291345b
         sh= isAnyRGB(c->srcFormat) || c->srcFormat==AV_PIX_FMT_PAL8 ? 13 : desc->comp[0].depth_minus1;
66bb5cd5
 
28c1115a
     for (i = 0; i < dstW; i++) {
         int j;
         int srcPos = filterPos[i];
ef0ee7f6
         int val    = 0;
28c1115a
 
         for (j = 0; j < filterSize; j++) {
             val += src[srcPos + j] * filter[filterSize * i + j];
         }
         // filter=14 bit, input=16 bit, output=30 bit, >> 15 makes 15 bit
         dst[i] = FFMIN(val >> sh, (1 << 15) - 1);
     }
 }
 
1674bd2a
 // bilinear / bicubic scaling
ef0ee7f6
 static void hScale8To15_c(SwsContext *c, int16_t *dst, int dstW,
                           const uint8_t *src, const int16_t *filter,
                           const int32_t *filterPos, int filterSize)
dd68318c
 {
49004617
     int i;
ef0ee7f6
     for (i = 0; i < dstW; i++) {
1674bd2a
         int j;
ef0ee7f6
         int srcPos = filterPos[i];
         int val    = 0;
         for (j = 0; j < filterSize; j++) {
             val += ((int)src[srcPos + j]) * filter[filterSize * i + j];
e36a545d
         }
ef0ee7f6
         dst[i] = FFMIN(val >> 7, (1 << 15) - 1); // the cubic equation does overflow ...
c0d1dc1c
     }
1674bd2a
 }
49004617
 
ef0ee7f6
 static void hScale8To19_c(SwsContext *c, int16_t *_dst, int dstW,
                           const uint8_t *src, const int16_t *filter,
                           const int32_t *filterPos, int filterSize)
28c1115a
 {
     int i;
     int32_t *dst = (int32_t *) _dst;
ef0ee7f6
     for (i = 0; i < dstW; i++) {
28c1115a
         int j;
ef0ee7f6
         int srcPos = filterPos[i];
         int val    = 0;
         for (j = 0; j < filterSize; j++) {
             val += ((int)src[srcPos + j]) * filter[filterSize * i + j];
28c1115a
         }
ef0ee7f6
         dst[i] = FFMIN(val >> 3, (1 << 19) - 1); // the cubic equation does overflow ...
28c1115a
     }
 }
 
511cf612
 // FIXME all pal and rgb srcFormats could do this conversion as well
ef0ee7f6
 // FIXME all scalers more complex than bilinear could do half of this transform
87f40364
 static void chrRangeToJpeg_c(int16_t *dstU, int16_t *dstV, int width)
1674bd2a
 {
     int i;
     for (i = 0; i < width; i++) {
ef0ee7f6
         dstU[i] = (FFMIN(dstU[i], 30775) * 4663 - 9289992) >> 12; // -264
         dstV[i] = (FFMIN(dstV[i], 30775) * 4663 - 9289992) >> 12; // -264
221b804f
     }
0d9f3d85
 }
ef0ee7f6
 
87f40364
 static void chrRangeFromJpeg_c(int16_t *dstU, int16_t *dstV, int width)
dd68318c
 {
1674bd2a
     int i;
     for (i = 0; i < width; i++) {
ef0ee7f6
         dstU[i] = (dstU[i] * 1799 + 4081085) >> 11; // 1469
         dstV[i] = (dstV[i] * 1799 + 4081085) >> 11; // 1469
1674bd2a
     }
ec22603f
 }
ef0ee7f6
 
87f40364
 static void lumRangeToJpeg_c(int16_t *dst, int width)
dd68318c
 {
1674bd2a
     int i;
     for (i = 0; i < width; i++)
ef0ee7f6
         dst[i] = (FFMIN(dst[i], 30189) * 19077 - 39057361) >> 14;
1674bd2a
 }
ef0ee7f6
 
87f40364
 static void lumRangeFromJpeg_c(int16_t *dst, int width)
1674bd2a
 {
     int i;
     for (i = 0; i < width; i++)
ef0ee7f6
         dst[i] = (dst[i] * 14071 + 33561947) >> 14;
b241cbf2
 }
 
45f6ffe5
 static void chrRangeToJpeg16_c(int16_t *_dstU, int16_t *_dstV, int width)
 {
     int i;
     int32_t *dstU = (int32_t *) _dstU;
     int32_t *dstV = (int32_t *) _dstV;
     for (i = 0; i < width; i++) {
ef0ee7f6
         dstU[i] = (FFMIN(dstU[i], 30775 << 4) * 4663 - (9289992 << 4)) >> 12; // -264
         dstV[i] = (FFMIN(dstV[i], 30775 << 4) * 4663 - (9289992 << 4)) >> 12; // -264
45f6ffe5
     }
 }
ef0ee7f6
 
45f6ffe5
 static void chrRangeFromJpeg16_c(int16_t *_dstU, int16_t *_dstV, int width)
 {
     int i;
     int32_t *dstU = (int32_t *) _dstU;
     int32_t *dstV = (int32_t *) _dstV;
     for (i = 0; i < width; i++) {
ef0ee7f6
         dstU[i] = (dstU[i] * 1799 + (4081085 << 4)) >> 11; // 1469
         dstV[i] = (dstV[i] * 1799 + (4081085 << 4)) >> 11; // 1469
45f6ffe5
     }
 }
ef0ee7f6
 
45f6ffe5
 static void lumRangeToJpeg16_c(int16_t *_dst, int width)
 {
     int i;
     int32_t *dst = (int32_t *) _dst;
c9c04512
     for (i = 0; i < width; i++) {
         dst[i] = ((int)(FFMIN(dst[i], 30189 << 4) * 4769U - (39057361 << 2))) >> 12;
     }
45f6ffe5
 }
ef0ee7f6
 
45f6ffe5
 static void lumRangeFromJpeg16_c(int16_t *_dst, int width)
 {
     int i;
     int32_t *dst = (int32_t *) _dst;
     for (i = 0; i < width; i++)
f2db5602
         dst[i] = (dst[i]*(14071/4) + (33561947<<4)/4)>>12;
45f6ffe5
 }
 
2762ee30
 // *** horizontal scale Y line to temp buffer
45f6ffe5
 static av_always_inline void hyscale(SwsContext *c, int16_t *dst, int dstWidth,
ef0ee7f6
                                      const uint8_t *src_in[4],
                                      int srcW, int xInc,
6e5a8d3c
                                      const int16_t *hLumFilter,
ef0ee7f6
                                      const int32_t *hLumFilterPos,
                                      int hLumFilterSize,
6e5a8d3c
                                      uint8_t *formatConvBuffer,
                                      uint32_t *pal, int isAlpha)
1674bd2a
 {
367d9b29
     void (*toYV12)(uint8_t *, const uint8_t *, const uint8_t *, const uint8_t *, int, uint32_t *) =
ef0ee7f6
         isAlpha ? c->alpToYV12 : c->lumToYV12;
87f40364
     void (*convertRange)(int16_t *, int) = isAlpha ? NULL : c->lumConvertRange;
185655c6
     const uint8_t *src = src_in[isAlpha ? 3 : 0];
300e497b
 
1674bd2a
     if (toYV12) {
92afb431
         toYV12(formatConvBuffer, src, src_in[1], src_in[2], srcW, pal);
ef0ee7f6
         src = formatConvBuffer;
185655c6
     } else if (c->readLumPlanar && !isAlpha) {
d4956b0b
         c->readLumPlanar(formatConvBuffer, src_in, srcW, c->input_rgb2yuv_table);
185655c6
         src = formatConvBuffer;
5c057433
     } else if (c->readAlpPlanar && isAlpha) {
         c->readAlpPlanar(formatConvBuffer, src_in, srcW, NULL);
         src = formatConvBuffer;
72153419
     }
1674bd2a
 
d06c5b44
     if (!c->hyscale_fast) {
ef0ee7f6
         c->hyScale(c, dst, dstWidth, src, hLumFilter,
                    hLumFilterPos, hLumFilterSize);
1674bd2a
     } else { // fast bilinear upscale / crap downscale
         c->hyscale_fast(c, dst, dstWidth, src, srcW, xInc);
bc5a0444
     }
1674bd2a
 
     if (convertRange)
         convertRange(dst, dstWidth);
37079906
 }
28bf81c9
 
ef0ee7f6
 static av_always_inline void hcscale(SwsContext *c, int16_t *dst1,
                                      int16_t *dst2, int dstWidth,
185655c6
                                      const uint8_t *src_in[4],
ef0ee7f6
                                      int srcW, int xInc,
                                      const int16_t *hChrFilter,
                                      const int32_t *hChrFilterPos,
                                      int hChrFilterSize,
6e5a8d3c
                                      uint8_t *formatConvBuffer, uint32_t *pal)
1674bd2a
 {
185655c6
     const uint8_t *src1 = src_in[1], *src2 = src_in[2];
1674bd2a
     if (c->chrToYV12) {
ef0ee7f6
         uint8_t *buf2 = formatConvBuffer +
367d9b29
                         FFALIGN(srcW*2+78, 16);
92afb431
         c->chrToYV12(formatConvBuffer, buf2, src_in[0], src1, src2, srcW, pal);
1674bd2a
         src1= formatConvBuffer;
         src2= buf2;
185655c6
     } else if (c->readChrPlanar) {
ef0ee7f6
         uint8_t *buf2 = formatConvBuffer +
367d9b29
                         FFALIGN(srcW*2+78, 16);
d4956b0b
         c->readChrPlanar(formatConvBuffer, buf2, src_in, srcW, c->input_rgb2yuv_table);
ef0ee7f6
         src1 = formatConvBuffer;
         src2 = buf2;
59398ea9
     }
b71cf33c
 
d06c5b44
     if (!c->hcscale_fast) {
3f04ab4f
         c->hcScale(c, dst1, dstWidth, src1, hChrFilter, hChrFilterPos, hChrFilterSize);
         c->hcScale(c, dst2, dstWidth, src2, hChrFilter, hChrFilterPos, hChrFilterSize);
1674bd2a
     } else { // fast bilinear upscale / crap downscale
         c->hcscale_fast(c, dst1, dst2, dstWidth, src1, src2, srcW, xInc);
59398ea9
     }
1674bd2a
 
     if (c->chrConvertRange)
         c->chrConvertRange(dst1, dst2, dstWidth);
28bf81c9
 }
 
1674bd2a
 #define DEBUG_SWSCALE_BUFFERS 0
ef0ee7f6
 #define DEBUG_BUFFERS(...)                      \
     if (DEBUG_SWSCALE_BUFFERS)                  \
         av_log(c, AV_LOG_DEBUG, __VA_ARGS__)
1674bd2a
 
1909f6b1
 static int swscale(SwsContext *c, const uint8_t *src[],
2762ee30
                    int srcStride[], int srcSliceY,
ef0ee7f6
                    int srcSliceH, uint8_t *dst[], int dstStride[])
dd68318c
 {
ef0ee7f6
     /* load a few things into local vars to make the code more readable?
      * and faster */
     const int srcW                   = c->srcW;
     const int dstW                   = c->dstW;
     const int dstH                   = c->dstH;
     const int chrDstW                = c->chrDstW;
     const int chrSrcW                = c->chrSrcW;
     const int lumXInc                = c->lumXInc;
     const int chrXInc                = c->chrXInc;
716d413c
     const enum AVPixelFormat dstFormat = c->dstFormat;
ef0ee7f6
     const int flags                  = c->flags;
     int32_t *vLumFilterPos           = c->vLumFilterPos;
     int32_t *vChrFilterPos           = c->vChrFilterPos;
     int32_t *hLumFilterPos           = c->hLumFilterPos;
     int32_t *hChrFilterPos           = c->hChrFilterPos;
     int16_t *hLumFilter              = c->hLumFilter;
     int16_t *hChrFilter              = c->hChrFilter;
     int32_t *lumMmxFilter            = c->lumMmxFilter;
     int32_t *chrMmxFilter            = c->chrMmxFilter;
     const int vLumFilterSize         = c->vLumFilterSize;
     const int vChrFilterSize         = c->vChrFilterSize;
     const int hLumFilterSize         = c->hLumFilterSize;
     const int hChrFilterSize         = c->hChrFilterSize;
     int16_t **lumPixBuf              = c->lumPixBuf;
     int16_t **chrUPixBuf             = c->chrUPixBuf;
     int16_t **chrVPixBuf             = c->chrVPixBuf;
     int16_t **alpPixBuf              = c->alpPixBuf;
     const int vLumBufSize            = c->vLumBufSize;
     const int vChrBufSize            = c->vChrBufSize;
     uint8_t *formatConvBuffer        = c->formatConvBuffer;
     uint32_t *pal                    = c->pal_yuv;
     yuv2planar1_fn yuv2plane1        = c->yuv2plane1;
     yuv2planarX_fn yuv2planeX        = c->yuv2planeX;
     yuv2interleavedX_fn yuv2nv12cX   = c->yuv2nv12cX;
     yuv2packed1_fn yuv2packed1       = c->yuv2packed1;
     yuv2packed2_fn yuv2packed2       = c->yuv2packed2;
     yuv2packedX_fn yuv2packedX       = c->yuv2packedX;
61884d19
     yuv2anyX_fn yuv2anyX             = c->yuv2anyX;
570d63ee
     const int chrSrcSliceY           =                srcSliceY >> c->chrSrcVSubSample;
     const int chrSrcSliceH           = FF_CEIL_RSHIFT(srcSliceH,   c->chrSrcVSubSample);
ef0ee7f6
     int should_dither                = is9_OR_10BPS(c->srcFormat) ||
                                        is16BPS(c->srcFormat);
1674bd2a
     int lastDstY;
 
     /* vars which will change and which we need to store back in the context */
ef0ee7f6
     int dstY         = c->dstY;
     int lumBufIndex  = c->lumBufIndex;
     int chrBufIndex  = c->chrBufIndex;
     int lastInLumBuf = c->lastInLumBuf;
     int lastInChrBuf = c->lastInChrBuf;
1674bd2a
 
d4956b0b
     if (!usePal(c->srcFormat)) {
         pal = c->input_rgb2yuv_table;
     }
 
1674bd2a
     if (isPacked(c->srcFormat)) {
ef0ee7f6
         src[0] =
         src[1] =
         src[2] =
         src[3] = src[0];
         srcStride[0] =
         srcStride[1] =
         srcStride[2] =
         srcStride[3] = srcStride[0];
1674bd2a
     }
ef0ee7f6
     srcStride[1] <<= c->vChrDrop;
     srcStride[2] <<= c->vChrDrop;
1674bd2a
 
1909f6b1
     DEBUG_BUFFERS("swscale() %p[%d] %p[%d] %p[%d] %p[%d] -> %p[%d] %p[%d] %p[%d] %p[%d]\n",
ef0ee7f6
                   src[0], srcStride[0], src[1], srcStride[1],
                   src[2], srcStride[2], src[3], srcStride[3],
                   dst[0], dstStride[0], dst[1], dstStride[1],
                   dst[2], dstStride[2], dst[3], dstStride[3]);
1674bd2a
     DEBUG_BUFFERS("srcSliceY: %d srcSliceH: %d dstY: %d dstH: %d\n",
ef0ee7f6
                   srcSliceY, srcSliceH, dstY, dstH);
1674bd2a
     DEBUG_BUFFERS("vLumFilterSize: %d vLumBufSize: %d vChrFilterSize: %d vChrBufSize: %d\n",
ef0ee7f6
                   vLumFilterSize, vLumBufSize, vChrFilterSize, vChrBufSize);
1674bd2a
 
7f529600
     if (dstStride[0]&15 || dstStride[1]&15 ||
         dstStride[2]&15 || dstStride[3]&15) {
ef0ee7f6
         static int warnedAlready = 0; // FIXME maybe move this into the context
1674bd2a
         if (flags & SWS_PRINT_INFO && !warnedAlready) {
ef0ee7f6
             av_log(c, AV_LOG_WARNING,
                    "Warning: dstStride is not aligned!\n"
1674bd2a
                    "         ->cannot do aligned memory accesses anymore\n");
ef0ee7f6
             warnedAlready = 1;
1674bd2a
         }
     }
3e906f4c
 
7f529600
     if (   (uintptr_t)dst[0]&15 || (uintptr_t)dst[1]&15 || (uintptr_t)dst[2]&15
         || (uintptr_t)src[0]&15 || (uintptr_t)src[1]&15 || (uintptr_t)src[2]&15
         || dstStride[0]&15 || dstStride[1]&15 || dstStride[2]&15 || dstStride[3]&15
         || srcStride[0]&15 || srcStride[1]&15 || srcStride[2]&15 || srcStride[3]&15
f44ad92c
     ) {
         static int warnedAlready=0;
         int cpu_flags = av_get_cpu_flags();
08bd8c8a
         if (HAVE_MMXEXT && (cpu_flags & AV_CPU_FLAG_SSE2) && !warnedAlready){
f44ad92c
             av_log(c, AV_LOG_WARNING, "Warning: data is not aligned! This can lead to a speedloss\n");
             warnedAlready=1;
         }
     }
 
1674bd2a
     /* Note the user might start scaling the picture in the middle so this
ef0ee7f6
      * will not get executed. This is not really intended but works
      * currently, so people might do it. */
     if (srcSliceY == 0) {
         lumBufIndex  = -1;
         chrBufIndex  = -1;
         dstY         = 0;
         lastInLumBuf = -1;
         lastInChrBuf = -1;
b87fae9f
     }
 
c59f9a68
     if (!should_dither) {
d2585315
         c->chrDither8 = c->lumDither8 = sws_pb_64;
c59f9a68
     }
ef0ee7f6
     lastDstY = dstY;
1674bd2a
 
ef0ee7f6
     for (; dstY < dstH; dstY++) {
         const int chrDstY = dstY >> c->chrDstVSubSample;
         uint8_t *dest[4]  = {
13a09979
             dst[0] + dstStride[0] * dstY,
             dst[1] + dstStride[1] * chrDstY,
             dst[2] + dstStride[2] * chrDstY,
             (CONFIG_SWSCALE_ALPHA && alpPixBuf) ? dst[3] + dstStride[3] * dstY : NULL,
         };
76a34906
         int use_mmx_vfilter= c->use_mmx_vfilter;
1674bd2a
 
ef0ee7f6
         // First line needed as input
         const int firstLumSrcY  = FFMAX(1 - vLumFilterSize, vLumFilterPos[dstY]);
         const int firstLumSrcY2 = FFMAX(1 - vLumFilterSize, vLumFilterPos[FFMIN(dstY | ((1 << c->chrDstVSubSample) - 1), dstH - 1)]);
         // First line needed as input
         const int firstChrSrcY  = FFMAX(1 - vChrFilterSize, vChrFilterPos[chrDstY]);
d49352c7
 
         // Last line needed as input
         int lastLumSrcY  = FFMIN(c->srcH,    firstLumSrcY  + vLumFilterSize) - 1;
         int lastLumSrcY2 = FFMIN(c->srcH,    firstLumSrcY2 + vLumFilterSize) - 1;
         int lastChrSrcY  = FFMIN(c->chrSrcH, firstChrSrcY  + vChrFilterSize) - 1;
1674bd2a
         int enough_lines;
 
ef0ee7f6
         // handle holes (FAST_BILINEAR & weird filters)
         if (firstLumSrcY > lastInLumBuf)
             lastInLumBuf = firstLumSrcY - 1;
         if (firstChrSrcY > lastInChrBuf)
             lastInChrBuf = firstChrSrcY - 1;
db436b17
         av_assert0(firstLumSrcY >= lastInLumBuf - vLumBufSize + 1);
         av_assert0(firstChrSrcY >= lastInChrBuf - vChrBufSize + 1);
1674bd2a
 
         DEBUG_BUFFERS("dstY: %d\n", dstY);
         DEBUG_BUFFERS("\tfirstLumSrcY: %d lastLumSrcY: %d lastInLumBuf: %d\n",
ef0ee7f6
                       firstLumSrcY, lastLumSrcY, lastInLumBuf);
1674bd2a
         DEBUG_BUFFERS("\tfirstChrSrcY: %d lastChrSrcY: %d lastInChrBuf: %d\n",
ef0ee7f6
                       firstChrSrcY, lastChrSrcY, lastInChrBuf);
1674bd2a
 
         // Do we have enough lines in this slice to output the dstY line
ef0ee7f6
         enough_lines = lastLumSrcY2 < srcSliceY + srcSliceH &&
570d63ee
                        lastChrSrcY < FF_CEIL_RSHIFT(srcSliceY + srcSliceH, c->chrSrcVSubSample);
1674bd2a
 
         if (!enough_lines) {
             lastLumSrcY = srcSliceY + srcSliceH - 1;
             lastChrSrcY = chrSrcSliceY + chrSrcSliceH - 1;
             DEBUG_BUFFERS("buffering slice: lastLumSrcY %d lastChrSrcY %d\n",
ef0ee7f6
                           lastLumSrcY, lastChrSrcY);
1674bd2a
         }
a42c29fe
 
ef0ee7f6
         // Do horizontal scaling
         while (lastInLumBuf < lastLumSrcY) {
185655c6
             const uint8_t *src1[4] = {
                 src[0] + (lastInLumBuf + 1 - srcSliceY) * srcStride[0],
                 src[1] + (lastInLumBuf + 1 - srcSliceY) * srcStride[1],
                 src[2] + (lastInLumBuf + 1 - srcSliceY) * srcStride[2],
                 src[3] + (lastInLumBuf + 1 - srcSliceY) * srcStride[3],
             };
1674bd2a
             lumBufIndex++;
db436b17
             av_assert0(lumBufIndex < 2 * vLumBufSize);
             av_assert0(lastInLumBuf + 1 - srcSliceY < srcSliceH);
             av_assert0(lastInLumBuf + 1 - srcSliceY >= 0);
ef0ee7f6
             hyscale(c, lumPixBuf[lumBufIndex], dstW, src1, srcW, lumXInc,
2762ee30
                     hLumFilter, hLumFilterPos, hLumFilterSize,
ef0ee7f6
                     formatConvBuffer, pal, 0);
1674bd2a
             if (CONFIG_SWSCALE_ALPHA && alpPixBuf)
ef0ee7f6
                 hyscale(c, alpPixBuf[lumBufIndex], dstW, src1, srcW,
2762ee30
                         lumXInc, hLumFilter, hLumFilterPos, hLumFilterSize,
ef0ee7f6
                         formatConvBuffer, pal, 1);
1674bd2a
             lastInLumBuf++;
             DEBUG_BUFFERS("\t\tlumBufIndex %d: lastInLumBuf: %d\n",
ef0ee7f6
                           lumBufIndex, lastInLumBuf);
1674bd2a
         }
ef0ee7f6
         while (lastInChrBuf < lastChrSrcY) {
185655c6
             const uint8_t *src1[4] = {
                 src[0] + (lastInChrBuf + 1 - chrSrcSliceY) * srcStride[0],
                 src[1] + (lastInChrBuf + 1 - chrSrcSliceY) * srcStride[1],
                 src[2] + (lastInChrBuf + 1 - chrSrcSliceY) * srcStride[2],
                 src[3] + (lastInChrBuf + 1 - chrSrcSliceY) * srcStride[3],
             };
1674bd2a
             chrBufIndex++;
db436b17
             av_assert0(chrBufIndex < 2 * vChrBufSize);
             av_assert0(lastInChrBuf + 1 - chrSrcSliceY < (chrSrcSliceH));
             av_assert0(lastInChrBuf + 1 - chrSrcSliceY >= 0);
ef0ee7f6
             // FIXME replace parameters through context struct (some at least)
1674bd2a
 
             if (c->needs_hcscale)
2762ee30
                 hcscale(c, chrUPixBuf[chrBufIndex], chrVPixBuf[chrBufIndex],
ef0ee7f6
                         chrDstW, src1, chrSrcW, chrXInc,
                         hChrFilter, hChrFilterPos, hChrFilterSize,
                         formatConvBuffer, pal);
1674bd2a
             lastInChrBuf++;
             DEBUG_BUFFERS("\t\tchrBufIndex %d: lastInChrBuf: %d\n",
ef0ee7f6
                           chrBufIndex, lastInChrBuf);
1674bd2a
         }
ef0ee7f6
         // wrap buf index around to stay inside the ring buffer
         if (lumBufIndex >= vLumBufSize)
             lumBufIndex -= vLumBufSize;
         if (chrBufIndex >= vChrBufSize)
             chrBufIndex -= vChrBufSize;
1674bd2a
         if (!enough_lines)
ef0ee7f6
             break;  // we can't output a dstY line so let's try with the next slice
1674bd2a
 
17337f54
 #if HAVE_MMX_INLINE
ef0ee7f6
         updateMMXDitherTables(c, dstY, lumBufIndex, chrBufIndex,
                               lastInLumBuf, lastInChrBuf);
1674bd2a
 #endif
c59f9a68
         if (should_dither) {
aa2ba8c9
             c->chrDither8 = ff_dither_8x8_128[chrDstY & 7];
             c->lumDither8 = ff_dither_8x8_128[dstY    & 7];
c59f9a68
         }
ef0ee7f6
         if (dstY >= dstH - 2) {
             /* hmm looks like we can't use MMX here without overwriting
              * this array's tail */
             ff_sws_init_output_funcs(c, &yuv2plane1, &yuv2planeX, &yuv2nv12cX,
61884d19
                                      &yuv2packed1, &yuv2packed2, &yuv2packedX, &yuv2anyX);
76a34906
             use_mmx_vfilter= 0;
edeb56fa
         }
 
         {
367d9b29
             const int16_t **lumSrcPtr  = (const int16_t **)(void*) lumPixBuf  + lumBufIndex + firstLumSrcY - lastInLumBuf + vLumBufSize;
             const int16_t **chrUSrcPtr = (const int16_t **)(void*) chrUPixBuf + chrBufIndex + firstChrSrcY - lastInChrBuf + vChrBufSize;
             const int16_t **chrVSrcPtr = (const int16_t **)(void*) chrVPixBuf + chrBufIndex + firstChrSrcY - lastInChrBuf + vChrBufSize;
ef0ee7f6
             const int16_t **alpSrcPtr  = (CONFIG_SWSCALE_ALPHA && alpPixBuf) ?
367d9b29
                                          (const int16_t **)(void*) alpPixBuf + lumBufIndex + firstLumSrcY - lastInLumBuf + vLumBufSize : NULL;
             int16_t *vLumFilter = c->vLumFilter;
             int16_t *vChrFilter = c->vChrFilter;
d49352c7
 
ef0ee7f6
             if (isPlanarYUV(dstFormat) ||
                 (isGray(dstFormat) && !isALPHA(dstFormat))) { // YV12 like
                 const int chrSkipMask = (1 << c->chrDstVSubSample) - 1;
34e8d147
 
74fdb7a0
                 vLumFilter +=    dstY * vLumFilterSize;
                 vChrFilter += chrDstY * vChrFilterSize;
 
18d0a16f
 //                 av_assert0(use_mmx_vfilter != (
 //                                yuv2planeX == yuv2planeX_10BE_c
 //                             || yuv2planeX == yuv2planeX_10LE_c
 //                             || yuv2planeX == yuv2planeX_9BE_c
 //                             || yuv2planeX == yuv2planeX_9LE_c
 //                             || yuv2planeX == yuv2planeX_16BE_c
 //                             || yuv2planeX == yuv2planeX_16LE_c
 //                             || yuv2planeX == yuv2planeX_8_c) || !ARCH_X86);
90640cc7
 
76a34906
                 if(use_mmx_vfilter){
aa9507cc
                     vLumFilter= (int16_t *)c->lumMmxFilter;
                     vChrFilter= (int16_t *)c->chrMmxFilter;
76a34906
                 }
 
109f62e8
                 if (vLumFilterSize == 1) {
                     yuv2plane1(lumSrcPtr[0], dest[0], dstW, c->lumDither8, 0);
                 } else {
74fdb7a0
                     yuv2planeX(vLumFilter, vLumFilterSize,
367d9b29
                                lumSrcPtr, dest[0],
ef0ee7f6
                                dstW, c->lumDither8, 0);
109f62e8
                 }
34e8d147
 
ef0ee7f6
                 if (!((dstY & chrSkipMask) || isGray(dstFormat))) {
109f62e8
                     if (yuv2nv12cX) {
367d9b29
                         yuv2nv12cX(c, vChrFilter,
ef0ee7f6
                                    vChrFilterSize, chrUSrcPtr, chrVSrcPtr,
                                    dest[1], chrDstW);
109f62e8
                     } else if (vChrFilterSize == 1) {
                         yuv2plane1(chrUSrcPtr[0], dest[1], chrDstW, c->chrDither8, 0);
                         yuv2plane1(chrVSrcPtr[0], dest[2], chrDstW, c->chrDither8, 3);
                     } else {
367d9b29
                         yuv2planeX(vChrFilter,
ef0ee7f6
                                    vChrFilterSize, chrUSrcPtr, dest[1],
                                    chrDstW, c->chrDither8, 0);
367d9b29
                         yuv2planeX(vChrFilter,
ef0ee7f6
                                    vChrFilterSize, chrVSrcPtr, dest[2],
367d9b29
                                    chrDstW, c->chrDither8, use_mmx_vfilter ? (c->uv_offx2 >> 1) : 3);
34e8d147
                     }
109f62e8
                 }
34e8d147
 
ef0ee7f6
                 if (CONFIG_SWSCALE_ALPHA && alpPixBuf) {
76a34906
                     if(use_mmx_vfilter){
aa9507cc
                         vLumFilter= (int16_t *)c->alpMmxFilter;
76a34906
                     }
109f62e8
                     if (vLumFilterSize == 1) {
ef0ee7f6
                         yuv2plane1(alpSrcPtr[0], dest[3], dstW,
                                    c->lumDither8, 0);
109f62e8
                     } else {
367d9b29
                         yuv2planeX(vLumFilter,
ef0ee7f6
                                    vLumFilterSize, alpSrcPtr, dest[3],
                                    dstW, c->lumDither8, 0);
ff7913ae
                     }
1674bd2a
                 }
61884d19
             } else if (yuv2packedX) {
353bd158
                 av_assert1(lumSrcPtr  + vLumFilterSize - 1 < (const int16_t **)lumPixBuf  + vLumBufSize * 2);
                 av_assert1(chrUSrcPtr + vChrFilterSize - 1 < (const int16_t **)chrUPixBuf + vChrBufSize * 2);
ef0ee7f6
                 if (c->yuv2packed1 && vLumFilterSize == 1 &&
                     vChrFilterSize <= 2) { // unscaled RGB
9d9c8464
                     int chrAlpha = vChrFilterSize == 1 ? 0 : vChrFilter[2 * dstY + 1];
13a09979
                     yuv2packed1(c, *lumSrcPtr, chrUSrcPtr, chrVSrcPtr,
                                 alpPixBuf ? *alpSrcPtr : NULL,
                                 dest[0], dstW, chrAlpha, dstY);
ef0ee7f6
                 } else if (c->yuv2packed2 && vLumFilterSize == 2 &&
                            vChrFilterSize == 2) { // bilinear upscale RGB
13a09979
                     int lumAlpha = vLumFilter[2 * dstY + 1];
                     int chrAlpha = vChrFilter[2 * dstY + 1];
                     lumMmxFilter[2] =
ef0ee7f6
                     lumMmxFilter[3] = vLumFilter[2 * dstY]    * 0x10001;
13a09979
                     chrMmxFilter[2] =
                     chrMmxFilter[3] = vChrFilter[2 * chrDstY] * 0x10001;
                     yuv2packed2(c, lumSrcPtr, chrUSrcPtr, chrVSrcPtr,
                                 alpPixBuf ? alpSrcPtr : NULL,
                                 dest[0], dstW, lumAlpha, chrAlpha, dstY);
ef0ee7f6
                 } else { // general RGB
13a09979
                     yuv2packedX(c, vLumFilter + dstY * vLumFilterSize,
                                 lumSrcPtr, vLumFilterSize,
                                 vChrFilter + dstY * vChrFilterSize,
                                 chrUSrcPtr, chrVSrcPtr, vChrFilterSize,
                                 alpSrcPtr, dest[0], dstW, dstY);
1674bd2a
                 }
61884d19
             } else {
                 av_assert1(!yuv2packed1 && !yuv2packed2);
                 yuv2anyX(c, vLumFilter + dstY * vLumFilterSize,
                          lumSrcPtr, vLumFilterSize,
                          vChrFilter + dstY * vChrFilterSize,
                          chrUSrcPtr, chrVSrcPtr, vChrFilterSize,
                          alpSrcPtr, dest, dstW, dstY);
1674bd2a
             }
         }
a42c29fe
     }
26b5ad25
     if (isPlanar(dstFormat) && isALPHA(dstFormat) && !alpPixBuf) {
         int length = dstW;
         int height = dstY - lastDstY;
 
4d2f1d8c
         if (is16BPS(dstFormat) || isNBPS(dstFormat)) {
26b5ad25
             const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(dstFormat);
4d2f1d8c
             fillPlane16(dst[3], dstStride[3], length, height, lastDstY,
                     1, desc->comp[3].depth_minus1,
                     isBE(dstFormat));
26b5ad25
         } else
             fillPlane(dst[3], dstStride[3], length, height, lastDstY, 255);
     }
1674bd2a
 
1169f0d0
 #if HAVE_MMXEXT_INLINE
239fdf1b
     if (av_get_cpu_flags() & AV_CPU_FLAG_MMXEXT)
ef0ee7f6
         __asm__ volatile ("sfence" ::: "memory");
1674bd2a
 #endif
     emms_c();
 
     /* store changed local vars back in the context */
ef0ee7f6
     c->dstY         = dstY;
     c->lumBufIndex  = lumBufIndex;
     c->chrBufIndex  = chrBufIndex;
     c->lastInLumBuf = lastInLumBuf;
     c->lastInChrBuf = lastInChrBuf;
1674bd2a
 
     return dstY - lastDstY;
a42c29fe
 }
 
a2f088c0
 av_cold void ff_sws_init_range_convert(SwsContext *c)
 {
     c->lumConvertRange = NULL;
     c->chrConvertRange = NULL;
     if (c->srcRange != c->dstRange && !isAnyRGB(c->dstFormat)) {
         if (c->dstBpc <= 14) {
             if (c->srcRange) {
                 c->lumConvertRange = lumRangeFromJpeg_c;
                 c->chrConvertRange = chrRangeFromJpeg_c;
             } else {
                 c->lumConvertRange = lumRangeToJpeg_c;
                 c->chrConvertRange = chrRangeToJpeg_c;
             }
         } else {
             if (c->srcRange) {
                 c->lumConvertRange = lumRangeFromJpeg16_c;
                 c->chrConvertRange = chrRangeFromJpeg16_c;
             } else {
                 c->lumConvertRange = lumRangeToJpeg16_c;
                 c->chrConvertRange = chrRangeToJpeg16_c;
             }
         }
     }
 }
 
1909f6b1
 static av_cold void sws_init_swscale(SwsContext *c)
dd68318c
 {
716d413c
     enum AVPixelFormat srcFormat = c->srcFormat;
14623020
 
21449410
     ff_sws_init_output_funcs(c, &c->yuv2plane1, &c->yuv2planeX,
                              &c->yuv2nv12cX, &c->yuv2packed1,
61884d19
                              &c->yuv2packed2, &c->yuv2packedX, &c->yuv2anyX);
1b168a42
 
2dd7a1c0
     ff_sws_init_input_funcs(c);
21c08a3f
 
b87fae9f
 
28c1115a
     if (c->srcBpc == 8) {
fa36f334
         if (c->dstBpc <= 14) {
3f04ab4f
             c->hyScale = c->hcScale = hScale8To15_c;
28c1115a
             if (c->flags & SWS_FAST_BILINEAR) {
e9f7c7ae
                 c->hyscale_fast = ff_hyscale_fast_c;
                 c->hcscale_fast = ff_hcscale_fast_c;
28c1115a
             }
1674bd2a
         } else {
3f04ab4f
             c->hyScale = c->hcScale = hScale8To19_c;
1674bd2a
         }
45f6ffe5
     } else {
fa36f334
         c->hyScale = c->hcScale = c->dstBpc > 14 ? hScale16To19_c
ef0ee7f6
                                                  : hScale16To15_c;
28c1115a
     }
45f6ffe5
 
a2f088c0
     ff_sws_init_range_convert(c);
fccb9b2b
 
1674bd2a
     if (!(isGray(srcFormat) || isGray(c->dstFormat) ||
716d413c
           srcFormat == AV_PIX_FMT_MONOBLACK || srcFormat == AV_PIX_FMT_MONOWHITE))
1674bd2a
         c->needs_hcscale = 1;
d4e24275
 }
2b991422
 
a4388ebd
 SwsFunc ff_getSwsFunc(SwsContext *c)
2b991422
 {
1909f6b1
     sws_init_swscale(c);
2b991422
 
c2503d9c
     if (ARCH_PPC)
         ff_sws_init_swscale_ppc(c);
a5195839
     if (ARCH_X86)
         ff_sws_init_swscale_x86(c);
2b991422
 
1909f6b1
     return swscale;
2b991422
 }
115e291b
 
 static void reset_ptr(const uint8_t *src[], int format)
 {
     if (!isALPHA(format))
         src[3] = NULL;
     if (!isPlanar(format)) {
         src[3] = src[2] = NULL;
 
         if (!usePal(format))
             src[1] = NULL;
     }
 }
 
ac627b3d
 static int check_image_pointers(const uint8_t * const data[4], enum AVPixelFormat pix_fmt,
115e291b
                                 const int linesizes[4])
 {
a9bd51b1
     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt);
115e291b
     int i;
 
     for (i = 0; i < 4; i++) {
         int plane = desc->comp[i].plane;
         if (!data[plane] || !linesizes[plane])
             return 0;
     }
 
     return 1;
 }
 
0c47c902
 static void xyz12Torgb48(struct SwsContext *c, uint16_t *dst,
                          const uint16_t *src, int stride, int h)
 {
     int xp,yp;
     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(c->srcFormat);
 
     for (yp=0; yp<h; yp++) {
         for (xp=0; xp+2<stride; xp+=3) {
             int x, y, z, r, g, b;
 
c7c71f95
             if (desc->flags & AV_PIX_FMT_FLAG_BE) {
0c47c902
                 x = AV_RB16(src + xp + 0);
                 y = AV_RB16(src + xp + 1);
                 z = AV_RB16(src + xp + 2);
             } else {
                 x = AV_RL16(src + xp + 0);
                 y = AV_RL16(src + xp + 1);
                 z = AV_RL16(src + xp + 2);
             }
 
             x = c->xyzgamma[x>>4];
             y = c->xyzgamma[y>>4];
             z = c->xyzgamma[z>>4];
 
             // convert from XYZlinear to sRGBlinear
             r = c->xyz2rgb_matrix[0][0] * x +
                 c->xyz2rgb_matrix[0][1] * y +
                 c->xyz2rgb_matrix[0][2] * z >> 12;
             g = c->xyz2rgb_matrix[1][0] * x +
                 c->xyz2rgb_matrix[1][1] * y +
                 c->xyz2rgb_matrix[1][2] * z >> 12;
             b = c->xyz2rgb_matrix[2][0] * x +
cb23b06e
                 c->xyz2rgb_matrix[2][1] * y +
0c47c902
                 c->xyz2rgb_matrix[2][2] * z >> 12;
 
             // limit values to 12-bit depth
             r = av_clip_c(r,0,4095);
             g = av_clip_c(g,0,4095);
             b = av_clip_c(b,0,4095);
 
             // convert from sRGBlinear to RGB and scale from 12bit to 16bit
c7c71f95
             if (desc->flags & AV_PIX_FMT_FLAG_BE) {
0c47c902
                 AV_WB16(dst + xp + 0, c->rgbgamma[r] << 4);
                 AV_WB16(dst + xp + 1, c->rgbgamma[g] << 4);
                 AV_WB16(dst + xp + 2, c->rgbgamma[b] << 4);
             } else {
                 AV_WL16(dst + xp + 0, c->rgbgamma[r] << 4);
                 AV_WL16(dst + xp + 1, c->rgbgamma[g] << 4);
                 AV_WL16(dst + xp + 2, c->rgbgamma[b] << 4);
             }
         }
         src += stride;
         dst += stride;
     }
 }
 
b9b1a2c3
 static void rgb48Toxyz12(struct SwsContext *c, uint16_t *dst,
                          const uint16_t *src, int stride, int h)
 {
     int xp,yp;
ab9d7e0b
     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(c->dstFormat);
b9b1a2c3
 
     for (yp=0; yp<h; yp++) {
         for (xp=0; xp+2<stride; xp+=3) {
             int x, y, z, r, g, b;
 
             if (desc->flags & AV_PIX_FMT_FLAG_BE) {
                 r = AV_RB16(src + xp + 0);
                 g = AV_RB16(src + xp + 1);
                 b = AV_RB16(src + xp + 2);
             } else {
                 r = AV_RL16(src + xp + 0);
                 g = AV_RL16(src + xp + 1);
                 b = AV_RL16(src + xp + 2);
             }
 
             r = c->rgbgammainv[r>>4];
             g = c->rgbgammainv[g>>4];
             b = c->rgbgammainv[b>>4];
 
             // convert from sRGBlinear to XYZlinear
             x = c->rgb2xyz_matrix[0][0] * r +
                 c->rgb2xyz_matrix[0][1] * g +
                 c->rgb2xyz_matrix[0][2] * b >> 12;
             y = c->rgb2xyz_matrix[1][0] * r +
                 c->rgb2xyz_matrix[1][1] * g +
                 c->rgb2xyz_matrix[1][2] * b >> 12;
             z = c->rgb2xyz_matrix[2][0] * r +
                 c->rgb2xyz_matrix[2][1] * g +
                 c->rgb2xyz_matrix[2][2] * b >> 12;
 
             // limit values to 12-bit depth
             x = av_clip_c(x,0,4095);
             y = av_clip_c(y,0,4095);
             z = av_clip_c(z,0,4095);
 
             // convert from XYZlinear to X'Y'Z' and scale from 12bit to 16bit
             if (desc->flags & AV_PIX_FMT_FLAG_BE) {
                 AV_WB16(dst + xp + 0, c->xyzgammainv[x] << 4);
                 AV_WB16(dst + xp + 1, c->xyzgammainv[y] << 4);
                 AV_WB16(dst + xp + 2, c->xyzgammainv[z] << 4);
             } else {
                 AV_WL16(dst + xp + 0, c->xyzgammainv[x] << 4);
                 AV_WL16(dst + xp + 1, c->xyzgammainv[y] << 4);
                 AV_WL16(dst + xp + 2, c->xyzgammainv[z] << 4);
             }
         }
         src += stride;
         dst += stride;
     }
 }
 
115e291b
 /**
  * swscale wrapper, so we don't need to export the SwsContext.
  * Assumes planar YUV to be in YUV order instead of YVU.
  */
 int attribute_align_arg sws_scale(struct SwsContext *c,
                                   const uint8_t * const srcSlice[],
                                   const int srcStride[], int srcSliceY,
                                   int srcSliceH, uint8_t *const dst[],
                                   const int dstStride[])
 {
     int i, ret;
320ae9fb
     const uint8_t *src2[4];
     uint8_t *dst2[4];
115e291b
     uint8_t *rgb0_tmp = NULL;
 
14fa7fc6
     if (!srcStride || !dstStride || !dst || !srcSlice) {
320ae9fb
         av_log(c, AV_LOG_ERROR, "One of the input parameters to sws_scale() is NULL, please check the calling code\n");
         return 0;
     }
633a2a08
     if (c->cascaded_context[0] && srcSliceY == 0 && srcSliceH == c->cascaded_context[0]->srcH) {
         ret = sws_scale(c->cascaded_context[0],
                         srcSlice, srcStride, srcSliceY, srcSliceH,
                         c->cascaded_tmp, c->cascaded_tmpStride);
         if (ret < 0)
             return ret;
         ret = sws_scale(c->cascaded_context[1],
                         (const uint8_t * const * )c->cascaded_tmp, c->cascaded_tmpStride, 0, c->cascaded_context[0]->dstH,
                         dst, dstStride);
         return ret;
     }
 
320ae9fb
     memcpy(src2, srcSlice, sizeof(src2));
     memcpy(dst2, dst, sizeof(dst2));
 
115e291b
     // do not mess up sliceDir if we have a "trailing" 0-size slice
     if (srcSliceH == 0)
         return 0;
 
     if (!check_image_pointers(srcSlice, c->srcFormat, srcStride)) {
         av_log(c, AV_LOG_ERROR, "bad src image pointers\n");
         return 0;
     }
     if (!check_image_pointers((const uint8_t* const*)dst, c->dstFormat, dstStride)) {
         av_log(c, AV_LOG_ERROR, "bad dst image pointers\n");
         return 0;
     }
 
     if (c->sliceDir == 0 && srcSliceY != 0 && srcSliceY + srcSliceH != c->srcH) {
         av_log(c, AV_LOG_ERROR, "Slices start in the middle!\n");
         return 0;
     }
     if (c->sliceDir == 0) {
         if (srcSliceY == 0) c->sliceDir = 1; else c->sliceDir = -1;
     }
 
     if (usePal(c->srcFormat)) {
         for (i = 0; i < 256; i++) {
28875c41
             int r, g, b, y, u, v, a = 0xff;
ac627b3d
             if (c->srcFormat == AV_PIX_FMT_PAL8) {
28875c41
                 uint32_t p = ((const uint32_t *)(srcSlice[1]))[i];
115e291b
                 a = (p >> 24) & 0xFF;
                 r = (p >> 16) & 0xFF;
                 g = (p >>  8) & 0xFF;
                 b =  p        & 0xFF;
ac627b3d
             } else if (c->srcFormat == AV_PIX_FMT_RGB8) {
115e291b
                 r = ( i >> 5     ) * 36;
                 g = ((i >> 2) & 7) * 36;
                 b = ( i       & 3) * 85;
ac627b3d
             } else if (c->srcFormat == AV_PIX_FMT_BGR8) {
115e291b
                 b = ( i >> 6     ) * 85;
                 g = ((i >> 3) & 7) * 36;
                 r = ( i       & 7) * 36;
ac627b3d
             } else if (c->srcFormat == AV_PIX_FMT_RGB4_BYTE) {
115e291b
                 r = ( i >> 3     ) * 255;
                 g = ((i >> 1) & 3) * 85;
                 b = ( i       & 1) * 255;
ac627b3d
             } else if (c->srcFormat == AV_PIX_FMT_GRAY8 || c->srcFormat == AV_PIX_FMT_GRAY8A) {
115e291b
                 r = g = b = i;
             } else {
ac627b3d
                 av_assert1(c->srcFormat == AV_PIX_FMT_BGR4_BYTE);
115e291b
                 b = ( i >> 3     ) * 255;
                 g = ((i >> 1) & 3) * 85;
                 r = ( i       & 1) * 255;
             }
 #define RGB2YUV_SHIFT 15
 #define BY ( (int) (0.114 * 219 / 255 * (1 << RGB2YUV_SHIFT) + 0.5))
 #define BV (-(int) (0.081 * 224 / 255 * (1 << RGB2YUV_SHIFT) + 0.5))
 #define BU ( (int) (0.500 * 224 / 255 * (1 << RGB2YUV_SHIFT) + 0.5))
 #define GY ( (int) (0.587 * 219 / 255 * (1 << RGB2YUV_SHIFT) + 0.5))
 #define GV (-(int) (0.419 * 224 / 255 * (1 << RGB2YUV_SHIFT) + 0.5))
 #define GU (-(int) (0.331 * 224 / 255 * (1 << RGB2YUV_SHIFT) + 0.5))
 #define RY ( (int) (0.299 * 219 / 255 * (1 << RGB2YUV_SHIFT) + 0.5))
 #define RV ( (int) (0.500 * 224 / 255 * (1 << RGB2YUV_SHIFT) + 0.5))
 #define RU (-(int) (0.169 * 224 / 255 * (1 << RGB2YUV_SHIFT) + 0.5))
 
             y = av_clip_uint8((RY * r + GY * g + BY * b + ( 33 << (RGB2YUV_SHIFT - 1))) >> RGB2YUV_SHIFT);
             u = av_clip_uint8((RU * r + GU * g + BU * b + (257 << (RGB2YUV_SHIFT - 1))) >> RGB2YUV_SHIFT);
             v = av_clip_uint8((RV * r + GV * g + BV * b + (257 << (RGB2YUV_SHIFT - 1))) >> RGB2YUV_SHIFT);
7a32ab5e
             c->pal_yuv[i]= y + (u<<8) + (v<<16) + ((unsigned)a<<24);
115e291b
 
             switch (c->dstFormat) {
ac627b3d
             case AV_PIX_FMT_BGR32:
115e291b
 #if !HAVE_BIGENDIAN
ac627b3d
             case AV_PIX_FMT_RGB24:
115e291b
 #endif
7a32ab5e
                 c->pal_rgb[i]=  r + (g<<8) + (b<<16) + ((unsigned)a<<24);
115e291b
                 break;
ac627b3d
             case AV_PIX_FMT_BGR32_1:
115e291b
 #if HAVE_BIGENDIAN
ac627b3d
             case AV_PIX_FMT_BGR24:
115e291b
 #endif
7a32ab5e
                 c->pal_rgb[i]= a + (r<<8) + (g<<16) + ((unsigned)b<<24);
115e291b
                 break;
ac627b3d
             case AV_PIX_FMT_RGB32_1:
115e291b
 #if HAVE_BIGENDIAN
ac627b3d
             case AV_PIX_FMT_RGB24:
115e291b
 #endif
7a32ab5e
                 c->pal_rgb[i]= a + (b<<8) + (g<<16) + ((unsigned)r<<24);
115e291b
                 break;
ac627b3d
             case AV_PIX_FMT_RGB32:
115e291b
 #if !HAVE_BIGENDIAN
ac627b3d
             case AV_PIX_FMT_BGR24:
115e291b
 #endif
             default:
7a32ab5e
                 c->pal_rgb[i]=  b + (g<<8) + (r<<16) + ((unsigned)a<<24);
115e291b
             }
         }
     }
 
     if (c->src0Alpha && !c->dst0Alpha && isALPHA(c->dstFormat)) {
         uint8_t *base;
         int x,y;
         rgb0_tmp = av_malloc(FFABS(srcStride[0]) * srcSliceH + 32);
24ec7a5e
         if (!rgb0_tmp)
             return AVERROR(ENOMEM);
 
115e291b
         base = srcStride[0] < 0 ? rgb0_tmp - srcStride[0] * (srcSliceH-1) : rgb0_tmp;
         for (y=0; y<srcSliceH; y++){
             memcpy(base + srcStride[0]*y, src2[0] + srcStride[0]*y, 4*c->srcW);
             for (x=c->src0Alpha-1; x<4*c->srcW; x+=4) {
                 base[ srcStride[0]*y + x] = 0xFF;
             }
         }
         src2[0] = base;
     }
 
0c47c902
     if (c->srcXYZ && !(c->dstXYZ && c->srcW==c->dstW && c->srcH==c->dstH)) {
         uint8_t *base;
         rgb0_tmp = av_malloc(FFABS(srcStride[0]) * srcSliceH + 32);
24ec7a5e
         if (!rgb0_tmp)
             return AVERROR(ENOMEM);
 
0c47c902
         base = srcStride[0] < 0 ? rgb0_tmp - srcStride[0] * (srcSliceH-1) : rgb0_tmp;
 
b2cf655d
         xyz12Torgb48(c, (uint16_t*)base, (const uint16_t*)src2[0], srcStride[0]/2, srcSliceH);
0c47c902
         src2[0] = base;
     }
 
1e0e1932
     if (!srcSliceY && (c->flags & SWS_BITEXACT) && c->dither == SWS_DITHER_ED && c->dither_error[0])
646ade76
         for (i = 0; i < 4; i++)
             memset(c->dither_error[i], 0, sizeof(c->dither_error[0][0]) * (c->dstW+2));
 
 
115e291b
     // copy strides, so they can safely be modified
     if (c->sliceDir == 1) {
         // slices go from top to bottom
         int srcStride2[4] = { srcStride[0], srcStride[1], srcStride[2],
                               srcStride[3] };
         int dstStride2[4] = { dstStride[0], dstStride[1], dstStride[2],
                               dstStride[3] };
 
         reset_ptr(src2, c->srcFormat);
         reset_ptr((void*)dst2, c->dstFormat);
 
         /* reset slice direction at end of frame */
         if (srcSliceY + srcSliceH == c->srcH)
             c->sliceDir = 0;
 
01cac26f
         ret = c->swscale(c, src2, srcStride2, srcSliceY, srcSliceH, dst2,
115e291b
                           dstStride2);
     } else {
         // slices go from bottom to top => we flip the image internally
         int srcStride2[4] = { -srcStride[0], -srcStride[1], -srcStride[2],
                               -srcStride[3] };
         int dstStride2[4] = { -dstStride[0], -dstStride[1], -dstStride[2],
                               -dstStride[3] };
 
         src2[0] += (srcSliceH - 1) * srcStride[0];
         if (!usePal(c->srcFormat))
             src2[1] += ((srcSliceH >> c->chrSrcVSubSample) - 1) * srcStride[1];
         src2[2] += ((srcSliceH >> c->chrSrcVSubSample) - 1) * srcStride[2];
         src2[3] += (srcSliceH - 1) * srcStride[3];
         dst2[0] += ( c->dstH                         - 1) * dstStride[0];
         dst2[1] += ((c->dstH >> c->chrDstVSubSample) - 1) * dstStride[1];
         dst2[2] += ((c->dstH >> c->chrDstVSubSample) - 1) * dstStride[2];
         dst2[3] += ( c->dstH                         - 1) * dstStride[3];
 
         reset_ptr(src2, c->srcFormat);
         reset_ptr((void*)dst2, c->dstFormat);
 
         /* reset slice direction at end of frame */
         if (!srcSliceY)
             c->sliceDir = 0;
 
01cac26f
         ret = c->swscale(c, src2, srcStride2, c->srcH-srcSliceY-srcSliceH,
115e291b
                           srcSliceH, dst2, dstStride2);
     }
 
b9b1a2c3
 
     if (c->dstXYZ && !(c->srcXYZ && c->srcW==c->dstW && c->srcH==c->dstH)) {
         /* replace on the same data */
         rgb48Toxyz12(c, (uint16_t*)dst2[0], (const uint16_t*)dst2[0], dstStride[0]/2, ret);
     }
 
115e291b
     av_free(rgb0_tmp);
     return ret;
 }