-
Notifications
You must be signed in to change notification settings - Fork 30
/
crt_nesrgb.c
172 lines (149 loc) · 5.3 KB
/
crt_nesrgb.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
/*****************************************************************************/
/*
* NTSC/CRT - integer-only NTSC video signal encoding / decoding emulation
*
* by EMMIR 2018-2023
* modifications for Mesen by Persune
* https://github.com/LMP88959/NTSC-CRT
*
* YouTube: https://www.youtube.com/@EMMIR_KC/videos
* Discord: https://discord.com/invite/hdYctSmyQJ
*/
/*****************************************************************************/
#include "crt_core.h"
#if (CRT_SYSTEM == CRT_SYSTEM_NESRGB)
#include <stdlib.h>
#include <string.h>
/* this function is an optimization
* basically factoring out the field setup since as long as CRT->analog
* does not get cleared, all of this should remain the same every update
*/
static void
setup_field(struct CRT *v)
{
int n;
for (n = 0; n < CRT_VRES; n++) {
int t; /* time */
signed char *line = &v->analog[n * CRT_HRES];
t = LINE_BEG;
/* vertical sync scanlines */
if (n >= 259 && n <= CRT_VRES) {
while (t < SYNC_BEG) line[t++] = BLANK_LEVEL; /* FP */
while (t < PPUpx2pos(327)) line[t++] = SYNC_LEVEL; /* sync separator */
while (t < CRT_HRES) line[t++] = BLANK_LEVEL; /* blank */
} else {
/* prerender/postrender/video scanlines */
while (t < SYNC_BEG) line[t++] = BLANK_LEVEL; /* FP */
while (t < BW_BEG) line[t++] = SYNC_LEVEL; /* SYNC */
while (t < CRT_HRES) line[t++] = BLANK_LEVEL;
}
}
}
extern void
crt_modulate(struct CRT *v, struct NTSC_SETTINGS *s)
{
int x, y, xo, yo;
int destw = AV_LEN;
int desth = CRT_LINES;
int n;
int iccf[CRT_CC_VPER][CRT_CC_SAMPLES];
int ccmodI[CRT_CC_VPER][CRT_CC_SAMPLES]; /* color phase for mod */
int ccmodQ[CRT_CC_VPER][CRT_CC_SAMPLES]; /* color phase for mod */
int ccburst[CRT_CC_VPER][CRT_CC_SAMPLES]; /* color phase for burst */
int sn, cs;
int bpp;
if (!s->field_initialized) {
setup_field(v);
s->field_initialized = 1;
}
for (y = 0; y < CRT_CC_VPER; y++) {
xo = (y + s->dot_crawl_offset) * (360 / CRT_CC_VPER);
for (x = 0; x < CRT_CC_SAMPLES; x++) {
n = xo + x * (360 / CRT_CC_SAMPLES);
crt_sincos14(&sn, &cs, (s->hue + 90 + n + 33) * 8192 / 180);
ccburst[y][x] = sn >> 10;
crt_sincos14(&sn, &cs, n * 8192 / 180);
ccmodI[y][x] = sn >> 10;
crt_sincos14(&sn, &cs, (n - 90) * 8192 / 180);
ccmodQ[y][x] = sn >> 10;
}
}
bpp = crt_bpp4fmt(s->format);
if (bpp == 0) {
return; /* just to be safe */
}
xo = AV_BEG + s->xoffset;
yo = CRT_TOP + s->yoffset;
/* align signal */
xo = (xo & ~3);
for (y = 0; y < desth; y++) {
signed char *line;
int t, cb;
int sy = (y * s->h) / desth;
if (sy >= s->h) sy = s->h;
if (sy < 0) sy = 0;
n = (y + yo);
line = &v->analog[n * CRT_HRES];
n %= CRT_CC_VPER;
/* CB_CYCLES of color burst at 3.579545 Mhz */
for (t = CB_BEG; t < CB_BEG + (CB_CYCLES * CRT_CB_FREQ); t++) {
cb = ccburst[n][t % CRT_CC_SAMPLES];
line[t] = (BLANK_LEVEL + (cb * BURST_LEVEL)) >> 5;
iccf[n][t % CRT_CC_SAMPLES] = line[t];
}
sy *= s->w;
for (x = 0; x < destw; x++) {
int fy, fi, fq;
int rA, gA, bA;
const unsigned char *pix;
int ire; /* composite signal */
int xoff;
pix = s->data + ((((x * s->w) / destw) + sy) * bpp);
switch (s->format) {
case CRT_PIX_FORMAT_RGB:
case CRT_PIX_FORMAT_RGBA:
rA = pix[0];
gA = pix[1];
bA = pix[2];
break;
case CRT_PIX_FORMAT_BGR:
case CRT_PIX_FORMAT_BGRA:
rA = pix[2];
gA = pix[1];
bA = pix[0];
break;
case CRT_PIX_FORMAT_ARGB:
rA = pix[1];
gA = pix[2];
bA = pix[3];
break;
case CRT_PIX_FORMAT_ABGR:
rA = pix[3];
gA = pix[2];
bA = pix[1];
break;
default:
rA = gA = bA = 0;
break;
}
/* RGB to YIQ */
fy = (19595 * rA + 38470 * gA + 7471 * bA) >> 14;
fi = (39059 * rA - 18022 * gA - 21103 * bA) >> 14;
fq = (13894 * rA - 34275 * gA + 20382 * bA) >> 14;
ire = BLACK_LEVEL + v->black_point;
xoff = (x + xo) % CRT_CC_SAMPLES;
fi = fi * ccmodI[n][xoff] >> 4;
fq = fq * ccmodQ[n][xoff] >> 4;
ire += (fy + fi + fq) * (WHITE_LEVEL * v->white_point / 100) >> 10;
if (ire < 0) ire = 0;
if (ire > 110) ire = 110;
v->analog[(x + xo) + (y + yo) * CRT_HRES] = ire;
}
}
for (n = 0; n < CRT_CC_VPER; n++) {
for (x = 0; x < CRT_CC_SAMPLES; x++) {
v->ccf[n][x] = iccf[n][x] << 7;
}
}
}
#endif