snes9x/filter/xbrz.h

96 lines
4.4 KiB
C
Raw Normal View History

2014-06-24 19:53:00 +00:00
// ****************************************************************************
// * This file is part of the HqMAME project. It is distributed under *
2015-01-29 20:42:32 +00:00
// * GNU General Public License: http://www.gnu.org/licenses/gpl-3.0 *
2014-06-24 19:53:00 +00:00
// * Copyright (C) Zenju (zenju AT gmx DOT de) - All Rights Reserved *
// * *
// * Additionally and as a special exception, the author gives permission *
// * to link the code of this program with the MAME library (or with modified *
// * versions of MAME that use the same license as MAME), and distribute *
// * linked combinations including the two. You must obey the GNU General *
// * Public License in all respects for all of the code used other than MAME. *
// * If you modify this file, you may extend this exception to your version *
// * of the file, but you are not obligated to do so. If you do not wish to *
// * do so, delete this exception statement from your version. *
// ****************************************************************************
#ifndef XBRZ_HEADER_3847894708239054
#define XBRZ_HEADER_3847894708239054
#include "port.h"
//#include <cstddef> //size_t
//#include <cstdint> //uint32_t
#include <limits>
#include "xbrz-config.h"
namespace xbrz
{
/*
-------------------------------------------------------------------------
| xBRZ: "Scale by rules" - high quality image upscaling filter by Zenju |
-------------------------------------------------------------------------
using a modified approach of xBR:
http://board.byuu.org/viewtopic.php?f=10&t=2248
- new rule set preserving small image features
2015-01-29 20:42:32 +00:00
- highly optimized for performance
- support alpha channel
2014-06-24 19:53:00 +00:00
- support multithreading
2015-01-29 20:42:32 +00:00
- support 64-bit architectures
2014-06-24 19:53:00 +00:00
- support processing image slices
2016-10-07 19:39:32 +00:00
- support scaling up to 6xBRZ
2014-06-24 19:53:00 +00:00
*/
2016-10-07 19:39:32 +00:00
enum class ColorFormat //from high bits -> low bits, 8 bit per channel
2015-01-29 20:42:32 +00:00
{
RGB, //8 bit for each red, green, blue, upper 8 bits unused
2016-10-07 19:39:32 +00:00
ARGB, //including alpha channel, BGRA byte order on little-endian machines
2015-01-29 20:42:32 +00:00
};
2014-06-24 19:53:00 +00:00
/*
-> map source (srcWidth * srcHeight) to target (scale * width x scale * height) image, optionally processing a half-open slice of rows [yFirst, yLast) only
-> support for source/target pitch in bytes!
2015-01-29 20:42:32 +00:00
-> if your emulator changes only a few image slices during each cycle (e.g. DOSBox) then there's no need to run xBRZ on the complete image:
2014-06-24 19:53:00 +00:00
Just make sure you enlarge the source image slice by 2 rows on top and 2 on bottom (this is the additional range the xBRZ algorithm is using during analysis)
2015-01-29 20:42:32 +00:00
Caveat: If there are multiple changed slices, make sure they do not overlap after adding these additional rows in order to avoid a memory race condition
in the target image data if you are using multiple threads for processing each enlarged slice!
2014-06-24 19:53:00 +00:00
THREAD-SAFETY: - parts of the same image may be scaled by multiple threads as long as the [yFirst, yLast) ranges do not overlap!
2016-10-07 19:39:32 +00:00
- there is a minor inefficiency for the first row of a slice, so avoid processing single rows only; suggestion: process 8-16 rows at least
2014-06-24 19:53:00 +00:00
*/
2016-10-07 19:39:32 +00:00
void scale(size_t factor, //valid range: 2 - 6
2014-06-24 19:53:00 +00:00
const uint32_t* src, uint32_t* trg, int srcWidth, int srcHeight,
2015-01-29 20:42:32 +00:00
ColorFormat colFmt,
2014-06-24 19:53:00 +00:00
const ScalerCfg& cfg = ScalerCfg(),
int yFirst = 0, int yLast = std::numeric_limits<int>::max()); //slice of source image
void nearestNeighborScale(const uint32_t* src, int srcWidth, int srcHeight,
uint32_t* trg, int trgWidth, int trgHeight);
enum SliceType
{
NN_SCALE_SLICE_SOURCE,
NN_SCALE_SLICE_TARGET,
};
void nearestNeighborScale(const uint32_t* src, int srcWidth, int srcHeight, int srcPitch, //pitch in bytes!
uint32_t* trg, int trgWidth, int trgHeight, int trgPitch,
SliceType st, int yFirst, int yLast);
//parameter tuning
2015-01-29 20:42:32 +00:00
bool equalColorTest(uint32_t col1, uint32_t col2, ColorFormat colFmt, double luminanceWeight, double equalColorTolerance);
2014-06-24 19:53:00 +00:00
//########################### implementation ###########################
inline
void nearestNeighborScale(const uint32_t* src, int srcWidth, int srcHeight,
uint32_t* trg, int trgWidth, int trgHeight)
{
nearestNeighborScale(src, srcWidth, srcHeight, srcWidth * sizeof(uint32_t),
trg, trgWidth, trgHeight, trgWidth * sizeof(uint32_t),
NN_SCALE_SLICE_TARGET, 0, trgHeight);
}
}
#endif