2002-01-21 20:32:31 +02:00
|
|
|
/*
|
2011-11-18 23:44:26 +03:00
|
|
|
* Copyright (C) 2001-2011 Michael Niedermayer <michaelni@gmx.at>
|
2006-10-07 18:33:14 +03:00
|
|
|
*
|
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
2010-03-27 13:31:02 +02: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 18:33:14 +03: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 13:31:02 +02:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2006-10-07 18:33:14 +03:00
|
|
|
*
|
2010-03-27 13:31:02 +02: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 13:18:58 +03:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2006-10-07 18:33:14 +03:00
|
|
|
*/
|
2001-10-19 01:27:13 +03:00
|
|
|
|
2021-08-01 08:36:09 +02:00
|
|
|
#include <stdint.h>
|
2001-12-06 02:10:42 +02:00
|
|
|
#include <stdio.h>
|
2012-04-01 11:34:10 +03:00
|
|
|
#include <string.h>
|
|
|
|
|
2011-05-24 23:59:11 +03:00
|
|
|
#include "libavutil/avassert.h"
|
2008-05-09 15:00:25 +03:00
|
|
|
#include "libavutil/bswap.h"
|
2021-08-01 08:36:09 +02:00
|
|
|
#include "libavutil/common.h"
|
2012-04-01 11:34:10 +03:00
|
|
|
#include "libavutil/cpu.h"
|
2023-09-01 00:23:35 +02:00
|
|
|
#include "libavutil/emms.h"
|
2012-04-01 11:34:10 +03:00
|
|
|
#include "libavutil/intreadwrite.h"
|
2024-03-25 02:30:37 +02:00
|
|
|
#include "libavutil/mem.h"
|
2020-05-27 14:54:38 +02:00
|
|
|
#include "libavutil/mem_internal.h"
|
2009-11-26 23:08:45 +02:00
|
|
|
#include "libavutil/pixdesc.h"
|
2012-04-01 11:34:10 +03:00
|
|
|
#include "config.h"
|
|
|
|
#include "swscale_internal.h"
|
|
|
|
#include "swscale.h"
|
2002-06-22 11:49:45 +03:00
|
|
|
|
2013-08-16 16:01:47 +03:00
|
|
|
DECLARE_ALIGNED(8, const uint8_t, ff_dither_8x8_128)[9][8] = {
|
2012-04-01 11:34:10 +03: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, },
|
2013-08-16 16:01:47 +03:00
|
|
|
{ 36, 68, 60, 92, 34, 66, 58, 90, },
|
2011-07-05 22:49:11 +03:00
|
|
|
};
|
2002-01-21 17:22:28 +02:00
|
|
|
|
2013-08-15 14:29:01 +03:00
|
|
|
DECLARE_ALIGNED(8, static const uint8_t, sws_pb_64)[8] = {
|
2012-04-01 11:34:10 +03:00
|
|
|
64, 64, 64, 64, 64, 64, 64, 64
|
2011-07-05 22:49:11 +03:00
|
|
|
};
|
2012-02-08 04:59:09 +03:00
|
|
|
|
2012-04-01 11:34:10 +03:00
|
|
|
static av_always_inline void fillPlane(uint8_t *plane, int stride, int width,
|
|
|
|
int height, int y, uint8_t val)
|
2009-08-17 00:11:28 +03:00
|
|
|
{
|
2009-03-17 21:53:36 +02:00
|
|
|
int i;
|
2012-04-01 11:34:10 +03:00
|
|
|
uint8_t *ptr = plane + stride * y;
|
|
|
|
for (i = 0; i < height; i++) {
|
2009-03-17 21:53:36 +02:00
|
|
|
memset(ptr, val, width);
|
|
|
|
ptr += stride;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
static void hScale16To19_c(SwsInternal *c, int16_t *_dst, int dstW,
|
2012-04-01 11:34:10 +03:00
|
|
|
const uint8_t *_src, const int16_t *filter,
|
2012-03-05 23:26:42 +03:00
|
|
|
const int32_t *filterPos, int filterSize)
|
2011-06-29 19:39:43 +03:00
|
|
|
{
|
2012-10-06 14:29:37 +03:00
|
|
|
const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(c->srcFormat);
|
2011-06-29 19:39:43 +03:00
|
|
|
int i;
|
2012-04-01 11:34:10 +03:00
|
|
|
int32_t *dst = (int32_t *) _dst;
|
2011-06-29 19:39:43 +03:00
|
|
|
const uint16_t *src = (const uint16_t *) _src;
|
2015-09-03 13:44:14 +02:00
|
|
|
int bits = desc->comp[0].depth - 1;
|
2012-04-01 11:34:10 +03:00
|
|
|
int sh = bits - 4;
|
2011-06-29 19:39:43 +03:00
|
|
|
|
2018-08-20 15:28:00 +02:00
|
|
|
if ((isAnyRGB(c->srcFormat) || c->srcFormat==AV_PIX_FMT_PAL8) && desc->comp[0].depth<16) {
|
2018-08-20 15:31:01 +02:00
|
|
|
sh = 9;
|
2018-08-20 15:28:00 +02:00
|
|
|
} else if (desc->flags & AV_PIX_FMT_FLAG_FLOAT) { /* float input are process like uint 16bpc */
|
|
|
|
sh = 16 - 1 - 4;
|
|
|
|
}
|
2011-07-03 03:08:45 +03:00
|
|
|
|
2011-06-29 19:39:43 +03:00
|
|
|
for (i = 0; i < dstW; i++) {
|
|
|
|
int j;
|
|
|
|
int srcPos = filterPos[i];
|
2012-04-01 11:34:10 +03:00
|
|
|
int val = 0;
|
2011-06-29 19:39:43 +03: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 03:35:13 +03:00
|
|
|
dst[i] = FFMIN(val >> sh, (1 << 19) - 1);
|
2011-06-29 19:39:43 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
static void hScale16To15_c(SwsInternal *c, int16_t *dst, int dstW,
|
2012-04-01 11:34:10 +03:00
|
|
|
const uint8_t *_src, const int16_t *filter,
|
2012-03-05 23:26:42 +03:00
|
|
|
const int32_t *filterPos, int filterSize)
|
2011-08-03 01:42:35 +03:00
|
|
|
{
|
2012-10-06 14:29:37 +03:00
|
|
|
const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(c->srcFormat);
|
2011-08-03 01:42:35 +03:00
|
|
|
int i;
|
|
|
|
const uint16_t *src = (const uint16_t *) _src;
|
2015-09-03 13:44:14 +02:00
|
|
|
int sh = desc->comp[0].depth - 1;
|
2011-08-03 01:42:35 +03:00
|
|
|
|
2018-08-20 15:28:00 +02:00
|
|
|
if (sh<15) {
|
2018-08-20 15:31:01 +02:00
|
|
|
sh = isAnyRGB(c->srcFormat) || c->srcFormat==AV_PIX_FMT_PAL8 ? 13 : (desc->comp[0].depth - 1);
|
2018-08-20 15:28:00 +02:00
|
|
|
} else if (desc->flags & AV_PIX_FMT_FLAG_FLOAT) { /* float input are process like uint 16bpc */
|
|
|
|
sh = 16 - 1;
|
|
|
|
}
|
2011-08-14 20:05:03 +03:00
|
|
|
|
2011-08-03 01:42:35 +03:00
|
|
|
for (i = 0; i < dstW; i++) {
|
|
|
|
int j;
|
|
|
|
int srcPos = filterPos[i];
|
2012-04-01 11:34:10 +03:00
|
|
|
int val = 0;
|
2011-08-03 01:42:35 +03: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 08:34:12 +03:00
|
|
|
// bilinear / bicubic scaling
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
static void hScale8To15_c(SwsInternal *c, int16_t *dst, int dstW,
|
2012-04-01 11:34:10 +03:00
|
|
|
const uint8_t *src, const int16_t *filter,
|
|
|
|
const int32_t *filterPos, int filterSize)
|
2009-08-17 00:11:28 +03:00
|
|
|
{
|
2008-10-08 20:46:22 +03:00
|
|
|
int i;
|
2012-04-01 11:34:10 +03:00
|
|
|
for (i = 0; i < dstW; i++) {
|
2011-06-03 08:34:12 +03:00
|
|
|
int j;
|
2012-04-01 11:34:10 +03: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-18 01:02:20 +02:00
|
|
|
}
|
2012-04-01 11:34:10 +03:00
|
|
|
dst[i] = FFMIN(val >> 7, (1 << 15) - 1); // the cubic equation does overflow ...
|
2010-01-18 01:00:01 +02:00
|
|
|
}
|
2011-06-03 08:34:12 +03:00
|
|
|
}
|
2008-10-08 20:46:22 +03:00
|
|
|
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
static void hScale8To19_c(SwsInternal *c, int16_t *_dst, int dstW,
|
2012-04-01 11:34:10 +03:00
|
|
|
const uint8_t *src, const int16_t *filter,
|
|
|
|
const int32_t *filterPos, int filterSize)
|
2011-08-03 01:42:35 +03:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int32_t *dst = (int32_t *) _dst;
|
2012-04-01 11:34:10 +03:00
|
|
|
for (i = 0; i < dstW; i++) {
|
2011-08-03 01:42:35 +03:00
|
|
|
int j;
|
2012-04-01 11:34:10 +03: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-03 01:42:35 +03:00
|
|
|
}
|
2012-04-01 11:34:10 +03:00
|
|
|
dst[i] = FFMIN(val >> 3, (1 << 19) - 1); // the cubic equation does overflow ...
|
2011-08-03 01:42:35 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-19 20:48:21 +03:00
|
|
|
// FIXME all pal and rgb srcFormats could do this conversion as well
|
2012-04-01 11:34:10 +03:00
|
|
|
// FIXME all scalers more complex than bilinear could do half of this transform
|
2011-06-04 07:31:35 +03:00
|
|
|
static void chrRangeToJpeg_c(int16_t *dstU, int16_t *dstV, int width)
|
2011-06-03 08:34:12 +03:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < width; i++) {
|
2012-04-01 11:34:10 +03:00
|
|
|
dstU[i] = (FFMIN(dstU[i], 30775) * 4663 - 9289992) >> 12; // -264
|
|
|
|
dstV[i] = (FFMIN(dstV[i], 30775) * 4663 - 9289992) >> 12; // -264
|
2007-04-29 16:39:27 +03:00
|
|
|
}
|
2002-06-22 11:49:45 +03:00
|
|
|
}
|
2012-04-01 11:34:10 +03:00
|
|
|
|
2011-06-04 07:31:35 +03:00
|
|
|
static void chrRangeFromJpeg_c(int16_t *dstU, int16_t *dstV, int width)
|
2009-08-17 00:11:28 +03:00
|
|
|
{
|
2011-06-03 08:34:12 +03:00
|
|
|
int i;
|
|
|
|
for (i = 0; i < width; i++) {
|
2012-04-01 11:34:10 +03:00
|
|
|
dstU[i] = (dstU[i] * 1799 + 4081085) >> 11; // 1469
|
|
|
|
dstV[i] = (dstV[i] * 1799 + 4081085) >> 11; // 1469
|
2011-06-03 08:34:12 +03:00
|
|
|
}
|
2002-02-10 02:43:31 +02:00
|
|
|
}
|
2012-04-01 11:34:10 +03:00
|
|
|
|
2011-06-04 07:31:35 +03:00
|
|
|
static void lumRangeToJpeg_c(int16_t *dst, int width)
|
2009-08-17 00:11:28 +03:00
|
|
|
{
|
2011-06-03 08:34:12 +03:00
|
|
|
int i;
|
|
|
|
for (i = 0; i < width; i++)
|
2012-04-01 11:34:10 +03:00
|
|
|
dst[i] = (FFMIN(dst[i], 30189) * 19077 - 39057361) >> 14;
|
2011-06-03 08:34:12 +03:00
|
|
|
}
|
2012-04-01 11:34:10 +03:00
|
|
|
|
2011-06-04 07:31:35 +03:00
|
|
|
static void lumRangeFromJpeg_c(int16_t *dst, int width)
|
2011-06-03 08:34:12 +03:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < width; i++)
|
2012-04-01 11:34:10 +03:00
|
|
|
dst[i] = (dst[i] * 14071 + 33561947) >> 14;
|
2002-06-28 02:48:53 +03:00
|
|
|
}
|
|
|
|
|
2011-06-29 19:39:43 +03: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 11:34:10 +03: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 19:39:43 +03:00
|
|
|
}
|
|
|
|
}
|
2012-04-01 11:34:10 +03:00
|
|
|
|
2011-06-29 19:39:43 +03: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 11:34:10 +03:00
|
|
|
dstU[i] = (dstU[i] * 1799 + (4081085 << 4)) >> 11; // 1469
|
|
|
|
dstV[i] = (dstV[i] * 1799 + (4081085 << 4)) >> 11; // 1469
|
2011-06-29 19:39:43 +03:00
|
|
|
}
|
|
|
|
}
|
2012-04-01 11:34:10 +03:00
|
|
|
|
2011-06-29 19:39:43 +03:00
|
|
|
static void lumRangeToJpeg16_c(int16_t *_dst, int width)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int32_t *dst = (int32_t *) _dst;
|
2014-03-24 07:01:32 +03:00
|
|
|
for (i = 0; i < width; i++) {
|
|
|
|
dst[i] = ((int)(FFMIN(dst[i], 30189 << 4) * 4769U - (39057361 << 2))) >> 12;
|
|
|
|
}
|
2011-06-29 19:39:43 +03:00
|
|
|
}
|
2012-04-01 11:34:10 +03:00
|
|
|
|
2011-06-29 19:39:43 +03:00
|
|
|
static void lumRangeFromJpeg16_c(int16_t *_dst, int width)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int32_t *dst = (int32_t *) _dst;
|
|
|
|
for (i = 0; i < width; i++)
|
2024-09-12 20:08:42 +02:00
|
|
|
dst[i] = ((int)(dst[i]*(14071U/4) + (33561947<<4)/4)) >> 12;
|
2011-06-29 19:39:43 +03:00
|
|
|
}
|
|
|
|
|
2002-01-20 07:30:23 +02:00
|
|
|
|
2011-06-03 08:34:12 +03:00
|
|
|
#define DEBUG_SWSCALE_BUFFERS 0
|
2012-04-01 11:34:10 +03:00
|
|
|
#define DEBUG_BUFFERS(...) \
|
|
|
|
if (DEBUG_SWSCALE_BUFFERS) \
|
|
|
|
av_log(c, AV_LOG_DEBUG, __VA_ARGS__)
|
2011-06-03 08:34:12 +03:00
|
|
|
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
int ff_swscale(SwsInternal *c, const uint8_t *const src[], const int srcStride[],
|
2024-09-26 17:06:26 +02:00
|
|
|
int srcSliceY, int srcSliceH, uint8_t *const dst[],
|
|
|
|
const int dstStride[], int dstSliceY, int dstSliceH)
|
2009-08-17 00:11:28 +03:00
|
|
|
{
|
2021-06-24 13:11:34 +02:00
|
|
|
const int scale_dst = dstSliceY > 0 || dstSliceH < c->dstH;
|
|
|
|
|
2012-04-01 11:34:10 +03:00
|
|
|
/* load a few things into local vars to make the code more readable?
|
|
|
|
* and faster */
|
|
|
|
const int dstW = c->dstW;
|
2021-06-24 13:11:34 +02:00
|
|
|
int dstH = c->dstH;
|
2016-03-28 18:25:18 +02:00
|
|
|
|
2012-10-06 13:10:34 +03:00
|
|
|
const enum AVPixelFormat dstFormat = c->dstFormat;
|
2012-04-01 11:34:10 +03:00
|
|
|
const int flags = c->flags;
|
|
|
|
int32_t *vLumFilterPos = c->vLumFilterPos;
|
|
|
|
int32_t *vChrFilterPos = c->vChrFilterPos;
|
2016-03-28 18:25:18 +02:00
|
|
|
|
2012-04-01 11:34:10 +03:00
|
|
|
const int vLumFilterSize = c->vLumFilterSize;
|
|
|
|
const int vChrFilterSize = c->vChrFilterSize;
|
2016-03-28 18:25:18 +02:00
|
|
|
|
2012-04-01 11:34:10 +03:00
|
|
|
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;
|
2013-01-25 23:51:25 +03:00
|
|
|
yuv2anyX_fn yuv2anyX = c->yuv2anyX;
|
2013-05-07 17:31:02 +03:00
|
|
|
const int chrSrcSliceY = srcSliceY >> c->chrSrcVSubSample;
|
2016-01-27 17:19:38 +02:00
|
|
|
const int chrSrcSliceH = AV_CEIL_RSHIFT(srcSliceH, c->chrSrcVSubSample);
|
2016-11-09 21:45:33 +02:00
|
|
|
int should_dither = isNBPS(c->srcFormat) ||
|
2012-04-01 11:34:10 +03:00
|
|
|
is16BPS(c->srcFormat);
|
2011-06-03 08:34:12 +03:00
|
|
|
int lastDstY;
|
|
|
|
|
|
|
|
/* vars which will change and which we need to store back in the context */
|
2012-04-01 11:34:10 +03:00
|
|
|
int dstY = c->dstY;
|
|
|
|
int lastInLumBuf = c->lastInLumBuf;
|
|
|
|
int lastInChrBuf = c->lastInChrBuf;
|
2015-04-17 22:08:42 +02:00
|
|
|
|
2015-08-17 22:03:20 +02:00
|
|
|
int lumStart = 0;
|
|
|
|
int lumEnd = c->descIndex[0];
|
|
|
|
int chrStart = lumEnd;
|
|
|
|
int chrEnd = c->descIndex[1];
|
2015-08-18 16:47:55 +02:00
|
|
|
int vStart = chrEnd;
|
|
|
|
int vEnd = c->numDesc;
|
2015-08-17 22:03:20 +02:00
|
|
|
SwsSlice *src_slice = &c->slice[lumStart];
|
2015-08-18 16:47:55 +02:00
|
|
|
SwsSlice *hout_slice = &c->slice[c->numSlice-2];
|
|
|
|
SwsSlice *vout_slice = &c->slice[c->numSlice-1];
|
2015-08-17 22:03:20 +02:00
|
|
|
SwsFilterDescriptor *desc = c->desc;
|
2015-09-04 23:11:21 +02:00
|
|
|
|
2016-03-28 18:25:18 +02:00
|
|
|
int needAlpha = c->needAlpha;
|
|
|
|
|
2015-08-17 22:07:53 +02:00
|
|
|
int hasLumHoles = 1;
|
|
|
|
int hasChrHoles = 1;
|
2015-08-17 22:03:20 +02:00
|
|
|
|
2024-09-26 17:06:26 +02:00
|
|
|
const uint8_t *src2[4];
|
|
|
|
int srcStride2[4];
|
|
|
|
|
2011-06-03 08:34:12 +03:00
|
|
|
if (isPacked(c->srcFormat)) {
|
2024-09-26 17:06:26 +02:00
|
|
|
src2[0] =
|
|
|
|
src2[1] =
|
|
|
|
src2[2] =
|
|
|
|
src2[3] = src[0];
|
|
|
|
srcStride2[0] =
|
|
|
|
srcStride2[1] =
|
|
|
|
srcStride2[2] =
|
|
|
|
srcStride2[3] = srcStride[0];
|
|
|
|
} else {
|
|
|
|
memcpy(src2, src, sizeof(src2));
|
|
|
|
memcpy(srcStride2, srcStride, sizeof(srcStride2));
|
2011-06-03 08:34:12 +03:00
|
|
|
}
|
2024-09-26 17:06:26 +02:00
|
|
|
|
|
|
|
srcStride2[1] *= 1 << c->vChrDrop;
|
|
|
|
srcStride2[2] *= 1 << c->vChrDrop;
|
2011-06-03 08:34:12 +03:00
|
|
|
|
2013-08-25 18:30:05 +03:00
|
|
|
DEBUG_BUFFERS("swscale() %p[%d] %p[%d] %p[%d] %p[%d] -> %p[%d] %p[%d] %p[%d] %p[%d]\n",
|
2024-09-26 17:06:26 +02:00
|
|
|
src2[0], srcStride2[0], src2[1], srcStride2[1],
|
|
|
|
src2[2], srcStride2[2], src2[3], srcStride2[3],
|
2012-04-01 11:34:10 +03:00
|
|
|
dst[0], dstStride[0], dst[1], dstStride[1],
|
|
|
|
dst[2], dstStride[2], dst[3], dstStride[3]);
|
2011-06-03 08:34:12 +03:00
|
|
|
DEBUG_BUFFERS("srcSliceY: %d srcSliceH: %d dstY: %d dstH: %d\n",
|
2012-04-01 11:34:10 +03:00
|
|
|
srcSliceY, srcSliceH, dstY, dstH);
|
2016-03-28 18:25:18 +02:00
|
|
|
DEBUG_BUFFERS("vLumFilterSize: %d vChrFilterSize: %d\n",
|
|
|
|
vLumFilterSize, vChrFilterSize);
|
2011-06-03 08:34:12 +03:00
|
|
|
|
2014-06-18 05:24:31 +03:00
|
|
|
if (dstStride[0]&15 || dstStride[1]&15 ||
|
|
|
|
dstStride[2]&15 || dstStride[3]&15) {
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
SwsInternal *const ctx = c->parent ? sws_internal(c->parent) : c;
|
swscale/swscale: Fix races when using unaligned strides/data
In this case the current code tries to warn once; to do so, it uses
ordinary static ints to store whether the warning has already been
emitted. This is both a data race (and therefore undefined behaviour)
as well as a race condition, because it is really possible for multiple
threads to be the one thread to emit the warning. This is actually
common since the introduction of the new multithreaded scaling API.
This commit fixes this by using atomic integers for the state;
furthermore, these are not static anymore, but rather contained
in the user-facing SwsContext (i.e. the parent SwsContext in case
of slice-threading).
Given that these atomic variables are not intended for synchronization
at all (but only for atomicity, i.e. only to output the warning once),
the atomic operations use memory_order_relaxed.
This affected the nv12, nv21, yuv420, yuv420p10, yuv422, yuv422p10 and
yuv444 filter-overlay FATE-tests.
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
2021-09-18 05:11:57 +02:00
|
|
|
if (flags & SWS_PRINT_INFO &&
|
|
|
|
!atomic_exchange_explicit(&ctx->stride_unaligned_warned, 1, memory_order_relaxed)) {
|
2012-04-01 11:34:10 +03:00
|
|
|
av_log(c, AV_LOG_WARNING,
|
|
|
|
"Warning: dstStride is not aligned!\n"
|
2011-06-03 08:34:12 +03:00
|
|
|
" ->cannot do aligned memory accesses anymore\n");
|
|
|
|
}
|
|
|
|
}
|
2010-01-16 13:08:16 +02:00
|
|
|
|
2021-09-18 05:33:25 +02:00
|
|
|
#if ARCH_X86
|
2024-09-26 17:06:26 +02:00
|
|
|
if ( (uintptr_t) dst[0]&15 || (uintptr_t) dst[1]&15 || (uintptr_t) dst[2]&15
|
|
|
|
|| (uintptr_t)src2[0]&15 || (uintptr_t)src2[1]&15 || (uintptr_t)src2[2]&15
|
|
|
|
|| dstStride[0]&15 || dstStride[1]&15 || dstStride[2]&15 || dstStride[3]&15
|
|
|
|
|| srcStride2[0]&15 || srcStride2[1]&15 || srcStride2[2]&15 || srcStride2[3]&15
|
2011-10-31 03:36:02 +03:00
|
|
|
) {
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
SwsInternal *const ctx = c->parent ? sws_internal(c->parent) : c;
|
2011-10-31 03:36:02 +03:00
|
|
|
int cpu_flags = av_get_cpu_flags();
|
2021-10-16 22:50:13 +02:00
|
|
|
if (flags & SWS_PRINT_INFO && HAVE_MMXEXT && (cpu_flags & AV_CPU_FLAG_SSE2) &&
|
swscale/swscale: Fix races when using unaligned strides/data
In this case the current code tries to warn once; to do so, it uses
ordinary static ints to store whether the warning has already been
emitted. This is both a data race (and therefore undefined behaviour)
as well as a race condition, because it is really possible for multiple
threads to be the one thread to emit the warning. This is actually
common since the introduction of the new multithreaded scaling API.
This commit fixes this by using atomic integers for the state;
furthermore, these are not static anymore, but rather contained
in the user-facing SwsContext (i.e. the parent SwsContext in case
of slice-threading).
Given that these atomic variables are not intended for synchronization
at all (but only for atomicity, i.e. only to output the warning once),
the atomic operations use memory_order_relaxed.
This affected the nv12, nv21, yuv420, yuv420p10, yuv422, yuv422p10 and
yuv444 filter-overlay FATE-tests.
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
2021-09-18 05:11:57 +02:00
|
|
|
!atomic_exchange_explicit(&ctx->stride_unaligned_warned,1, memory_order_relaxed)) {
|
2017-09-22 01:10:56 +02:00
|
|
|
av_log(c, AV_LOG_WARNING, "Warning: data is not aligned! This can lead to a speed loss\n");
|
2011-10-31 03:36:02 +03:00
|
|
|
}
|
|
|
|
}
|
2021-09-18 05:33:25 +02:00
|
|
|
#endif
|
2011-10-31 03:36:02 +03:00
|
|
|
|
2021-06-24 13:11:34 +02:00
|
|
|
if (scale_dst) {
|
|
|
|
dstY = dstSliceY;
|
|
|
|
dstH = dstY + dstSliceH;
|
|
|
|
lastInLumBuf = -1;
|
|
|
|
lastInChrBuf = -1;
|
|
|
|
} else if (srcSliceY == 0) {
|
|
|
|
/* Note the user might start scaling the picture in the middle so this
|
|
|
|
* will not get executed. This is not really intended but works
|
|
|
|
* currently, so people might do it. */
|
2012-04-01 11:34:10 +03:00
|
|
|
dstY = 0;
|
|
|
|
lastInLumBuf = -1;
|
|
|
|
lastInChrBuf = -1;
|
2009-04-21 03:01:59 +03:00
|
|
|
}
|
|
|
|
|
2011-07-05 22:49:11 +03:00
|
|
|
if (!should_dither) {
|
2013-08-15 14:29:01 +03:00
|
|
|
c->chrDither8 = c->lumDither8 = sws_pb_64;
|
2011-07-05 22:49:11 +03:00
|
|
|
}
|
2012-04-01 11:34:10 +03:00
|
|
|
lastDstY = dstY;
|
2011-06-03 08:34:12 +03:00
|
|
|
|
2015-08-18 16:47:55 +02:00
|
|
|
ff_init_vscale_pfn(c, yuv2plane1, yuv2planeX, yuv2nv12cX,
|
|
|
|
yuv2packed1, yuv2packed2, yuv2packedX, yuv2anyX, c->use_mmx_vfilter);
|
2015-08-17 22:03:20 +02:00
|
|
|
|
2024-09-26 17:06:26 +02:00
|
|
|
ff_init_slice_from_src(src_slice, (uint8_t**)src2, srcStride2, c->srcW,
|
2015-10-13 18:32:07 +02:00
|
|
|
srcSliceY, srcSliceH, chrSrcSliceY, chrSrcSliceH, 1);
|
2015-08-18 16:47:55 +02:00
|
|
|
|
|
|
|
ff_init_slice_from_src(vout_slice, (uint8_t**)dst, dstStride, c->dstW,
|
2021-06-24 13:11:34 +02:00
|
|
|
dstY, dstSliceH, dstY >> c->chrDstVSubSample,
|
|
|
|
AV_CEIL_RSHIFT(dstSliceH, c->chrDstVSubSample), scale_dst);
|
2015-09-25 17:17:43 +02:00
|
|
|
if (srcSliceY == 0) {
|
|
|
|
hout_slice->plane[0].sliceY = lastInLumBuf + 1;
|
|
|
|
hout_slice->plane[1].sliceY = lastInChrBuf + 1;
|
|
|
|
hout_slice->plane[2].sliceY = lastInChrBuf + 1;
|
|
|
|
hout_slice->plane[3].sliceY = lastInLumBuf + 1;
|
|
|
|
|
|
|
|
hout_slice->plane[0].sliceH =
|
|
|
|
hout_slice->plane[1].sliceH =
|
|
|
|
hout_slice->plane[2].sliceH =
|
|
|
|
hout_slice->plane[3].sliceH = 0;
|
|
|
|
hout_slice->width = dstW;
|
|
|
|
}
|
2015-08-17 22:03:20 +02:00
|
|
|
|
2012-04-01 11:34:10 +03:00
|
|
|
for (; dstY < dstH; dstY++) {
|
|
|
|
const int chrDstY = dstY >> c->chrDstVSubSample;
|
2011-10-23 20:19:57 +03:00
|
|
|
int use_mmx_vfilter= c->use_mmx_vfilter;
|
2011-06-03 08:34:12 +03:00
|
|
|
|
2012-04-01 11:34:10 +03:00
|
|
|
// First line needed as input
|
|
|
|
const int firstLumSrcY = FFMAX(1 - vLumFilterSize, vLumFilterPos[dstY]);
|
2021-06-24 13:11:34 +02:00
|
|
|
const int firstLumSrcY2 = FFMAX(1 - vLumFilterSize, vLumFilterPos[FFMIN(dstY | ((1 << c->chrDstVSubSample) - 1), c->dstH - 1)]);
|
2012-04-01 11:34:10 +03:00
|
|
|
// 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 19:27:43 +03: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 08:34:12 +03:00
|
|
|
int enough_lines;
|
2016-03-28 18:25:18 +02:00
|
|
|
|
2015-08-17 22:03:20 +02:00
|
|
|
int i;
|
2015-08-17 22:07:53 +02:00
|
|
|
int posY, cPosY, firstPosY, lastPosY, firstCPosY, lastCPosY;
|
2011-06-03 08:34:12 +03:00
|
|
|
|
2012-04-01 11:34:10 +03:00
|
|
|
// handle holes (FAST_BILINEAR & weird filters)
|
2015-08-17 22:03:20 +02:00
|
|
|
if (firstLumSrcY > lastInLumBuf) {
|
2016-03-28 18:25:18 +02:00
|
|
|
|
2015-08-17 22:07:53 +02:00
|
|
|
hasLumHoles = lastInLumBuf != firstLumSrcY - 1;
|
|
|
|
if (hasLumHoles) {
|
2015-09-20 23:03:49 +02:00
|
|
|
hout_slice->plane[0].sliceY = firstLumSrcY;
|
|
|
|
hout_slice->plane[3].sliceY = firstLumSrcY;
|
2015-08-18 16:47:55 +02:00
|
|
|
hout_slice->plane[0].sliceH =
|
|
|
|
hout_slice->plane[3].sliceH = 0;
|
2015-08-17 22:07:53 +02:00
|
|
|
}
|
2016-03-28 18:25:18 +02:00
|
|
|
|
2015-08-18 16:47:55 +02:00
|
|
|
lastInLumBuf = firstLumSrcY - 1;
|
2015-08-17 22:03:20 +02:00
|
|
|
}
|
|
|
|
if (firstChrSrcY > lastInChrBuf) {
|
2016-03-28 18:25:18 +02:00
|
|
|
|
2015-08-17 22:07:53 +02:00
|
|
|
hasChrHoles = lastInChrBuf != firstChrSrcY - 1;
|
|
|
|
if (hasChrHoles) {
|
2015-09-20 23:03:49 +02:00
|
|
|
hout_slice->plane[1].sliceY = firstChrSrcY;
|
|
|
|
hout_slice->plane[2].sliceY = firstChrSrcY;
|
2015-08-18 16:47:55 +02:00
|
|
|
hout_slice->plane[1].sliceH =
|
|
|
|
hout_slice->plane[2].sliceH = 0;
|
2015-08-17 22:07:53 +02:00
|
|
|
}
|
2016-03-28 18:25:18 +02:00
|
|
|
|
2015-08-18 16:47:55 +02:00
|
|
|
lastInChrBuf = firstChrSrcY - 1;
|
2015-08-17 22:03:20 +02:00
|
|
|
}
|
2011-06-03 08:34:12 +03:00
|
|
|
|
|
|
|
DEBUG_BUFFERS("dstY: %d\n", dstY);
|
|
|
|
DEBUG_BUFFERS("\tfirstLumSrcY: %d lastLumSrcY: %d lastInLumBuf: %d\n",
|
2012-04-01 11:34:10 +03:00
|
|
|
firstLumSrcY, lastLumSrcY, lastInLumBuf);
|
2011-06-03 08:34:12 +03:00
|
|
|
DEBUG_BUFFERS("\tfirstChrSrcY: %d lastChrSrcY: %d lastInChrBuf: %d\n",
|
2012-04-01 11:34:10 +03:00
|
|
|
firstChrSrcY, lastChrSrcY, lastInChrBuf);
|
2011-06-03 08:34:12 +03:00
|
|
|
|
|
|
|
// Do we have enough lines in this slice to output the dstY line
|
2012-04-01 11:34:10 +03:00
|
|
|
enough_lines = lastLumSrcY2 < srcSliceY + srcSliceH &&
|
2016-01-27 17:19:38 +02:00
|
|
|
lastChrSrcY < AV_CEIL_RSHIFT(srcSliceY + srcSliceH, c->chrSrcVSubSample);
|
2011-06-03 08:34:12 +03:00
|
|
|
|
|
|
|
if (!enough_lines) {
|
|
|
|
lastLumSrcY = srcSliceY + srcSliceH - 1;
|
|
|
|
lastChrSrcY = chrSrcSliceY + chrSrcSliceH - 1;
|
|
|
|
DEBUG_BUFFERS("buffering slice: lastLumSrcY %d lastChrSrcY %d\n",
|
2012-04-01 11:34:10 +03:00
|
|
|
lastLumSrcY, lastChrSrcY);
|
2011-06-03 08:34:12 +03:00
|
|
|
}
|
2010-08-18 22:37:37 +03:00
|
|
|
|
2016-06-09 02:38:49 +02:00
|
|
|
av_assert0((lastLumSrcY - firstLumSrcY + 1) <= hout_slice->plane[0].available_lines);
|
|
|
|
av_assert0((lastChrSrcY - firstChrSrcY + 1) <= hout_slice->plane[1].available_lines);
|
|
|
|
|
|
|
|
|
2015-08-18 16:47:55 +02:00
|
|
|
posY = hout_slice->plane[0].sliceY + hout_slice->plane[0].sliceH;
|
2015-08-17 22:07:53 +02:00
|
|
|
if (posY <= lastLumSrcY && !hasLumHoles) {
|
|
|
|
firstPosY = FFMAX(firstLumSrcY, posY);
|
2016-06-09 02:38:49 +02:00
|
|
|
lastPosY = FFMIN(firstLumSrcY + hout_slice->plane[0].available_lines - 1, srcSliceY + srcSliceH - 1);
|
2015-08-17 22:07:53 +02:00
|
|
|
} else {
|
2016-09-08 20:57:40 +02:00
|
|
|
firstPosY = posY;
|
2015-08-17 22:07:53 +02:00
|
|
|
lastPosY = lastLumSrcY;
|
|
|
|
}
|
|
|
|
|
2015-08-18 16:47:55 +02:00
|
|
|
cPosY = hout_slice->plane[1].sliceY + hout_slice->plane[1].sliceH;
|
2015-08-17 22:07:53 +02:00
|
|
|
if (cPosY <= lastChrSrcY && !hasChrHoles) {
|
|
|
|
firstCPosY = FFMAX(firstChrSrcY, cPosY);
|
2016-06-09 02:38:49 +02:00
|
|
|
lastCPosY = FFMIN(firstChrSrcY + hout_slice->plane[1].available_lines - 1, AV_CEIL_RSHIFT(srcSliceY + srcSliceH, c->chrSrcVSubSample) - 1);
|
2015-08-17 22:07:53 +02:00
|
|
|
} else {
|
2016-09-08 20:57:40 +02:00
|
|
|
firstCPosY = cPosY;
|
2015-08-17 22:07:53 +02:00
|
|
|
lastCPosY = lastChrSrcY;
|
|
|
|
}
|
|
|
|
|
2015-08-18 16:47:55 +02:00
|
|
|
ff_rotate_slice(hout_slice, lastPosY, lastCPosY);
|
2015-08-17 22:03:20 +02:00
|
|
|
|
2015-08-17 22:07:53 +02:00
|
|
|
if (posY < lastLumSrcY + 1) {
|
2015-08-17 22:03:20 +02:00
|
|
|
for (i = lumStart; i < lumEnd; ++i)
|
2015-08-17 22:07:53 +02:00
|
|
|
desc[i].process(c, &desc[i], firstPosY, lastPosY - firstPosY + 1);
|
|
|
|
}
|
|
|
|
|
2015-08-17 22:03:20 +02:00
|
|
|
lastInLumBuf = lastLumSrcY;
|
|
|
|
|
2015-08-17 22:07:53 +02:00
|
|
|
if (cPosY < lastChrSrcY + 1) {
|
2015-08-17 22:03:20 +02:00
|
|
|
for (i = chrStart; i < chrEnd; ++i)
|
2015-08-17 22:07:53 +02:00
|
|
|
desc[i].process(c, &desc[i], firstCPosY, lastCPosY - firstCPosY + 1);
|
|
|
|
}
|
|
|
|
|
2015-08-17 22:03:20 +02:00
|
|
|
lastInChrBuf = lastChrSrcY;
|
|
|
|
|
2011-06-03 08:34:12 +03:00
|
|
|
if (!enough_lines)
|
2012-04-01 11:34:10 +03:00
|
|
|
break; // we can't output a dstY line so let's try with the next slice
|
2011-06-03 08:34:12 +03:00
|
|
|
|
2012-08-28 15:53:33 +03:00
|
|
|
#if HAVE_MMX_INLINE
|
2020-04-01 09:32:15 +02:00
|
|
|
ff_updateMMXDitherTables(c, dstY);
|
2024-10-10 12:21:19 +02:00
|
|
|
c->dstW_mmx = c->dstW;
|
2011-06-03 08:34:12 +03:00
|
|
|
#endif
|
2011-07-05 22:49:11 +03:00
|
|
|
if (should_dither) {
|
2013-08-15 14:38:12 +03:00
|
|
|
c->chrDither8 = ff_dither_8x8_128[chrDstY & 7];
|
|
|
|
c->lumDither8 = ff_dither_8x8_128[dstY & 7];
|
2011-07-05 22:49:11 +03:00
|
|
|
}
|
2021-06-24 13:11:34 +02:00
|
|
|
if (dstY >= c->dstH - 2) {
|
2012-04-01 11:34:10 +03:00
|
|
|
/* hmm looks like we can't use MMX here without overwriting
|
|
|
|
* this array's tail */
|
|
|
|
ff_sws_init_output_funcs(c, &yuv2plane1, &yuv2planeX, &yuv2nv12cX,
|
2013-01-25 23:51:25 +03:00
|
|
|
&yuv2packed1, &yuv2packed2, &yuv2packedX, &yuv2anyX);
|
2011-10-23 20:19:57 +03:00
|
|
|
use_mmx_vfilter= 0;
|
2015-08-18 16:47:55 +02:00
|
|
|
ff_init_vscale_pfn(c, yuv2plane1, yuv2planeX, yuv2nv12cX,
|
|
|
|
yuv2packed1, yuv2packed2, yuv2packedX, yuv2anyX, use_mmx_vfilter);
|
2011-06-06 05:54:30 +03:00
|
|
|
}
|
|
|
|
|
2021-05-14 11:51:22 +02:00
|
|
|
for (i = vStart; i < vEnd; ++i)
|
|
|
|
desc[i].process(c, &desc[i], dstY, 1);
|
2010-08-18 22:37:37 +03:00
|
|
|
}
|
2016-03-28 18:25:18 +02:00
|
|
|
if (isPlanar(dstFormat) && isALPHA(dstFormat) && !needAlpha) {
|
2021-06-24 13:11:34 +02:00
|
|
|
int offset = lastDstY - dstSliceY;
|
2012-10-29 21:07:01 +03:00
|
|
|
int length = dstW;
|
|
|
|
int height = dstY - lastDstY;
|
|
|
|
|
2012-10-30 20:40:55 +03:00
|
|
|
if (is16BPS(dstFormat) || isNBPS(dstFormat)) {
|
2012-10-29 21:07:01 +03:00
|
|
|
const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(dstFormat);
|
2021-06-24 13:11:34 +02:00
|
|
|
fillPlane16(dst[3], dstStride[3], length, height, offset,
|
2015-09-08 15:43:03 +02:00
|
|
|
1, desc->comp[3].depth,
|
2012-10-30 20:40:55 +03:00
|
|
|
isBE(dstFormat));
|
2020-05-04 01:10:04 +02:00
|
|
|
} else if (is32BPS(dstFormat)) {
|
|
|
|
const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(dstFormat);
|
2021-06-24 13:11:34 +02:00
|
|
|
fillPlane32(dst[3], dstStride[3], length, height, offset,
|
2020-05-04 01:10:04 +02:00
|
|
|
1, desc->comp[3].depth,
|
|
|
|
isBE(dstFormat), desc->flags & AV_PIX_FMT_FLAG_FLOAT);
|
2012-10-29 21:07:01 +03:00
|
|
|
} else
|
2021-06-24 13:11:34 +02:00
|
|
|
fillPlane(dst[3], dstStride[3], length, height, offset, 255);
|
2012-10-29 21:07:01 +03:00
|
|
|
}
|
2011-06-03 08:34:12 +03:00
|
|
|
|
2012-09-04 09:30:16 +03:00
|
|
|
#if HAVE_MMXEXT_INLINE
|
2012-07-08 19:42:12 +03:00
|
|
|
if (av_get_cpu_flags() & AV_CPU_FLAG_MMXEXT)
|
2012-04-01 11:34:10 +03:00
|
|
|
__asm__ volatile ("sfence" ::: "memory");
|
2011-06-03 08:34:12 +03:00
|
|
|
#endif
|
|
|
|
emms_c();
|
|
|
|
|
|
|
|
/* store changed local vars back in the context */
|
2012-04-01 11:34:10 +03:00
|
|
|
c->dstY = dstY;
|
|
|
|
c->lastInLumBuf = lastInLumBuf;
|
|
|
|
c->lastInChrBuf = lastInChrBuf;
|
2011-06-03 08:34:12 +03:00
|
|
|
|
|
|
|
return dstY - lastDstY;
|
2010-08-18 22:37:37 +03:00
|
|
|
}
|
|
|
|
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
av_cold void ff_sws_init_range_convert(SwsInternal *c)
|
2014-04-15 00:18:21 +03:00
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
2024-09-18 11:23:18 +02:00
|
|
|
|
|
|
|
#if ARCH_AARCH64
|
2024-09-22 12:49:18 +02:00
|
|
|
ff_sws_init_range_convert_aarch64(c);
|
2024-09-18 11:23:18 +02:00
|
|
|
#elif ARCH_LOONGARCH64
|
2024-09-22 12:49:18 +02:00
|
|
|
ff_sws_init_range_convert_loongarch(c);
|
2024-09-18 11:23:18 +02:00
|
|
|
#elif ARCH_RISCV
|
2024-09-22 12:49:18 +02:00
|
|
|
ff_sws_init_range_convert_riscv(c);
|
2024-09-18 11:23:18 +02:00
|
|
|
#elif ARCH_X86
|
2024-09-22 12:49:18 +02:00
|
|
|
ff_sws_init_range_convert_x86(c);
|
2024-09-18 11:23:18 +02:00
|
|
|
#endif
|
2024-09-22 12:48:12 +02:00
|
|
|
}
|
2014-04-15 00:18:21 +03:00
|
|
|
}
|
|
|
|
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
static av_cold void sws_init_swscale(SwsInternal *c)
|
2009-08-17 00:11:28 +03:00
|
|
|
{
|
2012-10-06 13:10:34 +03:00
|
|
|
enum AVPixelFormat srcFormat = c->srcFormat;
|
2008-09-04 23:46:36 +03:00
|
|
|
|
2012-02-01 18:38:56 +03:00
|
|
|
ff_sws_init_output_funcs(c, &c->yuv2plane1, &c->yuv2planeX,
|
|
|
|
&c->yuv2nv12cX, &c->yuv2packed1,
|
2013-01-25 23:51:25 +03:00
|
|
|
&c->yuv2packed2, &c->yuv2packedX, &c->yuv2anyX);
|
2007-04-29 16:39:27 +03:00
|
|
|
|
2024-10-01 12:32:29 +02:00
|
|
|
ff_sws_init_input_funcs(c, &c->lumToYV12, &c->alpToYV12, &c->chrToYV12,
|
|
|
|
&c->readLumPlanar, &c->readAlpPlanar, &c->readChrPlanar);
|
2007-04-15 03:53:32 +03:00
|
|
|
|
2011-08-03 01:42:35 +03:00
|
|
|
if (c->srcBpc == 8) {
|
2012-07-03 05:10:11 +03:00
|
|
|
if (c->dstBpc <= 14) {
|
2011-08-03 21:25:01 +03:00
|
|
|
c->hyScale = c->hcScale = hScale8To15_c;
|
2011-08-03 01:42:35 +03:00
|
|
|
if (c->flags & SWS_FAST_BILINEAR) {
|
2014-07-19 05:57:47 +03:00
|
|
|
c->hyscale_fast = ff_hyscale_fast_c;
|
|
|
|
c->hcscale_fast = ff_hcscale_fast_c;
|
2011-08-03 01:42:35 +03:00
|
|
|
}
|
2011-06-03 08:34:12 +03:00
|
|
|
} else {
|
2011-08-03 21:25:01 +03:00
|
|
|
c->hyScale = c->hcScale = hScale8To19_c;
|
2011-06-03 08:34:12 +03:00
|
|
|
}
|
2011-06-29 19:39:43 +03:00
|
|
|
} else {
|
2012-07-03 05:10:11 +03:00
|
|
|
c->hyScale = c->hcScale = c->dstBpc > 14 ? hScale16To19_c
|
2012-04-01 11:34:10 +03:00
|
|
|
: hScale16To15_c;
|
2011-08-03 01:42:35 +03:00
|
|
|
}
|
2011-06-29 19:39:43 +03:00
|
|
|
|
2014-04-15 00:18:21 +03:00
|
|
|
ff_sws_init_range_convert(c);
|
2003-03-27 18:04:53 +02:00
|
|
|
|
2011-06-03 08:34:12 +03:00
|
|
|
if (!(isGray(srcFormat) || isGray(c->dstFormat) ||
|
2012-10-06 13:10:34 +03:00
|
|
|
srcFormat == AV_PIX_FMT_MONOBLACK || srcFormat == AV_PIX_FMT_MONOWHITE))
|
2011-06-03 08:34:12 +03:00
|
|
|
c->needs_hcscale = 1;
|
2003-02-24 00:05:55 +02:00
|
|
|
}
|
2010-06-01 22:35:16 +03:00
|
|
|
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
void ff_sws_init_scale(SwsInternal *c)
|
2010-06-01 22:35:16 +03:00
|
|
|
{
|
2013-08-25 18:30:05 +03:00
|
|
|
sws_init_swscale(c);
|
2010-06-01 22:35:16 +03:00
|
|
|
|
2022-06-12 05:51:12 +02:00
|
|
|
#if ARCH_PPC
|
|
|
|
ff_sws_init_swscale_ppc(c);
|
|
|
|
#elif ARCH_X86
|
|
|
|
ff_sws_init_swscale_x86(c);
|
|
|
|
#elif ARCH_AARCH64
|
|
|
|
ff_sws_init_swscale_aarch64(c);
|
|
|
|
#elif ARCH_ARM
|
|
|
|
ff_sws_init_swscale_arm(c);
|
2022-09-09 11:00:24 +02:00
|
|
|
#elif ARCH_LOONGARCH64
|
|
|
|
ff_sws_init_swscale_loongarch(c);
|
2024-06-04 21:57:33 +02:00
|
|
|
#elif ARCH_RISCV
|
|
|
|
ff_sws_init_swscale_riscv(c);
|
2022-06-12 05:51:12 +02:00
|
|
|
#endif
|
2010-06-01 22:35:16 +03:00
|
|
|
}
|
2012-10-01 00:09:45 +03:00
|
|
|
|
2015-03-16 01:14:30 +02:00
|
|
|
static void reset_ptr(const uint8_t *src[], enum AVPixelFormat format)
|
2012-10-01 00:09:45 +03:00
|
|
|
{
|
|
|
|
if (!isALPHA(format))
|
|
|
|
src[3] = NULL;
|
|
|
|
if (!isPlanar(format)) {
|
|
|
|
src[3] = src[2] = NULL;
|
|
|
|
|
|
|
|
if (!usePal(format))
|
|
|
|
src[1] = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-08 21:54:00 +03:00
|
|
|
static int check_image_pointers(const uint8_t * const data[4], enum AVPixelFormat pix_fmt,
|
2012-10-01 00:09:45 +03:00
|
|
|
const int linesizes[4])
|
|
|
|
{
|
2012-10-12 16:52:55 +03:00
|
|
|
const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt);
|
2012-10-01 00:09:45 +03:00
|
|
|
int i;
|
|
|
|
|
2015-06-12 14:39:28 +02:00
|
|
|
av_assert2(desc);
|
|
|
|
|
2012-10-01 00:09:45 +03:00
|
|
|
for (i = 0; i < 4; i++) {
|
|
|
|
int plane = desc->comp[i].plane;
|
|
|
|
if (!data[plane] || !linesizes[plane])
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
void ff_xyz12Torgb48(const SwsInternal *c, uint8_t *dst, int dst_stride,
|
2024-10-07 19:38:03 +02:00
|
|
|
const uint8_t *src, int src_stride, int w, int h)
|
2013-04-28 20:28:42 +03:00
|
|
|
{
|
|
|
|
const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(c->srcFormat);
|
|
|
|
|
2024-10-07 18:50:44 +02:00
|
|
|
for (int yp = 0; yp < h; yp++) {
|
2024-10-07 19:33:44 +02:00
|
|
|
const uint16_t *src16 = (const uint16_t *) src;
|
|
|
|
uint16_t *dst16 = (uint16_t *) dst;
|
|
|
|
|
2024-10-07 18:58:29 +02:00
|
|
|
for (int xp = 0; xp < 3 * w; xp += 3) {
|
2013-04-28 20:28:42 +03:00
|
|
|
int x, y, z, r, g, b;
|
|
|
|
|
2013-05-15 12:23:14 +03:00
|
|
|
if (desc->flags & AV_PIX_FMT_FLAG_BE) {
|
2024-10-07 19:33:44 +02:00
|
|
|
x = AV_RB16(src16 + xp + 0);
|
|
|
|
y = AV_RB16(src16 + xp + 1);
|
|
|
|
z = AV_RB16(src16 + xp + 2);
|
2013-04-28 20:28:42 +03:00
|
|
|
} else {
|
2024-10-07 19:33:44 +02:00
|
|
|
x = AV_RL16(src16 + xp + 0);
|
|
|
|
y = AV_RL16(src16 + xp + 1);
|
|
|
|
z = AV_RL16(src16 + xp + 2);
|
2013-04-28 20:28:42 +03:00
|
|
|
}
|
|
|
|
|
2024-10-07 18:50:44 +02:00
|
|
|
x = c->xyzgamma[x >> 4];
|
|
|
|
y = c->xyzgamma[y >> 4];
|
|
|
|
z = c->xyzgamma[z >> 4];
|
2013-04-28 20:28:42 +03:00
|
|
|
|
|
|
|
// 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 +
|
2013-04-28 20:57:45 +03:00
|
|
|
c->xyz2rgb_matrix[2][1] * y +
|
2013-04-28 20:28:42 +03:00
|
|
|
c->xyz2rgb_matrix[2][2] * z >> 12;
|
|
|
|
|
|
|
|
// limit values to 12-bit depth
|
2015-02-21 15:49:17 +02:00
|
|
|
r = av_clip_uintp2(r, 12);
|
|
|
|
g = av_clip_uintp2(g, 12);
|
|
|
|
b = av_clip_uintp2(b, 12);
|
2013-04-28 20:28:42 +03:00
|
|
|
|
|
|
|
// convert from sRGBlinear to RGB and scale from 12bit to 16bit
|
2013-05-15 12:23:14 +03:00
|
|
|
if (desc->flags & AV_PIX_FMT_FLAG_BE) {
|
2024-10-07 19:33:44 +02:00
|
|
|
AV_WB16(dst16 + xp + 0, c->rgbgamma[r] << 4);
|
|
|
|
AV_WB16(dst16 + xp + 1, c->rgbgamma[g] << 4);
|
|
|
|
AV_WB16(dst16 + xp + 2, c->rgbgamma[b] << 4);
|
2013-04-28 20:28:42 +03:00
|
|
|
} else {
|
2024-10-07 19:33:44 +02:00
|
|
|
AV_WL16(dst16 + xp + 0, c->rgbgamma[r] << 4);
|
|
|
|
AV_WL16(dst16 + xp + 1, c->rgbgamma[g] << 4);
|
|
|
|
AV_WL16(dst16 + xp + 2, c->rgbgamma[b] << 4);
|
2013-04-28 20:28:42 +03:00
|
|
|
}
|
|
|
|
}
|
2024-10-07 19:33:44 +02:00
|
|
|
|
|
|
|
src += src_stride;
|
|
|
|
dst += dst_stride;
|
2013-04-28 20:28:42 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
void ff_rgb48Toxyz12(const SwsInternal *c, uint8_t *dst, int dst_stride,
|
2024-10-07 19:38:03 +02:00
|
|
|
const uint8_t *src, int src_stride, int w, int h)
|
2013-07-14 06:30:38 +03:00
|
|
|
{
|
2014-01-10 19:23:04 +03:00
|
|
|
const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(c->dstFormat);
|
2013-07-14 06:30:38 +03:00
|
|
|
|
2024-10-07 18:50:44 +02:00
|
|
|
for (int yp = 0; yp < h; yp++) {
|
2024-10-07 19:33:44 +02:00
|
|
|
uint16_t *src16 = (uint16_t *) src;
|
|
|
|
uint16_t *dst16 = (uint16_t *) dst;
|
|
|
|
|
2024-10-07 18:58:29 +02:00
|
|
|
for (int xp = 0; xp < 3 * w; xp += 3) {
|
2013-07-14 06:30:38 +03:00
|
|
|
int x, y, z, r, g, b;
|
|
|
|
|
|
|
|
if (desc->flags & AV_PIX_FMT_FLAG_BE) {
|
2024-10-07 19:33:44 +02:00
|
|
|
r = AV_RB16(src16 + xp + 0);
|
|
|
|
g = AV_RB16(src16 + xp + 1);
|
|
|
|
b = AV_RB16(src16 + xp + 2);
|
2013-07-14 06:30:38 +03:00
|
|
|
} else {
|
2024-10-07 19:33:44 +02:00
|
|
|
r = AV_RL16(src16 + xp + 0);
|
|
|
|
g = AV_RL16(src16 + xp + 1);
|
|
|
|
b = AV_RL16(src16 + xp + 2);
|
2013-07-14 06:30:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
2015-02-21 15:49:17 +02:00
|
|
|
x = av_clip_uintp2(x, 12);
|
|
|
|
y = av_clip_uintp2(y, 12);
|
|
|
|
z = av_clip_uintp2(z, 12);
|
2013-07-14 06:30:38 +03:00
|
|
|
|
|
|
|
// convert from XYZlinear to X'Y'Z' and scale from 12bit to 16bit
|
|
|
|
if (desc->flags & AV_PIX_FMT_FLAG_BE) {
|
2024-10-07 19:33:44 +02:00
|
|
|
AV_WB16(dst16 + xp + 0, c->xyzgammainv[x] << 4);
|
|
|
|
AV_WB16(dst16 + xp + 1, c->xyzgammainv[y] << 4);
|
|
|
|
AV_WB16(dst16 + xp + 2, c->xyzgammainv[z] << 4);
|
2013-07-14 06:30:38 +03:00
|
|
|
} else {
|
2024-10-07 19:33:44 +02:00
|
|
|
AV_WL16(dst16 + xp + 0, c->xyzgammainv[x] << 4);
|
|
|
|
AV_WL16(dst16 + xp + 1, c->xyzgammainv[y] << 4);
|
|
|
|
AV_WL16(dst16 + xp + 2, c->xyzgammainv[z] << 4);
|
2013-07-14 06:30:38 +03:00
|
|
|
}
|
|
|
|
}
|
2024-10-07 19:33:44 +02:00
|
|
|
|
|
|
|
src += src_stride;
|
|
|
|
dst += dst_stride;
|
2013-07-14 06:30:38 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
void ff_update_palette(SwsInternal *c, const uint32_t *pal)
|
2021-05-19 09:48:54 +02:00
|
|
|
{
|
2021-05-19 09:49:53 +02:00
|
|
|
for (int i = 0; i < 256; i++) {
|
|
|
|
int r, g, b, y, u, v, a = 0xff;
|
|
|
|
if (c->srcFormat == AV_PIX_FMT_PAL8) {
|
|
|
|
uint32_t p = pal[i];
|
|
|
|
a = (p >> 24) & 0xFF;
|
|
|
|
r = (p >> 16) & 0xFF;
|
|
|
|
g = (p >> 8) & 0xFF;
|
|
|
|
b = p & 0xFF;
|
|
|
|
} else if (c->srcFormat == AV_PIX_FMT_RGB8) {
|
|
|
|
r = ( i >> 5 ) * 36;
|
|
|
|
g = ((i >> 2) & 7) * 36;
|
|
|
|
b = ( i & 3) * 85;
|
|
|
|
} else if (c->srcFormat == AV_PIX_FMT_BGR8) {
|
|
|
|
b = ( i >> 6 ) * 85;
|
|
|
|
g = ((i >> 3) & 7) * 36;
|
|
|
|
r = ( i & 7) * 36;
|
|
|
|
} else if (c->srcFormat == AV_PIX_FMT_RGB4_BYTE) {
|
|
|
|
r = ( i >> 3 ) * 255;
|
|
|
|
g = ((i >> 1) & 3) * 85;
|
|
|
|
b = ( i & 1) * 255;
|
|
|
|
} else if (c->srcFormat == AV_PIX_FMT_GRAY8 || c->srcFormat == AV_PIX_FMT_GRAY8A) {
|
|
|
|
r = g = b = i;
|
|
|
|
} else {
|
|
|
|
av_assert1(c->srcFormat == AV_PIX_FMT_BGR4_BYTE);
|
|
|
|
b = ( i >> 3 ) * 255;
|
|
|
|
g = ((i >> 1) & 3) * 85;
|
|
|
|
r = ( i & 1) * 255;
|
|
|
|
}
|
2021-05-19 09:48:54 +02:00
|
|
|
#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))
|
|
|
|
|
2021-05-19 09:49:53 +02:00
|
|
|
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);
|
|
|
|
c->pal_yuv[i]= y + (u<<8) + (v<<16) + ((unsigned)a<<24);
|
2021-05-19 09:48:54 +02:00
|
|
|
|
2021-05-19 09:49:53 +02:00
|
|
|
switch (c->dstFormat) {
|
|
|
|
case AV_PIX_FMT_BGR32:
|
2021-05-19 09:48:54 +02:00
|
|
|
#if !HAVE_BIGENDIAN
|
2021-05-19 09:49:53 +02:00
|
|
|
case AV_PIX_FMT_RGB24:
|
2021-05-19 09:48:54 +02:00
|
|
|
#endif
|
2021-05-19 09:49:53 +02:00
|
|
|
c->pal_rgb[i]= r + (g<<8) + (b<<16) + ((unsigned)a<<24);
|
|
|
|
break;
|
|
|
|
case AV_PIX_FMT_BGR32_1:
|
2021-05-19 09:48:54 +02:00
|
|
|
#if HAVE_BIGENDIAN
|
2021-05-19 09:49:53 +02:00
|
|
|
case AV_PIX_FMT_BGR24:
|
2021-05-19 09:48:54 +02:00
|
|
|
#endif
|
2021-05-19 09:49:53 +02:00
|
|
|
c->pal_rgb[i]= a + (r<<8) + (g<<16) + ((unsigned)b<<24);
|
|
|
|
break;
|
|
|
|
case AV_PIX_FMT_RGB32_1:
|
2021-05-19 09:48:54 +02:00
|
|
|
#if HAVE_BIGENDIAN
|
2021-05-19 09:49:53 +02:00
|
|
|
case AV_PIX_FMT_RGB24:
|
2021-05-19 09:48:54 +02:00
|
|
|
#endif
|
2021-05-19 09:49:53 +02:00
|
|
|
c->pal_rgb[i]= a + (b<<8) + (g<<16) + ((unsigned)r<<24);
|
|
|
|
break;
|
|
|
|
case AV_PIX_FMT_RGB32:
|
2021-05-19 09:48:54 +02:00
|
|
|
#if !HAVE_BIGENDIAN
|
2021-05-19 09:49:53 +02:00
|
|
|
case AV_PIX_FMT_BGR24:
|
2021-05-19 09:48:54 +02:00
|
|
|
#endif
|
2021-05-19 09:49:53 +02:00
|
|
|
default:
|
|
|
|
c->pal_rgb[i]= b + (g<<8) + (r<<16) + ((unsigned)a<<24);
|
2021-05-19 09:48:54 +02:00
|
|
|
}
|
2021-05-19 09:49:53 +02:00
|
|
|
}
|
2021-05-19 09:48:54 +02:00
|
|
|
}
|
|
|
|
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
static int scale_internal(SwsContext *sws,
|
2021-06-24 13:11:34 +02:00
|
|
|
const uint8_t * const srcSlice[], const int srcStride[],
|
|
|
|
int srcSliceY, int srcSliceH,
|
|
|
|
uint8_t *const dstSlice[], const int dstStride[],
|
|
|
|
int dstSliceY, int dstSliceH);
|
|
|
|
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
static int scale_gamma(SwsInternal *c,
|
2021-05-19 10:12:15 +02:00
|
|
|
const uint8_t * const srcSlice[], const int srcStride[],
|
|
|
|
int srcSliceY, int srcSliceH,
|
2021-06-24 13:11:34 +02:00
|
|
|
uint8_t * const dstSlice[], const int dstStride[],
|
|
|
|
int dstSliceY, int dstSliceH)
|
2021-05-19 10:12:15 +02:00
|
|
|
{
|
2021-06-24 13:11:34 +02:00
|
|
|
int ret = scale_internal(c->cascaded_context[0],
|
|
|
|
srcSlice, srcStride, srcSliceY, srcSliceH,
|
2024-10-04 13:51:42 +02:00
|
|
|
c->cascaded_tmp[0], c->cascaded_tmpStride[0], 0, c->srcH);
|
2021-05-19 10:12:15 +02:00
|
|
|
|
2021-05-19 10:14:14 +02:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
2021-05-19 10:12:15 +02:00
|
|
|
|
2021-05-19 10:14:14 +02:00
|
|
|
if (c->cascaded_context[2])
|
2024-10-04 13:51:42 +02:00
|
|
|
ret = scale_internal(c->cascaded_context[1], (const uint8_t * const *)c->cascaded_tmp[0],
|
|
|
|
c->cascaded_tmpStride[0], srcSliceY, srcSliceH,
|
|
|
|
c->cascaded_tmp[1], c->cascaded_tmpStride[1], 0, c->dstH);
|
2021-05-19 10:14:14 +02:00
|
|
|
else
|
2024-10-04 13:51:42 +02:00
|
|
|
ret = scale_internal(c->cascaded_context[1], (const uint8_t * const *)c->cascaded_tmp[0],
|
|
|
|
c->cascaded_tmpStride[0], srcSliceY, srcSliceH,
|
2021-06-24 13:11:34 +02:00
|
|
|
dstSlice, dstStride, dstSliceY, dstSliceH);
|
2021-05-19 10:12:15 +02:00
|
|
|
|
2021-05-19 10:14:14 +02:00
|
|
|
if (ret < 0)
|
2021-05-19 10:12:15 +02:00
|
|
|
return ret;
|
2021-05-19 10:14:14 +02:00
|
|
|
|
|
|
|
if (c->cascaded_context[2]) {
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
const int dstY1 = sws_internal(c->cascaded_context[1])->dstY;
|
2024-10-04 13:51:42 +02:00
|
|
|
ret = scale_internal(c->cascaded_context[2], (const uint8_t * const *)c->cascaded_tmp[1],
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
c->cascaded_tmpStride[1], dstY1 - ret, dstY1,
|
2021-06-24 13:11:34 +02:00
|
|
|
dstSlice, dstStride, dstSliceY, dstSliceH);
|
2021-05-19 10:14:14 +02:00
|
|
|
}
|
|
|
|
return ret;
|
2021-05-19 10:12:15 +02:00
|
|
|
}
|
|
|
|
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
static int scale_cascaded(SwsInternal *c,
|
2021-05-19 11:47:42 +02:00
|
|
|
const uint8_t * const srcSlice[], const int srcStride[],
|
|
|
|
int srcSliceY, int srcSliceH,
|
2021-06-24 13:11:34 +02:00
|
|
|
uint8_t * const dstSlice[], const int dstStride[],
|
|
|
|
int dstSliceY, int dstSliceH)
|
2021-05-19 11:47:42 +02:00
|
|
|
{
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
const int dstH0 = sws_internal(c->cascaded_context[0])->dstH;
|
2021-06-24 13:11:34 +02:00
|
|
|
int ret = scale_internal(c->cascaded_context[0],
|
|
|
|
srcSlice, srcStride, srcSliceY, srcSliceH,
|
2024-10-04 13:51:42 +02:00
|
|
|
c->cascaded_tmp[0], c->cascaded_tmpStride[0],
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
0, dstH0);
|
2021-05-19 11:48:23 +02:00
|
|
|
if (ret < 0)
|
2021-05-19 11:47:42 +02:00
|
|
|
return ret;
|
2021-06-24 13:11:34 +02:00
|
|
|
ret = scale_internal(c->cascaded_context[1],
|
2024-10-04 13:51:42 +02:00
|
|
|
(const uint8_t * const * )c->cascaded_tmp[0], c->cascaded_tmpStride[0],
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
0, dstH0, dstSlice, dstStride, dstSliceY, dstSliceH);
|
2021-05-19 11:48:23 +02:00
|
|
|
return ret;
|
2021-05-19 11:47:42 +02:00
|
|
|
}
|
|
|
|
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
static int scale_internal(SwsContext *sws,
|
2021-06-24 13:11:34 +02:00
|
|
|
const uint8_t * const srcSlice[], const int srcStride[],
|
|
|
|
int srcSliceY, int srcSliceH,
|
|
|
|
uint8_t *const dstSlice[], const int dstStride[],
|
|
|
|
int dstSliceY, int dstSliceH)
|
2012-10-01 00:09:45 +03:00
|
|
|
{
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
SwsInternal *c = sws_internal(sws);
|
2021-06-24 13:11:34 +02:00
|
|
|
const int scale_dst = dstSliceY > 0 || dstSliceH < c->dstH;
|
|
|
|
const int frame_start = scale_dst || !c->sliceDir;
|
2012-10-01 00:09:45 +03:00
|
|
|
int i, ret;
|
2012-12-07 23:48:27 +03:00
|
|
|
const uint8_t *src2[4];
|
|
|
|
uint8_t *dst2[4];
|
2021-06-24 13:11:34 +02:00
|
|
|
int macro_height_src = isBayer(c->srcFormat) ? 2 : (1 << c->chrSrcVSubSample);
|
|
|
|
int macro_height_dst = isBayer(c->dstFormat) ? 2 : (1 << c->chrDstVSubSample);
|
2016-09-02 16:35:36 +02:00
|
|
|
// copy strides, so they can safely be modified
|
2016-12-23 22:14:59 +02:00
|
|
|
int srcStride2[4];
|
|
|
|
int dstStride2[4];
|
2016-09-02 16:35:36 +02:00
|
|
|
int srcSliceY_internal = srcSliceY;
|
2012-10-01 00:09:45 +03:00
|
|
|
|
2021-06-24 13:11:34 +02:00
|
|
|
if (!srcStride || !dstStride || !dstSlice || !srcSlice) {
|
2012-12-07 23:48:27 +03:00
|
|
|
av_log(c, AV_LOG_ERROR, "One of the input parameters to sws_scale() is NULL, please check the calling code\n");
|
2021-05-19 09:52:40 +02:00
|
|
|
return AVERROR(EINVAL);
|
2012-12-07 23:48:27 +03:00
|
|
|
}
|
2015-04-17 22:08:42 +02:00
|
|
|
|
2021-06-24 13:11:34 +02:00
|
|
|
if ((srcSliceY & (macro_height_src - 1)) ||
|
|
|
|
((srcSliceH & (macro_height_src - 1)) && srcSliceY + srcSliceH != c->srcH) ||
|
2024-02-17 02:34:25 +02:00
|
|
|
srcSliceY + srcSliceH > c->srcH ||
|
|
|
|
(isBayer(c->srcFormat) && srcSliceH <= 1)) {
|
2016-01-17 19:57:01 +02:00
|
|
|
av_log(c, AV_LOG_ERROR, "Slice parameters %d, %d are invalid\n", srcSliceY, srcSliceH);
|
|
|
|
return AVERROR(EINVAL);
|
|
|
|
}
|
|
|
|
|
2021-06-24 13:11:34 +02:00
|
|
|
if ((dstSliceY & (macro_height_dst - 1)) ||
|
|
|
|
((dstSliceH & (macro_height_dst - 1)) && dstSliceY + dstSliceH != c->dstH) ||
|
|
|
|
dstSliceY + dstSliceH > c->dstH) {
|
|
|
|
av_log(c, AV_LOG_ERROR, "Slice parameters %d, %d are invalid\n", dstSliceY, dstSliceH);
|
|
|
|
return AVERROR(EINVAL);
|
|
|
|
}
|
|
|
|
|
2021-05-19 11:55:22 +02:00
|
|
|
if (!check_image_pointers(srcSlice, c->srcFormat, srcStride)) {
|
|
|
|
av_log(c, AV_LOG_ERROR, "bad src image pointers\n");
|
|
|
|
return AVERROR(EINVAL);
|
|
|
|
}
|
2021-06-24 13:11:34 +02:00
|
|
|
if (!check_image_pointers((const uint8_t* const*)dstSlice, c->dstFormat, dstStride)) {
|
2021-05-19 11:55:22 +02:00
|
|
|
av_log(c, AV_LOG_ERROR, "bad dst image pointers\n");
|
|
|
|
return AVERROR(EINVAL);
|
|
|
|
}
|
|
|
|
|
2021-05-21 12:06:52 +02:00
|
|
|
// do not mess up sliceDir if we have a "trailing" 0-size slice
|
|
|
|
if (srcSliceH == 0)
|
|
|
|
return 0;
|
|
|
|
|
2021-05-19 10:12:15 +02:00
|
|
|
if (c->gamma_flag && c->cascaded_context[0])
|
2021-06-24 13:11:34 +02:00
|
|
|
return scale_gamma(c, srcSlice, srcStride, srcSliceY, srcSliceH,
|
|
|
|
dstSlice, dstStride, dstSliceY, dstSliceH);
|
2015-04-17 22:08:42 +02:00
|
|
|
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
if (c->cascaded_context[0] && srcSliceY == 0 &&
|
|
|
|
srcSliceH == sws_internal(c->cascaded_context[0])->srcH)
|
|
|
|
{
|
2021-06-24 13:11:34 +02:00
|
|
|
return scale_cascaded(c, srcSlice, srcStride, srcSliceY, srcSliceH,
|
|
|
|
dstSlice, dstStride, dstSliceY, dstSliceH);
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
}
|
2014-10-08 03:05:54 +03:00
|
|
|
|
2021-05-21 15:44:49 +02:00
|
|
|
if (!srcSliceY && (c->flags & SWS_BITEXACT) && c->dither == SWS_DITHER_ED && c->dither_error[0])
|
|
|
|
for (i = 0; i < 4; i++)
|
|
|
|
memset(c->dither_error[i], 0, sizeof(c->dither_error[0][0]) * (c->dstW+2));
|
|
|
|
|
2021-05-21 15:44:49 +02:00
|
|
|
if (usePal(c->srcFormat))
|
2024-10-04 16:44:19 +02:00
|
|
|
ff_update_palette(c, (const uint32_t *)srcSlice[1]);
|
2021-05-21 15:44:49 +02:00
|
|
|
|
2021-05-19 11:50:28 +02:00
|
|
|
memcpy(src2, srcSlice, sizeof(src2));
|
2021-06-24 13:11:34 +02:00
|
|
|
memcpy(dst2, dstSlice, sizeof(dst2));
|
2021-05-19 11:50:28 +02:00
|
|
|
memcpy(srcStride2, srcStride, sizeof(srcStride2));
|
|
|
|
memcpy(dstStride2, dstStride, sizeof(dstStride2));
|
2012-12-07 23:48:27 +03:00
|
|
|
|
2021-06-24 13:11:34 +02:00
|
|
|
if (frame_start && !scale_dst) {
|
2021-05-20 17:02:16 +02:00
|
|
|
if (srcSliceY != 0 && srcSliceY + srcSliceH != c->srcH) {
|
|
|
|
av_log(c, AV_LOG_ERROR, "Slices start in the middle!\n");
|
|
|
|
return AVERROR(EINVAL);
|
|
|
|
}
|
|
|
|
|
2021-05-20 17:03:18 +02:00
|
|
|
c->sliceDir = (srcSliceY == 0) ? 1 : -1;
|
2021-06-24 13:11:34 +02:00
|
|
|
} else if (scale_dst)
|
|
|
|
c->sliceDir = 1;
|
2012-10-01 00:09:45 +03:00
|
|
|
|
|
|
|
if (c->src0Alpha && !c->dst0Alpha && isALPHA(c->dstFormat)) {
|
|
|
|
uint8_t *base;
|
|
|
|
int x,y;
|
2021-05-19 14:45:34 +02:00
|
|
|
|
|
|
|
av_fast_malloc(&c->rgb0_scratch, &c->rgb0_scratch_allocated,
|
|
|
|
FFABS(srcStride[0]) * srcSliceH + 32);
|
|
|
|
if (!c->rgb0_scratch)
|
2013-04-28 20:31:16 +03:00
|
|
|
return AVERROR(ENOMEM);
|
|
|
|
|
2021-05-19 14:45:34 +02:00
|
|
|
base = srcStride[0] < 0 ? c->rgb0_scratch - srcStride[0] * (srcSliceH-1) :
|
|
|
|
c->rgb0_scratch;
|
2012-10-01 00:09:45 +03:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2013-04-28 20:28:42 +03:00
|
|
|
if (c->srcXYZ && !(c->dstXYZ && c->srcW==c->dstW && c->srcH==c->dstH)) {
|
|
|
|
uint8_t *base;
|
2021-05-19 14:45:34 +02:00
|
|
|
|
|
|
|
av_fast_malloc(&c->xyz_scratch, &c->xyz_scratch_allocated,
|
|
|
|
FFABS(srcStride[0]) * srcSliceH + 32);
|
|
|
|
if (!c->xyz_scratch)
|
2013-04-28 20:31:16 +03:00
|
|
|
return AVERROR(ENOMEM);
|
|
|
|
|
2021-05-19 14:45:34 +02:00
|
|
|
base = srcStride[0] < 0 ? c->xyz_scratch - srcStride[0] * (srcSliceH-1) :
|
|
|
|
c->xyz_scratch;
|
2013-04-28 20:28:42 +03:00
|
|
|
|
2024-10-07 19:38:03 +02:00
|
|
|
ff_xyz12Torgb48(c, base, srcStride[0], src2[0], srcStride[0], c->srcW, srcSliceH);
|
2013-04-28 20:28:42 +03:00
|
|
|
src2[0] = base;
|
|
|
|
}
|
|
|
|
|
2016-09-02 16:35:36 +02:00
|
|
|
if (c->sliceDir != 1) {
|
2012-10-01 00:09:45 +03:00
|
|
|
// slices go from bottom to top => we flip the image internally
|
2016-09-02 16:35:36 +02:00
|
|
|
for (i=0; i<4; i++) {
|
|
|
|
srcStride2[i] *= -1;
|
|
|
|
dstStride2[i] *= -1;
|
|
|
|
}
|
2012-10-01 00:09:45 +03:00
|
|
|
|
|
|
|
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];
|
|
|
|
|
2016-09-02 16:35:36 +02:00
|
|
|
srcSliceY_internal = c->srcH-srcSliceY-srcSliceH;
|
2012-10-01 00:09:45 +03:00
|
|
|
}
|
2016-09-02 16:35:36 +02:00
|
|
|
reset_ptr(src2, c->srcFormat);
|
|
|
|
reset_ptr((void*)dst2, c->dstFormat);
|
|
|
|
|
2024-02-19 22:45:06 +02:00
|
|
|
if (c->convert_unscaled) {
|
2021-06-24 13:11:34 +02:00
|
|
|
int offset = srcSliceY_internal;
|
|
|
|
int slice_h = srcSliceH;
|
|
|
|
|
2021-09-30 18:21:47 +02:00
|
|
|
// for dst slice scaling, offset the pointers to match the unscaled API
|
2021-06-24 13:11:34 +02:00
|
|
|
if (scale_dst) {
|
|
|
|
av_assert0(offset == 0);
|
|
|
|
for (i = 0; i < 4 && src2[i]; i++) {
|
|
|
|
if (!src2[i] || (i > 0 && usePal(c->srcFormat)))
|
|
|
|
break;
|
|
|
|
src2[i] += (dstSliceY >> ((i == 1 || i == 2) ? c->chrSrcVSubSample : 0)) * srcStride2[i];
|
|
|
|
}
|
2021-09-30 18:21:47 +02:00
|
|
|
|
|
|
|
for (i = 0; i < 4 && dst2[i]; i++) {
|
|
|
|
if (!dst2[i] || (i > 0 && usePal(c->dstFormat)))
|
|
|
|
break;
|
|
|
|
dst2[i] -= (dstSliceY >> ((i == 1 || i == 2) ? c->chrDstVSubSample : 0)) * dstStride2[i];
|
|
|
|
}
|
|
|
|
offset = dstSliceY;
|
2021-06-24 13:11:34 +02:00
|
|
|
slice_h = dstSliceH;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = c->convert_unscaled(c, src2, srcStride2, offset, slice_h,
|
2021-06-10 17:10:35 +02:00
|
|
|
dst2, dstStride2);
|
2021-09-30 18:21:47 +02:00
|
|
|
if (scale_dst)
|
|
|
|
dst2[0] += dstSliceY * dstStride2[0];
|
2021-06-24 13:11:34 +02:00
|
|
|
} else {
|
2024-09-26 17:06:26 +02:00
|
|
|
ret = ff_swscale(c, src2, srcStride2, srcSliceY_internal, srcSliceH,
|
|
|
|
dst2, dstStride2, dstSliceY, dstSliceH);
|
2021-06-24 13:11:34 +02:00
|
|
|
}
|
2012-10-01 00:09:45 +03:00
|
|
|
|
2013-07-14 06:30:38 +03:00
|
|
|
if (c->dstXYZ && !(c->srcXYZ && c->srcW==c->dstW && c->srcH==c->dstH)) {
|
2024-10-07 19:33:44 +02:00
|
|
|
uint8_t *dst;
|
2021-06-24 13:11:34 +02:00
|
|
|
|
|
|
|
if (scale_dst) {
|
2024-10-07 19:33:44 +02:00
|
|
|
dst = dst2[0];
|
2021-06-24 13:11:34 +02:00
|
|
|
} else {
|
|
|
|
int dstY = c->dstY ? c->dstY : srcSliceY + srcSliceH;
|
|
|
|
|
|
|
|
av_assert0(dstY >= ret);
|
|
|
|
av_assert0(ret >= 0);
|
|
|
|
av_assert0(c->dstH >= dstY);
|
2024-10-07 19:33:44 +02:00
|
|
|
dst = dst2[0] + (dstY - ret) * dstStride2[0];
|
2021-06-24 13:11:34 +02:00
|
|
|
}
|
2016-09-02 16:52:55 +02:00
|
|
|
|
2013-07-14 06:30:38 +03:00
|
|
|
/* replace on the same data */
|
2024-10-07 19:38:03 +02:00
|
|
|
ff_rgb48Toxyz12(c, dst, dstStride2[0], dst, dstStride2[0], c->dstW, ret);
|
2013-07-14 06:30:38 +03:00
|
|
|
}
|
|
|
|
|
2021-05-20 16:52:07 +02:00
|
|
|
/* reset slice direction at end of frame */
|
2021-06-24 13:11:34 +02:00
|
|
|
if ((srcSliceY_internal + srcSliceH == c->srcH) || scale_dst)
|
2021-05-20 16:52:07 +02:00
|
|
|
c->sliceDir = 0;
|
|
|
|
|
2012-10-01 00:09:45 +03:00
|
|
|
return ret;
|
|
|
|
}
|
2021-06-24 13:11:34 +02:00
|
|
|
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
void sws_frame_end(SwsContext *sws)
|
2021-06-24 13:11:34 +02:00
|
|
|
{
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
SwsInternal *c = sws_internal(sws);
|
2021-06-24 13:11:34 +02:00
|
|
|
av_frame_unref(c->frame_src);
|
|
|
|
av_frame_unref(c->frame_dst);
|
|
|
|
c->src_ranges.nb_ranges = 0;
|
|
|
|
}
|
|
|
|
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
int sws_frame_start(SwsContext *sws, AVFrame *dst, const AVFrame *src)
|
2021-06-24 13:11:34 +02:00
|
|
|
{
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
SwsInternal *c = sws_internal(sws);
|
2021-06-24 13:11:34 +02:00
|
|
|
int ret, allocated = 0;
|
|
|
|
|
|
|
|
ret = av_frame_ref(c->frame_src, src);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
if (!dst->buf[0]) {
|
|
|
|
dst->width = c->dstW;
|
|
|
|
dst->height = c->dstH;
|
|
|
|
dst->format = c->dstFormat;
|
|
|
|
|
|
|
|
ret = av_frame_get_buffer(dst, 0);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
allocated = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = av_frame_ref(c->frame_dst, dst);
|
|
|
|
if (ret < 0) {
|
|
|
|
if (allocated)
|
|
|
|
av_frame_unref(dst);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
int sws_send_slice(SwsContext *sws, unsigned int slice_start,
|
2021-06-24 13:11:34 +02:00
|
|
|
unsigned int slice_height)
|
|
|
|
{
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
SwsInternal *c = sws_internal(sws);
|
2021-06-24 13:11:34 +02:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = ff_range_add(&c->src_ranges, slice_start, slice_height);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
unsigned int sws_receive_slice_alignment(const SwsContext *sws)
|
2021-06-24 13:11:34 +02:00
|
|
|
{
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
SwsInternal *c = sws_internal(sws);
|
2021-07-12 12:31:14 +02:00
|
|
|
if (c->slice_ctx)
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
return sws_internal(c->slice_ctx[0])->dst_slice_align;
|
2021-07-12 12:31:14 +02:00
|
|
|
|
2021-06-24 13:11:34 +02:00
|
|
|
return c->dst_slice_align;
|
|
|
|
}
|
|
|
|
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
int sws_receive_slice(SwsContext *sws, unsigned int slice_start,
|
2021-06-24 13:11:34 +02:00
|
|
|
unsigned int slice_height)
|
|
|
|
{
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
SwsInternal *c = sws_internal(sws);
|
|
|
|
unsigned int align = sws_receive_slice_alignment(sws);
|
2021-06-24 13:11:34 +02:00
|
|
|
uint8_t *dst[4];
|
|
|
|
|
|
|
|
/* wait until complete input has been received */
|
|
|
|
if (!(c->src_ranges.nb_ranges == 1 &&
|
|
|
|
c->src_ranges.ranges[0].start == 0 &&
|
|
|
|
c->src_ranges.ranges[0].len == c->srcH))
|
|
|
|
return AVERROR(EAGAIN);
|
|
|
|
|
|
|
|
if ((slice_start > 0 || slice_height < c->dstH) &&
|
|
|
|
(slice_start % align || slice_height % align)) {
|
|
|
|
av_log(c, AV_LOG_ERROR,
|
|
|
|
"Incorrectly aligned output: %u/%u not multiples of %u\n",
|
|
|
|
slice_start, slice_height, align);
|
|
|
|
return AVERROR(EINVAL);
|
|
|
|
}
|
|
|
|
|
2021-07-12 12:31:14 +02:00
|
|
|
if (c->slicethread) {
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
int nb_jobs = c->nb_slice_ctx;
|
2021-07-12 12:31:14 +02:00
|
|
|
int ret = 0;
|
|
|
|
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
if (sws_internal(c->slice_ctx[0])->dither == SWS_DITHER_ED)
|
|
|
|
nb_jobs = 1;
|
|
|
|
|
2021-07-12 12:31:14 +02:00
|
|
|
c->dst_slice_start = slice_start;
|
|
|
|
c->dst_slice_height = slice_height;
|
|
|
|
|
|
|
|
avpriv_slicethread_execute(c->slicethread, nb_jobs, 0);
|
|
|
|
|
|
|
|
for (int i = 0; i < c->nb_slice_ctx; i++) {
|
|
|
|
if (c->slice_err[i] < 0) {
|
|
|
|
ret = c->slice_err[i];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(c->slice_err, 0, c->nb_slice_ctx * sizeof(*c->slice_err));
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2021-09-06 17:00:51 +02:00
|
|
|
for (int i = 0; i < FF_ARRAY_ELEMS(dst); i++) {
|
2024-06-09 16:31:28 +02:00
|
|
|
ptrdiff_t offset = c->frame_dst->linesize[i] * (ptrdiff_t)(slice_start >> c->chrDstVSubSample);
|
2021-09-06 17:00:51 +02:00
|
|
|
dst[i] = FF_PTR_ADD(c->frame_dst->data[i], offset);
|
2021-06-24 13:11:34 +02:00
|
|
|
}
|
|
|
|
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
return scale_internal(sws, (const uint8_t * const *)c->frame_src->data,
|
2021-06-24 13:11:34 +02:00
|
|
|
c->frame_src->linesize, 0, c->srcH,
|
|
|
|
dst, c->frame_dst->linesize, slice_start, slice_height);
|
|
|
|
}
|
|
|
|
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
int sws_scale_frame(SwsContext *sws, AVFrame *dst, const AVFrame *src)
|
2021-06-24 13:11:34 +02:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
ret = sws_frame_start(sws, dst, src);
|
2021-06-24 13:11:34 +02:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
ret = sws_send_slice(sws, 0, src->height);
|
2021-06-24 13:11:34 +02:00
|
|
|
if (ret >= 0)
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
ret = sws_receive_slice(sws, 0, dst->height);
|
2021-06-24 13:11:34 +02:00
|
|
|
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
sws_frame_end(sws);
|
2021-06-24 13:11:34 +02:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* swscale wrapper, so we don't need to export the SwsContext.
|
|
|
|
* Assumes planar YUV to be in YUV order instead of YVU.
|
|
|
|
*/
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
int attribute_align_arg sws_scale(SwsContext *sws,
|
2021-06-24 13:11:34 +02:00
|
|
|
const uint8_t * const srcSlice[],
|
|
|
|
const int srcStride[], int srcSliceY,
|
|
|
|
int srcSliceH, uint8_t *const dst[],
|
|
|
|
const int dstStride[])
|
|
|
|
{
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
SwsInternal *c = sws_internal(sws);
|
|
|
|
if (c->nb_slice_ctx) {
|
|
|
|
sws = c->slice_ctx[0];
|
|
|
|
c = sws_internal(sws);
|
|
|
|
}
|
2021-07-12 12:31:14 +02:00
|
|
|
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
return scale_internal(sws, srcSlice, srcStride, srcSliceY, srcSliceH,
|
2021-06-24 13:11:34 +02:00
|
|
|
dst, dstStride, 0, c->dstH);
|
|
|
|
}
|
2021-07-12 12:31:14 +02:00
|
|
|
|
|
|
|
void ff_sws_slice_worker(void *priv, int jobnr, int threadnr,
|
|
|
|
int nb_jobs, int nb_threads)
|
|
|
|
{
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
SwsInternal *parent = priv;
|
|
|
|
SwsContext *sws = parent->slice_ctx[threadnr];
|
|
|
|
SwsInternal *c = sws_internal(sws);
|
2021-07-12 12:31:14 +02:00
|
|
|
|
|
|
|
const int slice_height = FFALIGN(FFMAX((parent->dst_slice_height + nb_jobs - 1) / nb_jobs, 1),
|
|
|
|
c->dst_slice_align);
|
|
|
|
const int slice_start = jobnr * slice_height;
|
|
|
|
const int slice_end = FFMIN((jobnr + 1) * slice_height, parent->dst_slice_height);
|
|
|
|
int err = 0;
|
|
|
|
|
|
|
|
if (slice_end > slice_start) {
|
|
|
|
uint8_t *dst[4] = { NULL };
|
|
|
|
|
|
|
|
for (int i = 0; i < FF_ARRAY_ELEMS(dst) && parent->frame_dst->data[i]; i++) {
|
|
|
|
const int vshift = (i == 1 || i == 2) ? c->chrDstVSubSample : 0;
|
|
|
|
const ptrdiff_t offset = parent->frame_dst->linesize[i] *
|
2024-06-09 16:31:28 +02:00
|
|
|
(ptrdiff_t)((slice_start + parent->dst_slice_start) >> vshift);
|
2021-07-12 12:31:14 +02:00
|
|
|
|
|
|
|
dst[i] = parent->frame_dst->data[i] + offset;
|
|
|
|
}
|
|
|
|
|
swscale: rename SwsContext to SwsInternal
And preserve the public SwsContext as separate name. The motivation here
is that I want to turn SwsContext into a public struct, while keeping the
internal implementation hidden. Additionally, I also want to be able to
use multiple internal implementations, e.g. for GPU devices.
This commit does not include any functional changes. For the most part, it is
a simple rename. The only complications arise from the public facing API
functions, which preserve their current type (and hence require an additional
unwrapping step internally), and the checkasm test framework, which directly
accesses SwsInternal.
For consistency, the affected functions that need to maintain a distionction
have generally been changed to refer to the SwsContext as *sws, and the
SwsInternal as *c.
In an upcoming commit, I will provide a backing definition for the public
SwsContext, and update `sws_internal()` to dereference the internal struct
instead of merely casting it.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2024-10-09 19:44:33 +02:00
|
|
|
err = scale_internal(sws, (const uint8_t * const *)parent->frame_src->data,
|
2021-07-12 12:31:14 +02:00
|
|
|
parent->frame_src->linesize, 0, c->srcH,
|
|
|
|
dst, parent->frame_dst->linesize,
|
|
|
|
parent->dst_slice_start + slice_start, slice_end - slice_start);
|
|
|
|
}
|
|
|
|
|
|
|
|
parent->slice_err[threadnr] = err;
|
|
|
|
}
|