2002-01-21 18:32:31 +00:00
|
|
|
/*
|
2011-11-18 20:44:26 +00:00
|
|
|
* Copyright (C) 2001-2011 Michael Niedermayer <michaelni@gmx.at>
|
2006-10-07 15:33:14 +00:00
|
|
|
*
|
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
2010-03-27 11:31:02 +00:00
|
|
|
* 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.
|
2006-10-07 15:33:14 +00:00
|
|
|
*
|
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2010-03-27 11:31:02 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2006-10-07 15:33:14 +00:00
|
|
|
*
|
2010-03-27 11:31:02 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2007-07-05 10:18:58 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2006-10-07 15:33:14 +00:00
|
|
|
*/
|
2001-10-18 22:27:13 +00:00
|
|
|
|
2012-04-01 08:34:10 +00:00
|
|
|
#include <assert.h>
|
2001-10-17 02:30:39 +00:00
|
|
|
#include <inttypes.h>
|
2001-12-02 20:03:26 +00:00
|
|
|
#include <math.h>
|
2001-12-06 00:10:42 +00:00
|
|
|
#include <stdio.h>
|
2012-04-01 08:34:10 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
2011-05-24 20:59:11 +00:00
|
|
|
#include "libavutil/avassert.h"
|
2009-08-29 23:02:01 +00:00
|
|
|
#include "libavutil/avutil.h"
|
2008-05-09 12:00:25 +00:00
|
|
|
#include "libavutil/bswap.h"
|
2012-04-01 08:34:10 +00:00
|
|
|
#include "libavutil/cpu.h"
|
|
|
|
#include "libavutil/intreadwrite.h"
|
|
|
|
#include "libavutil/mathematics.h"
|
2009-11-26 21:08:45 +00:00
|
|
|
#include "libavutil/pixdesc.h"
|
2012-04-01 08:34:10 +00:00
|
|
|
#include "config.h"
|
|
|
|
#include "rgb2rgb.h"
|
|
|
|
#include "swscale_internal.h"
|
|
|
|
#include "swscale.h"
|
2002-06-22 08:49:45 +00:00
|
|
|
|
2011-07-05 19:49:11 +00:00
|
|
|
DECLARE_ALIGNED(8, const uint8_t, dither_8x8_128)[8][8] = {
|
2012-04-01 08:34:10 +00:00
|
|
|
{ 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, },
|
2011-07-05 19:49:11 +00:00
|
|
|
};
|
2002-01-21 15:22:28 +00:00
|
|
|
|
2012-04-01 08:34:10 +00:00
|
|
|
DECLARE_ALIGNED(8, const uint8_t, ff_sws_pb_64)[8] = {
|
|
|
|
64, 64, 64, 64, 64, 64, 64, 64
|
2011-07-05 19:49:11 +00:00
|
|
|
};
|
2012-02-08 01:59:09 +00:00
|
|
|
|
2012-04-01 08:34:10 +00:00
|
|
|
static av_always_inline void fillPlane(uint8_t *plane, int stride, int width,
|
|
|
|
int height, int y, uint8_t val)
|
2009-08-16 21:11:28 +00:00
|
|
|
{
|
2009-03-17 19:53:36 +00:00
|
|
|
int i;
|
2012-04-01 08:34:10 +00:00
|
|
|
uint8_t *ptr = plane + stride * y;
|
|
|
|
for (i = 0; i < height; i++) {
|
2009-03-17 19:53:36 +00:00
|
|
|
memset(ptr, val, width);
|
|
|
|
ptr += stride;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-01 08:34:10 +00:00
|
|
|
static void hScale16To19_c(SwsContext *c, int16_t *_dst, int dstW,
|
|
|
|
const uint8_t *_src, const int16_t *filter,
|
2012-03-05 20:26:42 +00:00
|
|
|
const int32_t *filterPos, int filterSize)
|
2011-06-29 16:39:43 +00:00
|
|
|
{
|
2012-10-06 11:29:37 +00:00
|
|
|
const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(c->srcFormat);
|
2011-06-29 16:39:43 +00:00
|
|
|
int i;
|
2012-04-01 08:34:10 +00:00
|
|
|
int32_t *dst = (int32_t *) _dst;
|
2011-06-29 16:39:43 +00:00
|
|
|
const uint16_t *src = (const uint16_t *) _src;
|
2012-10-06 11:29:37 +00:00
|
|
|
int bits = desc->comp[0].depth_minus1;
|
2012-04-01 08:34:10 +00:00
|
|
|
int sh = bits - 4;
|
2011-06-29 16:39:43 +00:00
|
|
|
|
2012-10-12 16:57:04 +00:00
|
|
|
if((isAnyRGB(c->srcFormat) || c->srcFormat==AV_PIX_FMT_PAL8) && desc->comp[0].depth_minus1<15)
|
2011-07-03 00:08:45 +00:00
|
|
|
sh= 9;
|
|
|
|
|
2011-06-29 16:39:43 +00:00
|
|
|
for (i = 0; i < dstW; i++) {
|
|
|
|
int j;
|
|
|
|
int srcPos = filterPos[i];
|
2012-04-01 08:34:10 +00:00
|
|
|
int val = 0;
|
2011-06-29 16:39:43 +00:00
|
|
|
|
|
|
|
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
|
2011-07-01 00:35:13 +00:00
|
|
|
dst[i] = FFMIN(val >> sh, (1 << 19) - 1);
|
2011-06-29 16:39:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-01 08:34:10 +00:00
|
|
|
static void hScale16To15_c(SwsContext *c, int16_t *dst, int dstW,
|
|
|
|
const uint8_t *_src, const int16_t *filter,
|
2012-03-05 20:26:42 +00:00
|
|
|
const int32_t *filterPos, int filterSize)
|
2011-08-02 22:42:35 +00:00
|
|
|
{
|
2012-10-06 11:29:37 +00:00
|
|
|
const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(c->srcFormat);
|
2011-08-02 22:42:35 +00:00
|
|
|
int i;
|
|
|
|
const uint16_t *src = (const uint16_t *) _src;
|
2012-10-06 11:29:37 +00:00
|
|
|
int sh = desc->comp[0].depth_minus1;
|
2011-08-02 22:42:35 +00:00
|
|
|
|
2011-08-14 17:05:03 +00:00
|
|
|
if(sh<15)
|
2012-10-12 16:57:04 +00:00
|
|
|
sh= isAnyRGB(c->srcFormat) || c->srcFormat==AV_PIX_FMT_PAL8 ? 13 : desc->comp[0].depth_minus1;
|
2011-08-14 17:05:03 +00:00
|
|
|
|
2011-08-02 22:42:35 +00:00
|
|
|
for (i = 0; i < dstW; i++) {
|
|
|
|
int j;
|
|
|
|
int srcPos = filterPos[i];
|
2012-04-01 08:34:10 +00:00
|
|
|
int val = 0;
|
2011-08-02 22:42:35 +00:00
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-06-03 05:34:12 +00:00
|
|
|
// bilinear / bicubic scaling
|
2012-04-01 08:34:10 +00:00
|
|
|
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)
|
2009-08-16 21:11:28 +00:00
|
|
|
{
|
2008-10-08 17:46:22 +00:00
|
|
|
int i;
|
2012-04-01 08:34:10 +00:00
|
|
|
for (i = 0; i < dstW; i++) {
|
2011-06-03 05:34:12 +00:00
|
|
|
int j;
|
2012-04-01 08:34:10 +00:00
|
|
|
int srcPos = filterPos[i];
|
|
|
|
int val = 0;
|
|
|
|
for (j = 0; j < filterSize; j++) {
|
|
|
|
val += ((int)src[srcPos + j]) * filter[filterSize * i + j];
|
2010-01-17 23:02:20 +00:00
|
|
|
}
|
2012-04-01 08:34:10 +00:00
|
|
|
dst[i] = FFMIN(val >> 7, (1 << 15) - 1); // the cubic equation does overflow ...
|
2010-01-17 23:00:01 +00:00
|
|
|
}
|
2011-06-03 05:34:12 +00:00
|
|
|
}
|
2008-10-08 17:46:22 +00:00
|
|
|
|
2012-04-01 08:34:10 +00:00
|
|
|
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)
|
2011-08-02 22:42:35 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int32_t *dst = (int32_t *) _dst;
|
2012-04-01 08:34:10 +00:00
|
|
|
for (i = 0; i < dstW; i++) {
|
2011-08-02 22:42:35 +00:00
|
|
|
int j;
|
2012-04-01 08:34:10 +00:00
|
|
|
int srcPos = filterPos[i];
|
|
|
|
int val = 0;
|
|
|
|
for (j = 0; j < filterSize; j++) {
|
|
|
|
val += ((int)src[srcPos + j]) * filter[filterSize * i + j];
|
2011-08-02 22:42:35 +00:00
|
|
|
}
|
2012-04-01 08:34:10 +00:00
|
|
|
dst[i] = FFMIN(val >> 3, (1 << 19) - 1); // the cubic equation does overflow ...
|
2011-08-02 22:42:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-01 08:34:10 +00:00
|
|
|
// FIXME all pal and rgb srcFormats could do this convertion as well
|
|
|
|
// FIXME all scalers more complex than bilinear could do half of this transform
|
2011-06-04 04:31:35 +00:00
|
|
|
static void chrRangeToJpeg_c(int16_t *dstU, int16_t *dstV, int width)
|
2011-06-03 05:34:12 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < width; i++) {
|
2012-04-01 08:34:10 +00:00
|
|
|
dstU[i] = (FFMIN(dstU[i], 30775) * 4663 - 9289992) >> 12; // -264
|
|
|
|
dstV[i] = (FFMIN(dstV[i], 30775) * 4663 - 9289992) >> 12; // -264
|
2007-04-29 13:39:27 +00:00
|
|
|
}
|
2002-06-22 08:49:45 +00:00
|
|
|
}
|
2012-04-01 08:34:10 +00:00
|
|
|
|
2011-06-04 04:31:35 +00:00
|
|
|
static void chrRangeFromJpeg_c(int16_t *dstU, int16_t *dstV, int width)
|
2009-08-16 21:11:28 +00:00
|
|
|
{
|
2011-06-03 05:34:12 +00:00
|
|
|
int i;
|
|
|
|
for (i = 0; i < width; i++) {
|
2012-04-01 08:34:10 +00:00
|
|
|
dstU[i] = (dstU[i] * 1799 + 4081085) >> 11; // 1469
|
|
|
|
dstV[i] = (dstV[i] * 1799 + 4081085) >> 11; // 1469
|
2011-06-03 05:34:12 +00:00
|
|
|
}
|
2002-02-10 00:43:31 +00:00
|
|
|
}
|
2012-04-01 08:34:10 +00:00
|
|
|
|
2011-06-04 04:31:35 +00:00
|
|
|
static void lumRangeToJpeg_c(int16_t *dst, int width)
|
2009-08-16 21:11:28 +00:00
|
|
|
{
|
2011-06-03 05:34:12 +00:00
|
|
|
int i;
|
|
|
|
for (i = 0; i < width; i++)
|
2012-04-01 08:34:10 +00:00
|
|
|
dst[i] = (FFMIN(dst[i], 30189) * 19077 - 39057361) >> 14;
|
2011-06-03 05:34:12 +00:00
|
|
|
}
|
2012-04-01 08:34:10 +00:00
|
|
|
|
2011-06-04 04:31:35 +00:00
|
|
|
static void lumRangeFromJpeg_c(int16_t *dst, int width)
|
2011-06-03 05:34:12 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < width; i++)
|
2012-04-01 08:34:10 +00:00
|
|
|
dst[i] = (dst[i] * 14071 + 33561947) >> 14;
|
2002-06-27 23:48:53 +00:00
|
|
|
}
|
|
|
|
|
2011-06-29 16:39:43 +00:00
|
|
|
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++) {
|
2012-04-01 08:34:10 +00:00
|
|
|
dstU[i] = (FFMIN(dstU[i], 30775 << 4) * 4663 - (9289992 << 4)) >> 12; // -264
|
|
|
|
dstV[i] = (FFMIN(dstV[i], 30775 << 4) * 4663 - (9289992 << 4)) >> 12; // -264
|
2011-06-29 16:39:43 +00:00
|
|
|
}
|
|
|
|
}
|
2012-04-01 08:34:10 +00:00
|
|
|
|
2011-06-29 16:39:43 +00:00
|
|
|
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++) {
|
2012-04-01 08:34:10 +00:00
|
|
|
dstU[i] = (dstU[i] * 1799 + (4081085 << 4)) >> 11; // 1469
|
|
|
|
dstV[i] = (dstV[i] * 1799 + (4081085 << 4)) >> 11; // 1469
|
2011-06-29 16:39:43 +00:00
|
|
|
}
|
|
|
|
}
|
2012-04-01 08:34:10 +00:00
|
|
|
|
2011-06-29 16:39:43 +00:00
|
|
|
static void lumRangeToJpeg16_c(int16_t *_dst, int width)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int32_t *dst = (int32_t *) _dst;
|
|
|
|
for (i = 0; i < width; i++)
|
2012-04-01 08:34:10 +00:00
|
|
|
dst[i] = (FFMIN(dst[i], 30189 << 4) * 4769 - (39057361 << 2)) >> 12;
|
2011-06-29 16:39:43 +00:00
|
|
|
}
|
2012-04-01 08:34:10 +00:00
|
|
|
|
2011-06-29 16:39:43 +00:00
|
|
|
static void lumRangeFromJpeg16_c(int16_t *_dst, int width)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int32_t *dst = (int32_t *) _dst;
|
|
|
|
for (i = 0; i < width; i++)
|
2011-07-01 03:28:13 +00:00
|
|
|
dst[i] = (dst[i]*(14071/4) + (33561947<<4)/4)>>12;
|
2011-06-29 16:39:43 +00:00
|
|
|
}
|
|
|
|
|
2011-06-03 05:34:13 +00:00
|
|
|
static void hyscale_fast_c(SwsContext *c, int16_t *dst, int dstWidth,
|
|
|
|
const uint8_t *src, int srcW, int xInc)
|
2008-07-06 03:27:31 +00:00
|
|
|
{
|
2011-06-03 05:34:12 +00:00
|
|
|
int i;
|
2012-04-01 08:34:10 +00:00
|
|
|
unsigned int xpos = 0;
|
|
|
|
for (i = 0; i < dstWidth; i++) {
|
|
|
|
register unsigned int xx = xpos >> 16;
|
|
|
|
register unsigned int xalpha = (xpos & 0xFFFF) >> 9;
|
|
|
|
dst[i] = (src[xx] << 7) + (src[xx + 1] - src[xx]) * xalpha;
|
|
|
|
xpos += xInc;
|
2008-07-06 03:27:31 +00:00
|
|
|
}
|
2011-06-04 04:31:35 +00:00
|
|
|
for (i=dstWidth-1; (i*xInc)>>16 >=srcW-1; i--)
|
|
|
|
dst[i] = src[srcW-1]*128;
|
2008-07-06 03:26:32 +00:00
|
|
|
}
|
2008-07-06 03:27:31 +00:00
|
|
|
|
2011-06-03 05:34:13 +00:00
|
|
|
// *** horizontal scale Y line to temp buffer
|
2011-06-29 16:39:43 +00:00
|
|
|
static av_always_inline void hyscale(SwsContext *c, int16_t *dst, int dstWidth,
|
2012-04-01 08:34:10 +00:00
|
|
|
const uint8_t *src_in[4],
|
|
|
|
int srcW, int xInc,
|
2011-06-08 16:31:11 +00:00
|
|
|
const int16_t *hLumFilter,
|
2012-04-01 08:34:10 +00:00
|
|
|
const int32_t *hLumFilterPos,
|
|
|
|
int hLumFilterSize,
|
2011-06-08 16:31:11 +00:00
|
|
|
uint8_t *formatConvBuffer,
|
|
|
|
uint32_t *pal, int isAlpha)
|
2011-06-03 05:34:12 +00:00
|
|
|
{
|
2012-04-13 19:21:15 +00:00
|
|
|
void (*toYV12)(uint8_t *, const uint8_t *, const uint8_t *, const uint8_t *, int, uint32_t *) =
|
2012-04-01 08:34:10 +00:00
|
|
|
isAlpha ? c->alpToYV12 : c->lumToYV12;
|
2011-06-04 04:31:35 +00:00
|
|
|
void (*convertRange)(int16_t *, int) = isAlpha ? NULL : c->lumConvertRange;
|
2011-11-24 18:40:05 +00:00
|
|
|
const uint8_t *src = src_in[isAlpha ? 3 : 0];
|
2011-05-09 19:38:46 +00:00
|
|
|
|
2011-06-03 05:34:12 +00:00
|
|
|
if (toYV12) {
|
2011-11-25 00:38:21 +00:00
|
|
|
toYV12(formatConvBuffer, src, src_in[1], src_in[2], srcW, pal);
|
2012-04-01 08:34:10 +00:00
|
|
|
src = formatConvBuffer;
|
2011-11-24 18:40:05 +00:00
|
|
|
} else if (c->readLumPlanar && !isAlpha) {
|
|
|
|
c->readLumPlanar(formatConvBuffer, src_in, srcW);
|
|
|
|
src = formatConvBuffer;
|
2011-05-13 02:40:40 +00:00
|
|
|
}
|
2011-06-03 05:34:12 +00:00
|
|
|
|
2011-09-13 22:32:18 +00:00
|
|
|
if (!c->hyscale_fast) {
|
2012-04-01 08:34:10 +00:00
|
|
|
c->hyScale(c, dst, dstWidth, src, hLumFilter,
|
|
|
|
hLumFilterPos, hLumFilterSize);
|
2011-06-03 05:34:12 +00:00
|
|
|
} else { // fast bilinear upscale / crap downscale
|
|
|
|
c->hyscale_fast(c, dst, dstWidth, src, srcW, xInc);
|
2008-07-06 03:27:31 +00:00
|
|
|
}
|
2011-06-03 05:34:12 +00:00
|
|
|
|
|
|
|
if (convertRange)
|
|
|
|
convertRange(dst, dstWidth);
|
2002-02-06 20:52:14 +00:00
|
|
|
}
|
2002-01-20 05:30:23 +00:00
|
|
|
|
2011-06-03 05:34:13 +00:00
|
|
|
static void hcscale_fast_c(SwsContext *c, int16_t *dst1, int16_t *dst2,
|
|
|
|
int dstWidth, const uint8_t *src1,
|
|
|
|
const uint8_t *src2, int srcW, int xInc)
|
2010-01-24 02:08:22 +00:00
|
|
|
{
|
2011-06-03 05:34:12 +00:00
|
|
|
int i;
|
2012-04-01 08:34:10 +00:00
|
|
|
unsigned int xpos = 0;
|
|
|
|
for (i = 0; i < dstWidth; i++) {
|
|
|
|
register unsigned int xx = xpos >> 16;
|
|
|
|
register unsigned int xalpha = (xpos & 0xFFFF) >> 9;
|
|
|
|
dst1[i] = (src1[xx] * (xalpha ^ 127) + src1[xx + 1] * xalpha);
|
|
|
|
dst2[i] = (src2[xx] * (xalpha ^ 127) + src2[xx + 1] * xalpha);
|
|
|
|
xpos += xInc;
|
2010-01-24 03:02:40 +00:00
|
|
|
}
|
2011-06-04 04:31:35 +00:00
|
|
|
for (i=dstWidth-1; (i*xInc)>>16 >=srcW-1; i--) {
|
|
|
|
dst1[i] = src1[srcW-1]*128;
|
|
|
|
dst2[i] = src2[srcW-1]*128;
|
2010-01-24 03:02:40 +00:00
|
|
|
}
|
2011-06-03 05:34:12 +00:00
|
|
|
}
|
2007-04-26 23:07:11 +00:00
|
|
|
|
2012-04-01 08:34:10 +00:00
|
|
|
static av_always_inline void hcscale(SwsContext *c, int16_t *dst1,
|
|
|
|
int16_t *dst2, int dstWidth,
|
2011-11-24 18:40:05 +00:00
|
|
|
const uint8_t *src_in[4],
|
2012-04-01 08:34:10 +00:00
|
|
|
int srcW, int xInc,
|
|
|
|
const int16_t *hChrFilter,
|
|
|
|
const int32_t *hChrFilterPos,
|
|
|
|
int hChrFilterSize,
|
2011-06-08 16:31:11 +00:00
|
|
|
uint8_t *formatConvBuffer, uint32_t *pal)
|
2011-06-03 05:34:12 +00:00
|
|
|
{
|
2011-11-24 18:40:05 +00:00
|
|
|
const uint8_t *src1 = src_in[1], *src2 = src_in[2];
|
2011-06-03 05:34:12 +00:00
|
|
|
if (c->chrToYV12) {
|
2012-04-01 08:34:10 +00:00
|
|
|
uint8_t *buf2 = formatConvBuffer +
|
2012-04-13 19:21:15 +00:00
|
|
|
FFALIGN(srcW*2+78, 16);
|
2011-11-25 00:38:21 +00:00
|
|
|
c->chrToYV12(formatConvBuffer, buf2, src_in[0], src1, src2, srcW, pal);
|
2011-06-03 05:34:12 +00:00
|
|
|
src1= formatConvBuffer;
|
|
|
|
src2= buf2;
|
2011-11-24 18:40:05 +00:00
|
|
|
} else if (c->readChrPlanar) {
|
2012-04-01 08:34:10 +00:00
|
|
|
uint8_t *buf2 = formatConvBuffer +
|
2012-04-13 19:21:15 +00:00
|
|
|
FFALIGN(srcW*2+78, 16);
|
2011-11-24 18:40:05 +00:00
|
|
|
c->readChrPlanar(formatConvBuffer, buf2, src_in, srcW);
|
2012-04-01 08:34:10 +00:00
|
|
|
src1 = formatConvBuffer;
|
|
|
|
src2 = buf2;
|
2010-01-24 03:02:40 +00:00
|
|
|
}
|
2004-07-06 13:52:56 +00:00
|
|
|
|
2011-09-13 22:32:18 +00:00
|
|
|
if (!c->hcscale_fast) {
|
2011-08-03 18:25:01 +00:00
|
|
|
c->hcScale(c, dst1, dstWidth, src1, hChrFilter, hChrFilterPos, hChrFilterSize);
|
|
|
|
c->hcScale(c, dst2, dstWidth, src2, hChrFilter, hChrFilterPos, hChrFilterSize);
|
2011-06-03 05:34:12 +00:00
|
|
|
} else { // fast bilinear upscale / crap downscale
|
|
|
|
c->hcscale_fast(c, dst1, dst2, dstWidth, src1, src2, srcW, xInc);
|
2010-01-24 03:02:40 +00:00
|
|
|
}
|
2011-06-03 05:34:12 +00:00
|
|
|
|
|
|
|
if (c->chrConvertRange)
|
|
|
|
c->chrConvertRange(dst1, dst2, dstWidth);
|
2002-01-20 05:30:23 +00:00
|
|
|
}
|
|
|
|
|
2011-06-03 05:34:12 +00:00
|
|
|
#define DEBUG_SWSCALE_BUFFERS 0
|
2012-04-01 08:34:10 +00:00
|
|
|
#define DEBUG_BUFFERS(...) \
|
|
|
|
if (DEBUG_SWSCALE_BUFFERS) \
|
|
|
|
av_log(c, AV_LOG_DEBUG, __VA_ARGS__)
|
2011-06-03 05:34:12 +00:00
|
|
|
|
2012-04-01 08:34:10 +00:00
|
|
|
static int swScale(SwsContext *c, const uint8_t *src[],
|
2011-06-03 05:34:13 +00:00
|
|
|
int srcStride[], int srcSliceY,
|
2012-04-01 08:34:10 +00:00
|
|
|
int srcSliceH, uint8_t *dst[], int dstStride[])
|
2009-08-16 21:11:28 +00:00
|
|
|
{
|
2012-04-01 08:34:10 +00:00
|
|
|
/* 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;
|
2012-10-06 10:10:34 +00:00
|
|
|
const enum AVPixelFormat dstFormat = c->dstFormat;
|
2012-04-01 08:34:10 +00:00
|
|
|
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;
|
|
|
|
const int chrSrcSliceY = srcSliceY >> c->chrSrcVSubSample;
|
|
|
|
const int chrSrcSliceH = -((-srcSliceH) >> c->chrSrcVSubSample);
|
|
|
|
int should_dither = is9_OR_10BPS(c->srcFormat) ||
|
|
|
|
is16BPS(c->srcFormat);
|
2011-06-03 05:34:12 +00:00
|
|
|
int lastDstY;
|
|
|
|
|
|
|
|
/* vars which will change and which we need to store back in the context */
|
2012-04-01 08:34:10 +00:00
|
|
|
int dstY = c->dstY;
|
|
|
|
int lumBufIndex = c->lumBufIndex;
|
|
|
|
int chrBufIndex = c->chrBufIndex;
|
|
|
|
int lastInLumBuf = c->lastInLumBuf;
|
|
|
|
int lastInChrBuf = c->lastInChrBuf;
|
2011-06-03 05:34:12 +00:00
|
|
|
|
|
|
|
if (isPacked(c->srcFormat)) {
|
2012-04-01 08:34:10 +00:00
|
|
|
src[0] =
|
|
|
|
src[1] =
|
|
|
|
src[2] =
|
|
|
|
src[3] = src[0];
|
|
|
|
srcStride[0] =
|
|
|
|
srcStride[1] =
|
|
|
|
srcStride[2] =
|
|
|
|
srcStride[3] = srcStride[0];
|
2011-06-03 05:34:12 +00:00
|
|
|
}
|
2012-04-01 08:34:10 +00:00
|
|
|
srcStride[1] <<= c->vChrDrop;
|
|
|
|
srcStride[2] <<= c->vChrDrop;
|
2011-06-03 05:34:12 +00:00
|
|
|
|
|
|
|
DEBUG_BUFFERS("swScale() %p[%d] %p[%d] %p[%d] %p[%d] -> %p[%d] %p[%d] %p[%d] %p[%d]\n",
|
2012-04-01 08:34:10 +00:00
|
|
|
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]);
|
2011-06-03 05:34:12 +00:00
|
|
|
DEBUG_BUFFERS("srcSliceY: %d srcSliceH: %d dstY: %d dstH: %d\n",
|
2012-04-01 08:34:10 +00:00
|
|
|
srcSliceY, srcSliceH, dstY, dstH);
|
2011-06-03 05:34:12 +00:00
|
|
|
DEBUG_BUFFERS("vLumFilterSize: %d vLumBufSize: %d vChrFilterSize: %d vChrBufSize: %d\n",
|
2012-04-01 08:34:10 +00:00
|
|
|
vLumFilterSize, vLumBufSize, vChrFilterSize, vChrBufSize);
|
2011-06-03 05:34:12 +00:00
|
|
|
|
2012-04-13 19:21:15 +00:00
|
|
|
if (dstStride[0]%16 !=0 || dstStride[1]%16 !=0 ||
|
|
|
|
dstStride[2]%16 !=0 || dstStride[3]%16 != 0) {
|
2012-04-01 08:34:10 +00:00
|
|
|
static int warnedAlready = 0; // FIXME maybe move this into the context
|
2011-06-03 05:34:12 +00:00
|
|
|
if (flags & SWS_PRINT_INFO && !warnedAlready) {
|
2012-04-01 08:34:10 +00:00
|
|
|
av_log(c, AV_LOG_WARNING,
|
|
|
|
"Warning: dstStride is not aligned!\n"
|
2011-06-03 05:34:12 +00:00
|
|
|
" ->cannot do aligned memory accesses anymore\n");
|
2012-04-01 08:34:10 +00:00
|
|
|
warnedAlready = 1;
|
2011-06-03 05:34:12 +00:00
|
|
|
}
|
|
|
|
}
|
2010-01-16 11:08:16 +00:00
|
|
|
|
2011-10-31 00:36:02 +00:00
|
|
|
if ((int)dst[0]%16 || (int)dst[1]%16 || (int)dst[2]%16 || (int)src[0]%16 || (int)src[1]%16 || (int)src[2]%16
|
|
|
|
|| dstStride[0]%16 || dstStride[1]%16 || dstStride[2]%16 || dstStride[3]%16
|
|
|
|
|| srcStride[0]%16 || srcStride[1]%16 || srcStride[2]%16 || srcStride[3]%16
|
|
|
|
) {
|
|
|
|
static int warnedAlready=0;
|
|
|
|
int cpu_flags = av_get_cpu_flags();
|
2012-08-19 17:19:19 +00:00
|
|
|
if (HAVE_MMXEXT && (cpu_flags & AV_CPU_FLAG_SSE2) && !warnedAlready){
|
2011-10-31 00:36:02 +00:00
|
|
|
av_log(c, AV_LOG_WARNING, "Warning: data is not aligned! This can lead to a speedloss\n");
|
|
|
|
warnedAlready=1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-06-03 05:34:12 +00:00
|
|
|
/* Note the user might start scaling the picture in the middle so this
|
2012-04-01 08:34:10 +00:00
|
|
|
* 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;
|
2009-04-21 00:01:59 +00:00
|
|
|
}
|
|
|
|
|
2011-07-05 19:49:11 +00:00
|
|
|
if (!should_dither) {
|
|
|
|
c->chrDither8 = c->lumDither8 = ff_sws_pb_64;
|
|
|
|
}
|
2012-04-01 08:34:10 +00:00
|
|
|
lastDstY = dstY;
|
2011-06-03 05:34:12 +00:00
|
|
|
|
2012-04-01 08:34:10 +00:00
|
|
|
for (; dstY < dstH; dstY++) {
|
|
|
|
const int chrDstY = dstY >> c->chrDstVSubSample;
|
|
|
|
uint8_t *dest[4] = {
|
2011-06-16 16:04:26 +00:00
|
|
|
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,
|
|
|
|
};
|
2011-10-23 17:19:57 +00:00
|
|
|
int use_mmx_vfilter= c->use_mmx_vfilter;
|
2011-06-03 05:34:12 +00:00
|
|
|
|
2012-04-01 08:34:10 +00:00
|
|
|
// 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]);
|
swscale: fix overflows in vertical scaling at top/bottom edges.
This fixes integer multiplication overflows in RGB48 output
(vertical) scaling as detected by IOC. What happens is that for
certain types of filters (lanczos, spline, bicubic), the
intermediate sum of coefficients in the middle of a filter can
be larger than the fixed-point equivalent of 1.0, even if the
final sum is 1.0. This is fine and we support that.
However, at frame edges, initFilter() will merge the coefficients
for the off-screen pixels into the top or bottom pixel, such as
to emulate edge extension. This means that suddenly, a single
coefficient can be larger than the fixed-point equivalent of
1.0, which the vertical scaling routines do not support.
Therefore, remove the merging of coefficients for edges for
the vertical scaling filter, and instead add edge detection
to the scaler itself so that it copies the pointers (not data)
for the edges (i.e. it uses line[0] for line[-1] as well), so
that a single coefficient is never larger than the fixed-point
equivalent of 1.0.
2011-12-18 16:27:43 +00:00
|
|
|
|
|
|
|
// 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;
|
2011-06-03 05:34:12 +00:00
|
|
|
int enough_lines;
|
|
|
|
|
2012-04-01 08:34:10 +00:00
|
|
|
// handle holes (FAST_BILINEAR & weird filters)
|
|
|
|
if (firstLumSrcY > lastInLumBuf)
|
|
|
|
lastInLumBuf = firstLumSrcY - 1;
|
|
|
|
if (firstChrSrcY > lastInChrBuf)
|
|
|
|
lastInChrBuf = firstChrSrcY - 1;
|
2012-09-18 03:19:11 +00:00
|
|
|
av_assert0(firstLumSrcY >= lastInLumBuf - vLumBufSize + 1);
|
|
|
|
av_assert0(firstChrSrcY >= lastInChrBuf - vChrBufSize + 1);
|
2011-06-03 05:34:12 +00:00
|
|
|
|
|
|
|
DEBUG_BUFFERS("dstY: %d\n", dstY);
|
|
|
|
DEBUG_BUFFERS("\tfirstLumSrcY: %d lastLumSrcY: %d lastInLumBuf: %d\n",
|
2012-04-01 08:34:10 +00:00
|
|
|
firstLumSrcY, lastLumSrcY, lastInLumBuf);
|
2011-06-03 05:34:12 +00:00
|
|
|
DEBUG_BUFFERS("\tfirstChrSrcY: %d lastChrSrcY: %d lastInChrBuf: %d\n",
|
2012-04-01 08:34:10 +00:00
|
|
|
firstChrSrcY, lastChrSrcY, lastInChrBuf);
|
2011-06-03 05:34:12 +00:00
|
|
|
|
|
|
|
// Do we have enough lines in this slice to output the dstY line
|
2012-04-01 08:34:10 +00:00
|
|
|
enough_lines = lastLumSrcY2 < srcSliceY + srcSliceH &&
|
|
|
|
lastChrSrcY < -((-srcSliceY - srcSliceH) >> c->chrSrcVSubSample);
|
2011-06-03 05:34:12 +00:00
|
|
|
|
|
|
|
if (!enough_lines) {
|
|
|
|
lastLumSrcY = srcSliceY + srcSliceH - 1;
|
|
|
|
lastChrSrcY = chrSrcSliceY + chrSrcSliceH - 1;
|
|
|
|
DEBUG_BUFFERS("buffering slice: lastLumSrcY %d lastChrSrcY %d\n",
|
2012-04-01 08:34:10 +00:00
|
|
|
lastLumSrcY, lastChrSrcY);
|
2011-06-03 05:34:12 +00:00
|
|
|
}
|
2010-08-18 19:37:37 +00:00
|
|
|
|
2012-04-01 08:34:10 +00:00
|
|
|
// Do horizontal scaling
|
|
|
|
while (lastInLumBuf < lastLumSrcY) {
|
2011-11-24 18:40:05 +00:00
|
|
|
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],
|
|
|
|
};
|
2011-06-03 05:34:12 +00:00
|
|
|
lumBufIndex++;
|
2012-09-18 03:19:11 +00:00
|
|
|
av_assert0(lumBufIndex < 2 * vLumBufSize);
|
|
|
|
av_assert0(lastInLumBuf + 1 - srcSliceY < srcSliceH);
|
|
|
|
av_assert0(lastInLumBuf + 1 - srcSliceY >= 0);
|
2012-04-01 08:34:10 +00:00
|
|
|
hyscale(c, lumPixBuf[lumBufIndex], dstW, src1, srcW, lumXInc,
|
2011-06-03 05:34:13 +00:00
|
|
|
hLumFilter, hLumFilterPos, hLumFilterSize,
|
2012-04-01 08:34:10 +00:00
|
|
|
formatConvBuffer, pal, 0);
|
2011-06-03 05:34:12 +00:00
|
|
|
if (CONFIG_SWSCALE_ALPHA && alpPixBuf)
|
2012-04-01 08:34:10 +00:00
|
|
|
hyscale(c, alpPixBuf[lumBufIndex], dstW, src1, srcW,
|
2011-06-03 05:34:13 +00:00
|
|
|
lumXInc, hLumFilter, hLumFilterPos, hLumFilterSize,
|
2012-04-01 08:34:10 +00:00
|
|
|
formatConvBuffer, pal, 1);
|
2011-06-03 05:34:12 +00:00
|
|
|
lastInLumBuf++;
|
|
|
|
DEBUG_BUFFERS("\t\tlumBufIndex %d: lastInLumBuf: %d\n",
|
2012-04-01 08:34:10 +00:00
|
|
|
lumBufIndex, lastInLumBuf);
|
2011-06-03 05:34:12 +00:00
|
|
|
}
|
2012-04-01 08:34:10 +00:00
|
|
|
while (lastInChrBuf < lastChrSrcY) {
|
2011-11-24 18:40:05 +00:00
|
|
|
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],
|
|
|
|
};
|
2011-06-03 05:34:12 +00:00
|
|
|
chrBufIndex++;
|
2012-09-18 03:19:11 +00:00
|
|
|
av_assert0(chrBufIndex < 2 * vChrBufSize);
|
|
|
|
av_assert0(lastInChrBuf + 1 - chrSrcSliceY < (chrSrcSliceH));
|
|
|
|
av_assert0(lastInChrBuf + 1 - chrSrcSliceY >= 0);
|
2012-04-01 08:34:10 +00:00
|
|
|
// FIXME replace parameters through context struct (some at least)
|
2011-06-03 05:34:12 +00:00
|
|
|
|
|
|
|
if (c->needs_hcscale)
|
2011-06-03 05:34:13 +00:00
|
|
|
hcscale(c, chrUPixBuf[chrBufIndex], chrVPixBuf[chrBufIndex],
|
2012-04-01 08:34:10 +00:00
|
|
|
chrDstW, src1, chrSrcW, chrXInc,
|
|
|
|
hChrFilter, hChrFilterPos, hChrFilterSize,
|
|
|
|
formatConvBuffer, pal);
|
2011-06-03 05:34:12 +00:00
|
|
|
lastInChrBuf++;
|
|
|
|
DEBUG_BUFFERS("\t\tchrBufIndex %d: lastInChrBuf: %d\n",
|
2012-04-01 08:34:10 +00:00
|
|
|
chrBufIndex, lastInChrBuf);
|
2011-06-03 05:34:12 +00:00
|
|
|
}
|
2012-04-01 08:34:10 +00:00
|
|
|
// wrap buf index around to stay inside the ring buffer
|
|
|
|
if (lumBufIndex >= vLumBufSize)
|
|
|
|
lumBufIndex -= vLumBufSize;
|
|
|
|
if (chrBufIndex >= vChrBufSize)
|
|
|
|
chrBufIndex -= vChrBufSize;
|
2011-06-03 05:34:12 +00:00
|
|
|
if (!enough_lines)
|
2012-04-01 08:34:10 +00:00
|
|
|
break; // we can't output a dstY line so let's try with the next slice
|
2011-06-03 05:34:12 +00:00
|
|
|
|
2012-08-28 12:53:33 +00:00
|
|
|
#if HAVE_MMX_INLINE
|
2012-04-01 08:34:10 +00:00
|
|
|
updateMMXDitherTables(c, dstY, lumBufIndex, chrBufIndex,
|
|
|
|
lastInLumBuf, lastInChrBuf);
|
2011-06-03 05:34:12 +00:00
|
|
|
#endif
|
2011-07-05 19:49:11 +00:00
|
|
|
if (should_dither) {
|
|
|
|
c->chrDither8 = dither_8x8_128[chrDstY & 7];
|
2012-04-01 08:34:10 +00:00
|
|
|
c->lumDither8 = dither_8x8_128[dstY & 7];
|
2011-07-05 19:49:11 +00:00
|
|
|
}
|
2012-04-01 08:34:10 +00:00
|
|
|
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,
|
2012-02-01 15:38:56 +00:00
|
|
|
&yuv2packed1, &yuv2packed2, &yuv2packedX);
|
2011-10-23 17:19:57 +00:00
|
|
|
use_mmx_vfilter= 0;
|
2011-06-06 02:54:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2012-04-13 19:21:15 +00:00
|
|
|
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;
|
2012-04-01 08:34:10 +00:00
|
|
|
const int16_t **alpSrcPtr = (CONFIG_SWSCALE_ALPHA && alpPixBuf) ?
|
2012-04-13 19:21:15 +00:00
|
|
|
(const int16_t **)(void*) alpPixBuf + lumBufIndex + firstLumSrcY - lastInLumBuf + vLumBufSize : NULL;
|
|
|
|
int16_t *vLumFilter = c->vLumFilter;
|
|
|
|
int16_t *vChrFilter = c->vChrFilter;
|
swscale: fix overflows in vertical scaling at top/bottom edges.
This fixes integer multiplication overflows in RGB48 output
(vertical) scaling as detected by IOC. What happens is that for
certain types of filters (lanczos, spline, bicubic), the
intermediate sum of coefficients in the middle of a filter can
be larger than the fixed-point equivalent of 1.0, even if the
final sum is 1.0. This is fine and we support that.
However, at frame edges, initFilter() will merge the coefficients
for the off-screen pixels into the top or bottom pixel, such as
to emulate edge extension. This means that suddenly, a single
coefficient can be larger than the fixed-point equivalent of
1.0, which the vertical scaling routines do not support.
Therefore, remove the merging of coefficients for edges for
the vertical scaling filter, and instead add edge detection
to the scaler itself so that it copies the pointers (not data)
for the edges (i.e. it uses line[0] for line[-1] as well), so
that a single coefficient is never larger than the fixed-point
equivalent of 1.0.
2011-12-18 16:27:43 +00:00
|
|
|
|
2012-04-01 08:34:10 +00:00
|
|
|
if (isPlanarYUV(dstFormat) ||
|
|
|
|
(isGray(dstFormat) && !isALPHA(dstFormat))) { // YV12 like
|
|
|
|
const int chrSkipMask = (1 << c->chrDstVSubSample) - 1;
|
2011-09-30 12:50:49 +00:00
|
|
|
|
2011-10-23 17:18:59 +00:00
|
|
|
vLumFilter += dstY * vLumFilterSize;
|
|
|
|
vChrFilter += chrDstY * vChrFilterSize;
|
|
|
|
|
2012-02-08 01:59:09 +00:00
|
|
|
// 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);
|
2011-10-23 18:18:21 +00:00
|
|
|
|
2011-10-23 17:19:57 +00:00
|
|
|
if(use_mmx_vfilter){
|
|
|
|
vLumFilter= c->lumMmxFilter;
|
|
|
|
vChrFilter= c->chrMmxFilter;
|
|
|
|
}
|
|
|
|
|
2011-10-05 14:37:24 +00:00
|
|
|
if (vLumFilterSize == 1) {
|
|
|
|
yuv2plane1(lumSrcPtr[0], dest[0], dstW, c->lumDither8, 0);
|
|
|
|
} else {
|
2011-10-23 17:18:59 +00:00
|
|
|
yuv2planeX(vLumFilter, vLumFilterSize,
|
2012-04-13 19:21:15 +00:00
|
|
|
lumSrcPtr, dest[0],
|
2012-04-01 08:34:10 +00:00
|
|
|
dstW, c->lumDither8, 0);
|
2011-10-05 14:37:24 +00:00
|
|
|
}
|
2011-09-30 12:50:49 +00:00
|
|
|
|
2012-04-01 08:34:10 +00:00
|
|
|
if (!((dstY & chrSkipMask) || isGray(dstFormat))) {
|
2011-10-05 14:37:24 +00:00
|
|
|
if (yuv2nv12cX) {
|
2012-04-13 19:21:15 +00:00
|
|
|
yuv2nv12cX(c, vChrFilter,
|
2012-04-01 08:34:10 +00:00
|
|
|
vChrFilterSize, chrUSrcPtr, chrVSrcPtr,
|
|
|
|
dest[1], chrDstW);
|
2011-10-05 14:37:24 +00:00
|
|
|
} else if (vChrFilterSize == 1) {
|
|
|
|
yuv2plane1(chrUSrcPtr[0], dest[1], chrDstW, c->chrDither8, 0);
|
|
|
|
yuv2plane1(chrVSrcPtr[0], dest[2], chrDstW, c->chrDither8, 3);
|
|
|
|
} else {
|
2012-04-13 19:21:15 +00:00
|
|
|
yuv2planeX(vChrFilter,
|
2012-04-01 08:34:10 +00:00
|
|
|
vChrFilterSize, chrUSrcPtr, dest[1],
|
|
|
|
chrDstW, c->chrDither8, 0);
|
2012-04-13 19:21:15 +00:00
|
|
|
yuv2planeX(vChrFilter,
|
2012-04-01 08:34:10 +00:00
|
|
|
vChrFilterSize, chrVSrcPtr, dest[2],
|
2012-04-13 19:21:15 +00:00
|
|
|
chrDstW, c->chrDither8, use_mmx_vfilter ? (c->uv_offx2 >> 1) : 3);
|
2011-09-30 12:50:49 +00:00
|
|
|
}
|
2011-10-05 14:37:24 +00:00
|
|
|
}
|
2011-09-30 12:50:49 +00:00
|
|
|
|
2012-04-01 08:34:10 +00:00
|
|
|
if (CONFIG_SWSCALE_ALPHA && alpPixBuf) {
|
2011-10-23 17:19:57 +00:00
|
|
|
if(use_mmx_vfilter){
|
|
|
|
vLumFilter= c->alpMmxFilter;
|
|
|
|
}
|
2011-10-05 14:37:24 +00:00
|
|
|
if (vLumFilterSize == 1) {
|
2012-04-01 08:34:10 +00:00
|
|
|
yuv2plane1(alpSrcPtr[0], dest[3], dstW,
|
|
|
|
c->lumDither8, 0);
|
2011-10-05 14:37:24 +00:00
|
|
|
} else {
|
2012-04-13 19:21:15 +00:00
|
|
|
yuv2planeX(vLumFilter,
|
2012-04-01 08:34:10 +00:00
|
|
|
vLumFilterSize, alpSrcPtr, dest[3],
|
|
|
|
dstW, c->lumDither8, 0);
|
2011-10-04 11:22:03 +00:00
|
|
|
}
|
2011-06-03 05:34:12 +00:00
|
|
|
}
|
|
|
|
} else {
|
2012-09-13 13:53:05 +00:00
|
|
|
av_assert1(lumSrcPtr + vLumFilterSize - 1 < lumPixBuf + vLumBufSize * 2);
|
|
|
|
av_assert1(chrUSrcPtr + vChrFilterSize - 1 < chrUPixBuf + vChrBufSize * 2);
|
2012-04-01 08:34:10 +00:00
|
|
|
if (c->yuv2packed1 && vLumFilterSize == 1 &&
|
|
|
|
vChrFilterSize <= 2) { // unscaled RGB
|
2012-02-12 23:48:24 +00:00
|
|
|
int chrAlpha = vChrFilterSize == 1 ? 0 : vChrFilter[2 * dstY + 1];
|
2011-06-16 16:04:26 +00:00
|
|
|
yuv2packed1(c, *lumSrcPtr, chrUSrcPtr, chrVSrcPtr,
|
|
|
|
alpPixBuf ? *alpSrcPtr : NULL,
|
|
|
|
dest[0], dstW, chrAlpha, dstY);
|
2012-04-01 08:34:10 +00:00
|
|
|
} else if (c->yuv2packed2 && vLumFilterSize == 2 &&
|
|
|
|
vChrFilterSize == 2) { // bilinear upscale RGB
|
2011-06-16 16:04:26 +00:00
|
|
|
int lumAlpha = vLumFilter[2 * dstY + 1];
|
|
|
|
int chrAlpha = vChrFilter[2 * dstY + 1];
|
|
|
|
lumMmxFilter[2] =
|
2012-04-01 08:34:10 +00:00
|
|
|
lumMmxFilter[3] = vLumFilter[2 * dstY] * 0x10001;
|
2011-06-16 16:04:26 +00:00
|
|
|
chrMmxFilter[2] =
|
|
|
|
chrMmxFilter[3] = vChrFilter[2 * chrDstY] * 0x10001;
|
|
|
|
yuv2packed2(c, lumSrcPtr, chrUSrcPtr, chrVSrcPtr,
|
|
|
|
alpPixBuf ? alpSrcPtr : NULL,
|
|
|
|
dest[0], dstW, lumAlpha, chrAlpha, dstY);
|
2012-04-01 08:34:10 +00:00
|
|
|
} else { // general RGB
|
2011-06-16 16:04:26 +00:00
|
|
|
yuv2packedX(c, vLumFilter + dstY * vLumFilterSize,
|
|
|
|
lumSrcPtr, vLumFilterSize,
|
|
|
|
vChrFilter + dstY * vChrFilterSize,
|
|
|
|
chrUSrcPtr, chrVSrcPtr, vChrFilterSize,
|
|
|
|
alpSrcPtr, dest[0], dstW, dstY);
|
2011-06-03 05:34:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-08-18 19:37:37 +00:00
|
|
|
}
|
2012-10-29 18:07:01 +00:00
|
|
|
if (isPlanar(dstFormat) && isALPHA(dstFormat) && !alpPixBuf) {
|
|
|
|
int length = dstW;
|
|
|
|
int height = dstY - lastDstY;
|
|
|
|
|
2012-10-30 17:40:55 +00:00
|
|
|
if (is16BPS(dstFormat) || isNBPS(dstFormat)) {
|
2012-10-29 18:07:01 +00:00
|
|
|
const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(dstFormat);
|
2012-10-30 17:40:55 +00:00
|
|
|
fillPlane16(dst[3], dstStride[3], length, height, lastDstY,
|
|
|
|
1, desc->comp[3].depth_minus1,
|
|
|
|
isBE(dstFormat));
|
2012-10-29 18:07:01 +00:00
|
|
|
} else
|
|
|
|
fillPlane(dst[3], dstStride[3], length, height, lastDstY, 255);
|
|
|
|
}
|
2011-06-03 05:34:12 +00:00
|
|
|
|
2012-09-04 06:30:16 +00:00
|
|
|
#if HAVE_MMXEXT_INLINE
|
2012-07-08 16:42:12 +00:00
|
|
|
if (av_get_cpu_flags() & AV_CPU_FLAG_MMXEXT)
|
2012-04-01 08:34:10 +00:00
|
|
|
__asm__ volatile ("sfence" ::: "memory");
|
2011-06-03 05:34:12 +00:00
|
|
|
#endif
|
|
|
|
emms_c();
|
|
|
|
|
|
|
|
/* store changed local vars back in the context */
|
2012-04-01 08:34:10 +00:00
|
|
|
c->dstY = dstY;
|
|
|
|
c->lumBufIndex = lumBufIndex;
|
|
|
|
c->chrBufIndex = chrBufIndex;
|
|
|
|
c->lastInLumBuf = lastInLumBuf;
|
|
|
|
c->lastInChrBuf = lastInChrBuf;
|
2011-06-03 05:34:12 +00:00
|
|
|
|
|
|
|
return dstY - lastDstY;
|
2010-08-18 19:37:37 +00:00
|
|
|
}
|
|
|
|
|
2011-06-08 16:31:11 +00:00
|
|
|
static av_cold void sws_init_swScale_c(SwsContext *c)
|
2009-08-16 21:11:28 +00:00
|
|
|
{
|
2012-10-06 10:10:34 +00:00
|
|
|
enum AVPixelFormat srcFormat = c->srcFormat;
|
2008-09-04 20:46:36 +00:00
|
|
|
|
2012-02-01 15:38:56 +00:00
|
|
|
ff_sws_init_output_funcs(c, &c->yuv2plane1, &c->yuv2planeX,
|
|
|
|
&c->yuv2nv12cX, &c->yuv2packed1,
|
|
|
|
&c->yuv2packed2, &c->yuv2packedX);
|
2007-04-29 13:39:27 +00:00
|
|
|
|
2012-02-01 15:38:55 +00:00
|
|
|
ff_sws_init_input_funcs(c);
|
2007-04-15 00:53:32 +00:00
|
|
|
|
2009-04-21 00:01:59 +00:00
|
|
|
|
2011-08-02 22:42:35 +00:00
|
|
|
if (c->srcBpc == 8) {
|
2012-07-03 02:10:11 +00:00
|
|
|
if (c->dstBpc <= 14) {
|
2011-08-03 18:25:01 +00:00
|
|
|
c->hyScale = c->hcScale = hScale8To15_c;
|
2011-08-02 22:42:35 +00:00
|
|
|
if (c->flags & SWS_FAST_BILINEAR) {
|
|
|
|
c->hyscale_fast = hyscale_fast_c;
|
|
|
|
c->hcscale_fast = hcscale_fast_c;
|
|
|
|
}
|
2011-06-03 05:34:12 +00:00
|
|
|
} else {
|
2011-08-03 18:25:01 +00:00
|
|
|
c->hyScale = c->hcScale = hScale8To19_c;
|
2011-06-03 05:34:12 +00:00
|
|
|
}
|
2011-06-29 16:39:43 +00:00
|
|
|
} else {
|
2012-07-03 02:10:11 +00:00
|
|
|
c->hyScale = c->hcScale = c->dstBpc > 14 ? hScale16To19_c
|
2012-04-01 08:34:10 +00:00
|
|
|
: hScale16To15_c;
|
2011-08-02 22:42:35 +00:00
|
|
|
}
|
2011-06-29 16:39:43 +00:00
|
|
|
|
2011-08-02 22:42:35 +00:00
|
|
|
if (c->srcRange != c->dstRange && !isAnyRGB(c->dstFormat)) {
|
2012-07-03 02:10:11 +00:00
|
|
|
if (c->dstBpc <= 14) {
|
2011-08-02 22:42:35 +00:00
|
|
|
if (c->srcRange) {
|
|
|
|
c->lumConvertRange = lumRangeFromJpeg_c;
|
|
|
|
c->chrConvertRange = chrRangeFromJpeg_c;
|
|
|
|
} else {
|
|
|
|
c->lumConvertRange = lumRangeToJpeg_c;
|
|
|
|
c->chrConvertRange = chrRangeToJpeg_c;
|
|
|
|
}
|
|
|
|
} else {
|
2011-06-29 16:39:43 +00:00
|
|
|
if (c->srcRange) {
|
|
|
|
c->lumConvertRange = lumRangeFromJpeg16_c;
|
|
|
|
c->chrConvertRange = chrRangeFromJpeg16_c;
|
|
|
|
} else {
|
|
|
|
c->lumConvertRange = lumRangeToJpeg16_c;
|
|
|
|
c->chrConvertRange = chrRangeToJpeg16_c;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2003-03-27 16:04:53 +00:00
|
|
|
|
2011-06-03 05:34:12 +00:00
|
|
|
if (!(isGray(srcFormat) || isGray(c->dstFormat) ||
|
2012-10-06 10:10:34 +00:00
|
|
|
srcFormat == AV_PIX_FMT_MONOBLACK || srcFormat == AV_PIX_FMT_MONOWHITE))
|
2011-06-03 05:34:12 +00:00
|
|
|
c->needs_hcscale = 1;
|
2003-02-23 22:05:55 +00:00
|
|
|
}
|
2010-06-01 19:35:16 +00:00
|
|
|
|
2010-01-24 02:08:22 +00:00
|
|
|
SwsFunc ff_getSwsFunc(SwsContext *c)
|
2010-06-01 19:35:16 +00:00
|
|
|
{
|
2011-04-13 18:57:30 +00:00
|
|
|
sws_init_swScale_c(c);
|
2010-06-01 19:35:16 +00:00
|
|
|
|
2011-06-03 05:00:00 +00:00
|
|
|
if (HAVE_MMX)
|
|
|
|
ff_sws_init_swScale_mmx(c);
|
2011-06-03 03:04:04 +00:00
|
|
|
if (HAVE_ALTIVEC)
|
|
|
|
ff_sws_init_swScale_altivec(c);
|
2010-06-01 19:35:16 +00:00
|
|
|
|
2011-06-03 05:34:13 +00:00
|
|
|
return swScale;
|
2010-06-01 19:35:16 +00:00
|
|
|
}
|
2012-09-30 21:09:45 +00:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-08 18:54:00 +00:00
|
|
|
static int check_image_pointers(const uint8_t * const data[4], enum AVPixelFormat pix_fmt,
|
2012-09-30 21:09:45 +00:00
|
|
|
const int linesizes[4])
|
|
|
|
{
|
2012-10-12 13:52:55 +00:00
|
|
|
const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt);
|
2012-09-30 21:09:45 +00:00
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < 4; i++) {
|
|
|
|
int plane = desc->comp[i].plane;
|
|
|
|
if (!data[plane] || !linesizes[plane])
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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;
|
|
|
|
const uint8_t *src2[4] = { srcSlice[0], srcSlice[1], srcSlice[2], srcSlice[3] };
|
|
|
|
uint8_t *dst2[4] = { dst[0], dst[1], dst[2], dst[3] };
|
|
|
|
uint8_t *rgb0_tmp = NULL;
|
|
|
|
|
|
|
|
// 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++) {
|
|
|
|
int p, r, g, b, y, u, v, a = 0xff;
|
2012-10-08 18:54:00 +00:00
|
|
|
if (c->srcFormat == AV_PIX_FMT_PAL8) {
|
2012-09-30 21:09:45 +00:00
|
|
|
p = ((const uint32_t *)(srcSlice[1]))[i];
|
|
|
|
a = (p >> 24) & 0xFF;
|
|
|
|
r = (p >> 16) & 0xFF;
|
|
|
|
g = (p >> 8) & 0xFF;
|
|
|
|
b = p & 0xFF;
|
2012-10-08 18:54:00 +00:00
|
|
|
} else if (c->srcFormat == AV_PIX_FMT_RGB8) {
|
2012-09-30 21:09:45 +00:00
|
|
|
r = ( i >> 5 ) * 36;
|
|
|
|
g = ((i >> 2) & 7) * 36;
|
|
|
|
b = ( i & 3) * 85;
|
2012-10-08 18:54:00 +00:00
|
|
|
} else if (c->srcFormat == AV_PIX_FMT_BGR8) {
|
2012-09-30 21:09:45 +00:00
|
|
|
b = ( i >> 6 ) * 85;
|
|
|
|
g = ((i >> 3) & 7) * 36;
|
|
|
|
r = ( i & 7) * 36;
|
2012-10-08 18:54:00 +00:00
|
|
|
} else if (c->srcFormat == AV_PIX_FMT_RGB4_BYTE) {
|
2012-09-30 21:09:45 +00:00
|
|
|
r = ( i >> 3 ) * 255;
|
|
|
|
g = ((i >> 1) & 3) * 85;
|
|
|
|
b = ( i & 1) * 255;
|
2012-10-08 18:54:00 +00:00
|
|
|
} else if (c->srcFormat == AV_PIX_FMT_GRAY8 || c->srcFormat == AV_PIX_FMT_GRAY8A) {
|
2012-09-30 21:09:45 +00:00
|
|
|
r = g = b = i;
|
|
|
|
} else {
|
2012-10-08 18:54:00 +00:00
|
|
|
av_assert1(c->srcFormat == AV_PIX_FMT_BGR4_BYTE);
|
2012-09-30 21:09:45 +00:00
|
|
|
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);
|
2012-10-14 03:16:59 +00:00
|
|
|
c->pal_yuv[i]= y + (u<<8) + (v<<16) + ((unsigned)a<<24);
|
2012-09-30 21:09:45 +00:00
|
|
|
|
|
|
|
switch (c->dstFormat) {
|
2012-10-08 18:54:00 +00:00
|
|
|
case AV_PIX_FMT_BGR32:
|
2012-09-30 21:09:45 +00:00
|
|
|
#if !HAVE_BIGENDIAN
|
2012-10-08 18:54:00 +00:00
|
|
|
case AV_PIX_FMT_RGB24:
|
2012-09-30 21:09:45 +00:00
|
|
|
#endif
|
2012-10-14 03:16:59 +00:00
|
|
|
c->pal_rgb[i]= r + (g<<8) + (b<<16) + ((unsigned)a<<24);
|
2012-09-30 21:09:45 +00:00
|
|
|
break;
|
2012-10-08 18:54:00 +00:00
|
|
|
case AV_PIX_FMT_BGR32_1:
|
2012-09-30 21:09:45 +00:00
|
|
|
#if HAVE_BIGENDIAN
|
2012-10-08 18:54:00 +00:00
|
|
|
case AV_PIX_FMT_BGR24:
|
2012-09-30 21:09:45 +00:00
|
|
|
#endif
|
2012-10-14 03:16:59 +00:00
|
|
|
c->pal_rgb[i]= a + (r<<8) + (g<<16) + ((unsigned)b<<24);
|
2012-09-30 21:09:45 +00:00
|
|
|
break;
|
2012-10-08 18:54:00 +00:00
|
|
|
case AV_PIX_FMT_RGB32_1:
|
2012-09-30 21:09:45 +00:00
|
|
|
#if HAVE_BIGENDIAN
|
2012-10-08 18:54:00 +00:00
|
|
|
case AV_PIX_FMT_RGB24:
|
2012-09-30 21:09:45 +00:00
|
|
|
#endif
|
2012-10-14 03:16:59 +00:00
|
|
|
c->pal_rgb[i]= a + (b<<8) + (g<<16) + ((unsigned)r<<24);
|
2012-09-30 21:09:45 +00:00
|
|
|
break;
|
2012-10-08 18:54:00 +00:00
|
|
|
case AV_PIX_FMT_RGB32:
|
2012-09-30 21:09:45 +00:00
|
|
|
#if !HAVE_BIGENDIAN
|
2012-10-08 18:54:00 +00:00
|
|
|
case AV_PIX_FMT_BGR24:
|
2012-09-30 21:09:45 +00:00
|
|
|
#endif
|
|
|
|
default:
|
2012-10-14 03:16:59 +00:00
|
|
|
c->pal_rgb[i]= b + (g<<8) + (r<<16) + ((unsigned)a<<24);
|
2012-09-30 21:09:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (c->src0Alpha && !c->dst0Alpha && isALPHA(c->dstFormat)) {
|
|
|
|
uint8_t *base;
|
|
|
|
int x,y;
|
|
|
|
rgb0_tmp = av_malloc(FFABS(srcStride[0]) * srcSliceH + 32);
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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;
|
|
|
|
|
|
|
|
ret = c->swScale(c, src2, srcStride2, srcSliceY, srcSliceH, dst2,
|
|
|
|
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;
|
|
|
|
|
|
|
|
ret = c->swScale(c, src2, srcStride2, c->srcH-srcSliceY-srcSliceH,
|
|
|
|
srcSliceH, dst2, dstStride2);
|
|
|
|
}
|
|
|
|
|
|
|
|
av_free(rgb0_tmp);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|