Deleting files that seem to be useless.
This commit is contained in:
parent
d977df497f
commit
64cc465a9f
2478
src/hq2x3.dat
2478
src/hq2x3.dat
File diff suppressed because it is too large
Load Diff
2748
src/hq2x4.dat
2748
src/hq2x4.dat
File diff suppressed because it is too large
Load Diff
2913
src/hq3x.dat
2913
src/hq3x.dat
File diff suppressed because it is too large
Load Diff
212
src/hq4x.cpp
212
src/hq4x.cpp
|
@ -1,212 +0,0 @@
|
||||||
/*
|
|
||||||
* This file is part of the Advance project.
|
|
||||||
*
|
|
||||||
* Copyright (C) 2003 Andrea Mazzoleni
|
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License as published by
|
|
||||||
* the Free Software Foundation; either version 2 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, write to the Free Software
|
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
||||||
*
|
|
||||||
* In addition, as a special exception, Andrea Mazzoleni
|
|
||||||
* 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.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "System.h"
|
|
||||||
#include "portable.h"
|
|
||||||
|
|
||||||
#include "hq4x.h"
|
|
||||||
|
|
||||||
#include <assert.h>
|
|
||||||
|
|
||||||
/***************************************************************************/
|
|
||||||
/* HQ4x C implementation */
|
|
||||||
|
|
||||||
/*
|
|
||||||
* This effect is a rewritten implementation of the hq4x effect made by Maxim Stepin
|
|
||||||
*/
|
|
||||||
|
|
||||||
void hq4x_16_def(interp_uint16* dst0, interp_uint16* dst1, interp_uint16* dst2, interp_uint16* dst3, const interp_uint16* src0, const interp_uint16* src1, const interp_uint16* src2, unsigned count)
|
|
||||||
{
|
|
||||||
unsigned i;
|
|
||||||
|
|
||||||
for(i=0;i<count;++i) {
|
|
||||||
unsigned char mask;
|
|
||||||
|
|
||||||
interp_uint16 c[9];
|
|
||||||
|
|
||||||
c[1] = src0[0];
|
|
||||||
c[4] = src1[0];
|
|
||||||
c[7] = src2[0];
|
|
||||||
|
|
||||||
if (i>0) {
|
|
||||||
c[0] = src0[-1];
|
|
||||||
c[3] = src1[-1];
|
|
||||||
c[6] = src2[-1];
|
|
||||||
} else {
|
|
||||||
c[0] = c[1];
|
|
||||||
c[3] = c[4];
|
|
||||||
c[6] = c[7];
|
|
||||||
}
|
|
||||||
|
|
||||||
if (i<count-1) {
|
|
||||||
c[2] = src0[1];
|
|
||||||
c[5] = src1[1];
|
|
||||||
c[8] = src2[1];
|
|
||||||
} else {
|
|
||||||
c[2] = c[1];
|
|
||||||
c[5] = c[4];
|
|
||||||
c[8] = c[7];
|
|
||||||
}
|
|
||||||
|
|
||||||
mask = 0;
|
|
||||||
|
|
||||||
if (interp_16_diff(c[0], c[4]))
|
|
||||||
mask |= 1 << 0;
|
|
||||||
if (interp_16_diff(c[1], c[4]))
|
|
||||||
mask |= 1 << 1;
|
|
||||||
if (interp_16_diff(c[2], c[4]))
|
|
||||||
mask |= 1 << 2;
|
|
||||||
if (interp_16_diff(c[3], c[4]))
|
|
||||||
mask |= 1 << 3;
|
|
||||||
if (interp_16_diff(c[5], c[4]))
|
|
||||||
mask |= 1 << 4;
|
|
||||||
if (interp_16_diff(c[6], c[4]))
|
|
||||||
mask |= 1 << 5;
|
|
||||||
if (interp_16_diff(c[7], c[4]))
|
|
||||||
mask |= 1 << 6;
|
|
||||||
if (interp_16_diff(c[8], c[4]))
|
|
||||||
mask |= 1 << 7;
|
|
||||||
|
|
||||||
#define P(a, b) dst##b[a]
|
|
||||||
#define MUR interp_16_diff(c[1], c[5])
|
|
||||||
#define MDR interp_16_diff(c[5], c[7])
|
|
||||||
#define MDL interp_16_diff(c[7], c[3])
|
|
||||||
#define MUL interp_16_diff(c[3], c[1])
|
|
||||||
#define I1(p0) c[p0]
|
|
||||||
#define I2(i0, i1, p0, p1) interp_16_##i0##i1(c[p0], c[p1])
|
|
||||||
#define I3(i0, i1, i2, p0, p1, p2) interp_16_##i0##i1##i2(c[p0], c[p1], c[p2])
|
|
||||||
|
|
||||||
switch (mask) {
|
|
||||||
#include "hq4x.dat"
|
|
||||||
}
|
|
||||||
|
|
||||||
#undef P
|
|
||||||
#undef MUR
|
|
||||||
#undef MDR
|
|
||||||
#undef MDL
|
|
||||||
#undef MUL
|
|
||||||
#undef I1
|
|
||||||
#undef I2
|
|
||||||
#undef I3
|
|
||||||
|
|
||||||
src0 += 1;
|
|
||||||
src1 += 1;
|
|
||||||
src2 += 1;
|
|
||||||
dst0 += 4;
|
|
||||||
dst1 += 4;
|
|
||||||
dst2 += 4;
|
|
||||||
dst3 += 4;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void hq4x_32_def(interp_uint32* dst0, interp_uint32* dst1, interp_uint32* dst2, interp_uint32* dst3, const interp_uint32* src0, const interp_uint32* src1, const interp_uint32* src2, unsigned count)
|
|
||||||
{
|
|
||||||
unsigned i;
|
|
||||||
|
|
||||||
for(i=0;i<count;++i) {
|
|
||||||
unsigned char mask;
|
|
||||||
|
|
||||||
interp_uint32 c[9];
|
|
||||||
|
|
||||||
c[1] = src0[0];
|
|
||||||
c[4] = src1[0];
|
|
||||||
c[7] = src2[0];
|
|
||||||
|
|
||||||
if (i>0) {
|
|
||||||
c[0] = src0[-1];
|
|
||||||
c[3] = src1[-1];
|
|
||||||
c[6] = src2[-1];
|
|
||||||
} else {
|
|
||||||
c[0] = c[1];
|
|
||||||
c[3] = c[4];
|
|
||||||
c[6] = c[7];
|
|
||||||
}
|
|
||||||
|
|
||||||
if (i<count-1) {
|
|
||||||
c[2] = src0[1];
|
|
||||||
c[5] = src1[1];
|
|
||||||
c[8] = src2[1];
|
|
||||||
} else {
|
|
||||||
c[2] = c[1];
|
|
||||||
c[5] = c[4];
|
|
||||||
c[8] = c[7];
|
|
||||||
}
|
|
||||||
|
|
||||||
mask = 0;
|
|
||||||
|
|
||||||
if (interp_32_diff(c[0], c[4]))
|
|
||||||
mask |= 1 << 0;
|
|
||||||
if (interp_32_diff(c[1], c[4]))
|
|
||||||
mask |= 1 << 1;
|
|
||||||
if (interp_32_diff(c[2], c[4]))
|
|
||||||
mask |= 1 << 2;
|
|
||||||
if (interp_32_diff(c[3], c[4]))
|
|
||||||
mask |= 1 << 3;
|
|
||||||
if (interp_32_diff(c[5], c[4]))
|
|
||||||
mask |= 1 << 4;
|
|
||||||
if (interp_32_diff(c[6], c[4]))
|
|
||||||
mask |= 1 << 5;
|
|
||||||
if (interp_32_diff(c[7], c[4]))
|
|
||||||
mask |= 1 << 6;
|
|
||||||
if (interp_32_diff(c[8], c[4]))
|
|
||||||
mask |= 1 << 7;
|
|
||||||
|
|
||||||
#define P(a, b) dst##b[a]
|
|
||||||
#define MUR interp_32_diff(c[1], c[5])
|
|
||||||
#define MDR interp_32_diff(c[5], c[7])
|
|
||||||
#define MDL interp_32_diff(c[7], c[3])
|
|
||||||
#define MUL interp_32_diff(c[3], c[1])
|
|
||||||
#define I1(p0) c[p0]
|
|
||||||
#define I2(i0, i1, p0, p1) interp_32_##i0##i1(c[p0], c[p1])
|
|
||||||
#define I3(i0, i1, i2, p0, p1, p2) interp_32_##i0##i1##i2(c[p0], c[p1], c[p2])
|
|
||||||
|
|
||||||
switch (mask) {
|
|
||||||
#include "hq4x.dat"
|
|
||||||
}
|
|
||||||
|
|
||||||
#undef P
|
|
||||||
#undef MUR
|
|
||||||
#undef MDR
|
|
||||||
#undef MDL
|
|
||||||
#undef MUL
|
|
||||||
#undef I1
|
|
||||||
#undef I2
|
|
||||||
#undef I3
|
|
||||||
|
|
||||||
src0 += 1;
|
|
||||||
src1 += 1;
|
|
||||||
src2 += 1;
|
|
||||||
dst0 += 4;
|
|
||||||
dst1 += 4;
|
|
||||||
dst2 += 4;
|
|
||||||
dst3 += 4;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
4244
src/hq4x.dat
4244
src/hq4x.dat
File diff suppressed because it is too large
Load Diff
40
src/hq4x.h
40
src/hq4x.h
|
@ -1,40 +0,0 @@
|
||||||
/*
|
|
||||||
* This file is part of the Advance project.
|
|
||||||
*
|
|
||||||
* Copyright (C) 2003, 2004 Andrea Mazzoleni
|
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License as published by
|
|
||||||
* the Free Software Foundation; either version 2 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, write to the Free Software
|
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
||||||
*
|
|
||||||
* In addition, as a special exception, Andrea Mazzoleni
|
|
||||||
* 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 __HQ4X_H
|
|
||||||
#define __HQ4X_H
|
|
||||||
|
|
||||||
#include "interp.h"
|
|
||||||
|
|
||||||
void hq4x_16_def(interp_uint16* dst0, interp_uint16* dst1, interp_uint16* dst2, interp_uint16* dst3, const interp_uint16* src0, const interp_uint16* src1, const interp_uint16* src2, unsigned count);
|
|
||||||
void hq4x_32_def(interp_uint32* dst0, interp_uint32* dst1, interp_uint32* dst2, interp_uint32* dst3, const interp_uint32* src0, const interp_uint32* src1, const interp_uint32* src2, unsigned count);
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
1318
src/lq2x.dat
1318
src/lq2x.dat
File diff suppressed because it is too large
Load Diff
1574
src/lq2x3.dat
1574
src/lq2x3.dat
File diff suppressed because it is too large
Load Diff
1746
src/lq2x4.dat
1746
src/lq2x4.dat
File diff suppressed because it is too large
Load Diff
209
src/lq3x.cpp
209
src/lq3x.cpp
|
@ -1,209 +0,0 @@
|
||||||
/*
|
|
||||||
* This file is part of the Advance project.
|
|
||||||
*
|
|
||||||
* Copyright (C) 2003 Andrea Mazzoleni
|
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License as published by
|
|
||||||
* the Free Software Foundation; either version 2 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, write to the Free Software
|
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
||||||
*
|
|
||||||
* In addition, as a special exception, Andrea Mazzoleni
|
|
||||||
* 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.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "portable.h"
|
|
||||||
#include "System.h"
|
|
||||||
#include "lq3x.h"
|
|
||||||
|
|
||||||
#include <assert.h>
|
|
||||||
|
|
||||||
/***************************************************************************/
|
|
||||||
/* LQ3x C implementation */
|
|
||||||
|
|
||||||
/*
|
|
||||||
* This effect is derived from the hq3x effect made by Maxim Stepin
|
|
||||||
*/
|
|
||||||
|
|
||||||
void lq3x_16_def(interp_uint16* dst0, interp_uint16* dst1, interp_uint16* dst2, const interp_uint16* src0, const interp_uint16* src1, const interp_uint16* src2, unsigned count)
|
|
||||||
{
|
|
||||||
unsigned i;
|
|
||||||
|
|
||||||
for(i=0;i<count;++i) {
|
|
||||||
unsigned char mask;
|
|
||||||
|
|
||||||
interp_uint16 c[9];
|
|
||||||
|
|
||||||
c[1] = src0[0];
|
|
||||||
c[4] = src1[0];
|
|
||||||
c[7] = src2[0];
|
|
||||||
|
|
||||||
if (i>0) {
|
|
||||||
c[0] = src0[-1];
|
|
||||||
c[3] = src1[-1];
|
|
||||||
c[6] = src2[-1];
|
|
||||||
} else {
|
|
||||||
c[0] = c[1];
|
|
||||||
c[3] = c[4];
|
|
||||||
c[6] = c[7];
|
|
||||||
}
|
|
||||||
|
|
||||||
if (i<count-1) {
|
|
||||||
c[2] = src0[1];
|
|
||||||
c[5] = src1[1];
|
|
||||||
c[8] = src2[1];
|
|
||||||
} else {
|
|
||||||
c[2] = c[1];
|
|
||||||
c[5] = c[4];
|
|
||||||
c[8] = c[7];
|
|
||||||
}
|
|
||||||
|
|
||||||
mask = 0;
|
|
||||||
|
|
||||||
if (c[0] != c[4])
|
|
||||||
mask |= 1 << 0;
|
|
||||||
if (c[1] != c[4])
|
|
||||||
mask |= 1 << 1;
|
|
||||||
if (c[2] != c[4])
|
|
||||||
mask |= 1 << 2;
|
|
||||||
if (c[3] != c[4])
|
|
||||||
mask |= 1 << 3;
|
|
||||||
if (c[5] != c[4])
|
|
||||||
mask |= 1 << 4;
|
|
||||||
if (c[6] != c[4])
|
|
||||||
mask |= 1 << 5;
|
|
||||||
if (c[7] != c[4])
|
|
||||||
mask |= 1 << 6;
|
|
||||||
if (c[8] != c[4])
|
|
||||||
mask |= 1 << 7;
|
|
||||||
|
|
||||||
#define P(a, b) dst##b[a]
|
|
||||||
#define MUR (c[1] != c[5])
|
|
||||||
#define MDR (c[5] != c[7])
|
|
||||||
#define MDL (c[7] != c[3])
|
|
||||||
#define MUL (c[3] != c[1])
|
|
||||||
#define I1(p0) c[p0]
|
|
||||||
#define I2(i0, i1, p0, p1) interp_16_##i0##i1(c[p0], c[p1])
|
|
||||||
#define I3(i0, i1, i2, p0, p1, p2) interp_16_##i0##i1##i2(c[p0], c[p1], c[p2])
|
|
||||||
|
|
||||||
switch (mask) {
|
|
||||||
#include "lq3x.dat"
|
|
||||||
}
|
|
||||||
|
|
||||||
#undef P
|
|
||||||
#undef MUR
|
|
||||||
#undef MDR
|
|
||||||
#undef MDL
|
|
||||||
#undef MUL
|
|
||||||
#undef I1
|
|
||||||
#undef I2
|
|
||||||
#undef I3
|
|
||||||
|
|
||||||
src0 += 1;
|
|
||||||
src1 += 1;
|
|
||||||
src2 += 1;
|
|
||||||
dst0 += 3;
|
|
||||||
dst1 += 3;
|
|
||||||
dst2 += 3;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void lq3x_32_def(interp_uint32* dst0, interp_uint32* dst1, interp_uint32* dst2, const interp_uint32* src0, const interp_uint32* src1, const interp_uint32* src2, unsigned count)
|
|
||||||
{
|
|
||||||
unsigned i;
|
|
||||||
|
|
||||||
for(i=0;i<count;++i) {
|
|
||||||
unsigned char mask;
|
|
||||||
|
|
||||||
interp_uint32 c[9];
|
|
||||||
|
|
||||||
c[1] = src0[0];
|
|
||||||
c[4] = src1[0];
|
|
||||||
c[7] = src2[0];
|
|
||||||
|
|
||||||
if (i>0) {
|
|
||||||
c[0] = src0[-1];
|
|
||||||
c[3] = src1[-1];
|
|
||||||
c[6] = src2[-1];
|
|
||||||
} else {
|
|
||||||
c[0] = c[1];
|
|
||||||
c[3] = c[4];
|
|
||||||
c[6] = c[7];
|
|
||||||
}
|
|
||||||
|
|
||||||
if (i<count-1) {
|
|
||||||
c[2] = src0[1];
|
|
||||||
c[5] = src1[1];
|
|
||||||
c[8] = src2[1];
|
|
||||||
} else {
|
|
||||||
c[2] = c[1];
|
|
||||||
c[5] = c[4];
|
|
||||||
c[8] = c[7];
|
|
||||||
}
|
|
||||||
|
|
||||||
mask = 0;
|
|
||||||
|
|
||||||
if (c[0] != c[4])
|
|
||||||
mask |= 1 << 0;
|
|
||||||
if (c[1] != c[4])
|
|
||||||
mask |= 1 << 1;
|
|
||||||
if (c[2] != c[4])
|
|
||||||
mask |= 1 << 2;
|
|
||||||
if (c[3] != c[4])
|
|
||||||
mask |= 1 << 3;
|
|
||||||
if (c[5] != c[4])
|
|
||||||
mask |= 1 << 4;
|
|
||||||
if (c[6] != c[4])
|
|
||||||
mask |= 1 << 5;
|
|
||||||
if (c[7] != c[4])
|
|
||||||
mask |= 1 << 6;
|
|
||||||
if (c[8] != c[4])
|
|
||||||
mask |= 1 << 7;
|
|
||||||
|
|
||||||
#define P(a, b) dst##b[a]
|
|
||||||
#define MUR (c[1] != c[5])
|
|
||||||
#define MDR (c[5] != c[7])
|
|
||||||
#define MDL (c[7] != c[3])
|
|
||||||
#define MUL (c[3] != c[1])
|
|
||||||
#define I1(p0) c[p0]
|
|
||||||
#define I2(i0, i1, p0, p1) interp_32_##i0##i1(c[p0], c[p1])
|
|
||||||
#define I3(i0, i1, i2, p0, p1, p2) interp_32_##i0##i1##i2(c[p0], c[p1], c[p2])
|
|
||||||
|
|
||||||
switch (mask) {
|
|
||||||
#include "lq3x.dat"
|
|
||||||
}
|
|
||||||
|
|
||||||
#undef P
|
|
||||||
#undef MUR
|
|
||||||
#undef MDR
|
|
||||||
#undef MDL
|
|
||||||
#undef MUL
|
|
||||||
#undef I1
|
|
||||||
#undef I2
|
|
||||||
#undef I3
|
|
||||||
|
|
||||||
src0 += 1;
|
|
||||||
src1 += 1;
|
|
||||||
src2 += 1;
|
|
||||||
dst0 += 3;
|
|
||||||
dst1 += 3;
|
|
||||||
dst2 += 3;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
1759
src/lq3x.dat
1759
src/lq3x.dat
File diff suppressed because it is too large
Load Diff
40
src/lq3x.h
40
src/lq3x.h
|
@ -1,40 +0,0 @@
|
||||||
/*
|
|
||||||
* This file is part of the Advance project.
|
|
||||||
*
|
|
||||||
* Copyright (C) 2003, 2004 Andrea Mazzoleni
|
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License as published by
|
|
||||||
* the Free Software Foundation; either version 2 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, write to the Free Software
|
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
||||||
*
|
|
||||||
* In addition, as a special exception, Andrea Mazzoleni
|
|
||||||
* 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 __LQ3X_H
|
|
||||||
#define __LQ3X_H
|
|
||||||
|
|
||||||
#include "interp.h"
|
|
||||||
|
|
||||||
void lq3x_16_def(interp_uint16* dst0, interp_uint16* dst1, interp_uint16* dst2, const interp_uint16* src0, const interp_uint16* src1, const interp_uint16* src2, unsigned count);
|
|
||||||
void lq3x_32_def(interp_uint32* dst0, interp_uint32* dst1, interp_uint32* dst2, const interp_uint32* src0, const interp_uint32* src1, const interp_uint32* src2, unsigned count);
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
212
src/lq4x.cpp
212
src/lq4x.cpp
|
@ -1,212 +0,0 @@
|
||||||
/*
|
|
||||||
* This file is part of the Advance project.
|
|
||||||
*
|
|
||||||
* Copyright (C) 2003 Andrea Mazzoleni
|
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License as published by
|
|
||||||
* the Free Software Foundation; either version 2 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, write to the Free Software
|
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
||||||
*
|
|
||||||
* In addition, as a special exception, Andrea Mazzoleni
|
|
||||||
* 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.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "System.h"
|
|
||||||
#include "interp.h"
|
|
||||||
|
|
||||||
#include "lq4x.h"
|
|
||||||
|
|
||||||
#include <assert.h>
|
|
||||||
|
|
||||||
/***************************************************************************/
|
|
||||||
/* LQ4x C implementation */
|
|
||||||
|
|
||||||
/*
|
|
||||||
* This effect is derived from the hq4x effect made by Maxim Stepin
|
|
||||||
*/
|
|
||||||
|
|
||||||
void lq4x_16_def(interp_uint16* dst0, interp_uint16* dst1, interp_uint16* dst2, interp_uint16* dst3, const interp_uint16* src0, const interp_uint16* src1, const interp_uint16* src2, unsigned count)
|
|
||||||
{
|
|
||||||
unsigned i;
|
|
||||||
|
|
||||||
for(i=0;i<count;++i) {
|
|
||||||
unsigned char mask;
|
|
||||||
|
|
||||||
interp_uint16 c[9];
|
|
||||||
|
|
||||||
c[1] = src0[0];
|
|
||||||
c[4] = src1[0];
|
|
||||||
c[7] = src2[0];
|
|
||||||
|
|
||||||
if (i>0) {
|
|
||||||
c[0] = src0[-1];
|
|
||||||
c[3] = src1[-1];
|
|
||||||
c[6] = src2[-1];
|
|
||||||
} else {
|
|
||||||
c[0] = c[1];
|
|
||||||
c[3] = c[4];
|
|
||||||
c[6] = c[7];
|
|
||||||
}
|
|
||||||
|
|
||||||
if (i<count-1) {
|
|
||||||
c[2] = src0[1];
|
|
||||||
c[5] = src1[1];
|
|
||||||
c[8] = src2[1];
|
|
||||||
} else {
|
|
||||||
c[2] = c[1];
|
|
||||||
c[5] = c[4];
|
|
||||||
c[8] = c[7];
|
|
||||||
}
|
|
||||||
|
|
||||||
mask = 0;
|
|
||||||
|
|
||||||
if (c[0] != c[4])
|
|
||||||
mask |= 1 << 0;
|
|
||||||
if (c[1] != c[4])
|
|
||||||
mask |= 1 << 1;
|
|
||||||
if (c[2] != c[4])
|
|
||||||
mask |= 1 << 2;
|
|
||||||
if (c[3] != c[4])
|
|
||||||
mask |= 1 << 3;
|
|
||||||
if (c[5] != c[4])
|
|
||||||
mask |= 1 << 4;
|
|
||||||
if (c[6] != c[4])
|
|
||||||
mask |= 1 << 5;
|
|
||||||
if (c[7] != c[4])
|
|
||||||
mask |= 1 << 6;
|
|
||||||
if (c[8] != c[4])
|
|
||||||
mask |= 1 << 7;
|
|
||||||
|
|
||||||
#define P(a, b) dst##b[a]
|
|
||||||
#define MUR (c[1] != c[5])
|
|
||||||
#define MDR (c[5] != c[7])
|
|
||||||
#define MDL (c[7] != c[3])
|
|
||||||
#define MUL (c[3] != c[1])
|
|
||||||
#define I1(p0) c[p0]
|
|
||||||
#define I2(i0, i1, p0, p1) interp_16_##i0##i1(c[p0], c[p1])
|
|
||||||
#define I3(i0, i1, i2, p0, p1, p2) interp_16_##i0##i1##i2(c[p0], c[p1], c[p2])
|
|
||||||
|
|
||||||
switch (mask) {
|
|
||||||
#include "lq4x.dat"
|
|
||||||
}
|
|
||||||
|
|
||||||
#undef P
|
|
||||||
#undef MUR
|
|
||||||
#undef MDR
|
|
||||||
#undef MDL
|
|
||||||
#undef MUL
|
|
||||||
#undef I1
|
|
||||||
#undef I2
|
|
||||||
#undef I3
|
|
||||||
|
|
||||||
src0 += 1;
|
|
||||||
src1 += 1;
|
|
||||||
src2 += 1;
|
|
||||||
dst0 += 4;
|
|
||||||
dst1 += 4;
|
|
||||||
dst2 += 4;
|
|
||||||
dst3 += 4;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void lq4x_32_def(interp_uint32* dst0, interp_uint32* dst1, interp_uint32* dst2, interp_uint32* dst3, const interp_uint32* src0, const interp_uint32* src1, const interp_uint32* src2, unsigned count)
|
|
||||||
{
|
|
||||||
unsigned i;
|
|
||||||
|
|
||||||
for(i=0;i<count;++i) {
|
|
||||||
unsigned char mask;
|
|
||||||
|
|
||||||
interp_uint32 c[9];
|
|
||||||
|
|
||||||
c[1] = src0[0];
|
|
||||||
c[4] = src1[0];
|
|
||||||
c[7] = src2[0];
|
|
||||||
|
|
||||||
if (i>0) {
|
|
||||||
c[0] = src0[-1];
|
|
||||||
c[3] = src1[-1];
|
|
||||||
c[6] = src2[-1];
|
|
||||||
} else {
|
|
||||||
c[0] = c[1];
|
|
||||||
c[3] = c[4];
|
|
||||||
c[6] = c[7];
|
|
||||||
}
|
|
||||||
|
|
||||||
if (i<count-1) {
|
|
||||||
c[2] = src0[1];
|
|
||||||
c[5] = src1[1];
|
|
||||||
c[8] = src2[1];
|
|
||||||
} else {
|
|
||||||
c[2] = c[1];
|
|
||||||
c[5] = c[4];
|
|
||||||
c[8] = c[7];
|
|
||||||
}
|
|
||||||
|
|
||||||
mask = 0;
|
|
||||||
|
|
||||||
if (c[0] != c[4])
|
|
||||||
mask |= 1 << 0;
|
|
||||||
if (c[1] != c[4])
|
|
||||||
mask |= 1 << 1;
|
|
||||||
if (c[2] != c[4])
|
|
||||||
mask |= 1 << 2;
|
|
||||||
if (c[3] != c[4])
|
|
||||||
mask |= 1 << 3;
|
|
||||||
if (c[5] != c[4])
|
|
||||||
mask |= 1 << 4;
|
|
||||||
if (c[6] != c[4])
|
|
||||||
mask |= 1 << 5;
|
|
||||||
if (c[7] != c[4])
|
|
||||||
mask |= 1 << 6;
|
|
||||||
if (c[8] != c[4])
|
|
||||||
mask |= 1 << 7;
|
|
||||||
|
|
||||||
#define P(a, b) dst##b[a]
|
|
||||||
#define MUR (c[1] != c[5])
|
|
||||||
#define MDR (c[5] != c[7])
|
|
||||||
#define MDL (c[7] != c[3])
|
|
||||||
#define MUL (c[3] != c[1])
|
|
||||||
#define I1(p0) c[p0]
|
|
||||||
#define I2(i0, i1, p0, p1) interp_32_##i0##i1(c[p0], c[p1])
|
|
||||||
#define I3(i0, i1, i2, p0, p1, p2) interp_32_##i0##i1##i2(c[p0], c[p1], c[p2])
|
|
||||||
|
|
||||||
switch (mask) {
|
|
||||||
#include "lq4x.dat"
|
|
||||||
}
|
|
||||||
|
|
||||||
#undef P
|
|
||||||
#undef MUR
|
|
||||||
#undef MDR
|
|
||||||
#undef MDL
|
|
||||||
#undef MUL
|
|
||||||
#undef I1
|
|
||||||
#undef I2
|
|
||||||
#undef I3
|
|
||||||
|
|
||||||
src0 += 1;
|
|
||||||
src1 += 1;
|
|
||||||
src2 += 1;
|
|
||||||
dst0 += 4;
|
|
||||||
dst1 += 4;
|
|
||||||
dst2 += 4;
|
|
||||||
dst3 += 4;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
2506
src/lq4x.dat
2506
src/lq4x.dat
File diff suppressed because it is too large
Load Diff
40
src/lq4x.h
40
src/lq4x.h
|
@ -1,40 +0,0 @@
|
||||||
/*
|
|
||||||
* This file is part of the Advance project.
|
|
||||||
*
|
|
||||||
* Copyright (C) 2003, 2004 Andrea Mazzoleni
|
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License as published by
|
|
||||||
* the Free Software Foundation; either version 2 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, write to the Free Software
|
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
||||||
*
|
|
||||||
* In addition, as a special exception, Andrea Mazzoleni
|
|
||||||
* 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 __LQ4X_H
|
|
||||||
#define __LQ4X_H
|
|
||||||
|
|
||||||
#include "interp.h"
|
|
||||||
|
|
||||||
void lq4x_16_def(interp_uint16* dst0, interp_uint16* dst1, interp_uint16* dst2, interp_uint16* dst3, const interp_uint16* src0, const interp_uint16* src1, const interp_uint16* src2, unsigned count);
|
|
||||||
void lq4x_32_def(interp_uint32* dst0, interp_uint32* dst1, interp_uint32* dst2, interp_uint32* dst3, const interp_uint32* src0, const interp_uint32* src1, const interp_uint32* src2, unsigned count);
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
Loading…
Reference in New Issue