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 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327
|
/* hacktv - Analogue video transmitter for the HackRF */
/*=======================================================================*/
/* Copyright 2020 Philip Heron <phil@sanslogic.co.uk> */
/* */
/* 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 3 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, see <http://www.gnu.org/licenses/>. */
/* -=== VITS test signal inserter ===- */
/* TODO: The phase of the chrominance signal is likely wrong.
*
* The rise and fall shape of the five-riser staircase is specified as
* "shaped by a Thomson filter (or similar network) with a transfer function
* modulus having its first zero at 4.43 MHz to restrict the amplitude of
* components of the luminance signal in the vicinity of the colour
* sub-carrier". This code uses the same shape as the other parts:
* "derived from the shaping network of the sine-squared pulse".
*/
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include "video.h"
static const double _bursts_625[6] = {
0.5e6,
1.0e6,
2.0e6,
4.0e6,
4.8e6,
5.8e6,
};
static const double _bursts_525[6] = {
0.50e6,
1.00e6,
2.00e6,
3.00e6,
3.58e6,
4.20e6,
};
static double _win(double t, double left, double width, double rise, double amplitude)
{
double r, a;
width -= rise;
t -= left - rise / 2;
if(t <= 0)
{
r = 0.0;
}
else if(t < rise)
{
a = t / rise * M_PI / 2;
r = pow(sin(a), 2);
}
else if(t < rise + width)
{
r = 1.0;
}
else if(t < rise + width + rise)
{
a = (t - width) / rise * M_PI / 2;
r = pow(sin(a), 2);
}
else
{
r = 0.0;
}
return(r * amplitude);
}
static double _pulse(double t, double position, double width, double amplitude)
{
double a;
t -= position - width;
if(t <= 0 || t >= width * 2)
{
return(0);
}
a = t / (width * 2) * M_PI;
return(pow(sin(a), 2) * amplitude);
}
static int _init_625(vits_t *s, unsigned int sample_rate, int width, int16_t level)
{
int i, x, b;
double r, c, t;
double ts, h;
double bs[6];
/* Setup timing */
ts = 1.0 / 25 / 625;
h = ts / 32;
ts = ts / width;
for(b = 0; b < 6; b++)
{
bs[b] = 2.0 * M_PI * _bursts_625[b];
}
s->lines = 625;
s->width = width;
for(i = 0; i < 4; i++)
{
s->line[i] = malloc(sizeof(int16_t) * 2 * width);
if(!s->line[i])
{
perror("malloc");
vits_free(s);
return(-1);
}
for(x = 0; x < width; x++)
{
t = ts * x;
r = 0.0;
c = 0.0;
switch(i)
{
case 0: /* Line 17 */
r += _win(t, 6 * h, 5 * h, 200e-9, 0.70);
r += _pulse(t, 13 * h, 200e-9, 0.70);
r += _pulse(t, 16 * h, 2000e-9, 0.70 / 2);
c += _pulse(t, 16 * h, 2000e-9, 0.70 / 2);
r += _win(t, 20 * h, 2 * h, 200e-9, 0.14);
r += _win(t, 22 * h, 2 * h, 200e-9, 0.28);
r += _win(t, 24 * h, 2 * h, 200e-9, 0.42);
r += _win(t, 26 * h, 2 * h, 200e-9, 0.56);
r += _win(t, 28 * h, 3 * h, 200e-9, 0.70);
break;
case 1: /* Line 18 */
r += _win(t, 6 * h, 25 * h, 200e-9, 0.35);
r += _win(t, 6 * h, 2 * h, 200e-9, 0.21);
r += _win(t, 8 * h, 2 * h, 200e-9, -0.21);
for(b = 0; b < 6; b++)
{
r += _win(t, (12 + 3 * b) * h, 3 * h, 200e-9, 0.21)
* sin((t - (12 + 3 * b) * h) * bs[b]);
}
break;
case 2: /* Line 330 */
r += _win(t, 6 * h, 5 * h, 200e-9, 0.70);
r += _pulse(t, 13 * h, 200e-9, 0.70);
c += _win(t, 15 * h, 15 * h, 1e-6, 0.28 / 2);
r += _win(t, 20 * h, 2 * h, 200e-9, 0.14);
r += _win(t, 22 * h, 2 * h, 200e-9, 0.28);
r += _win(t, 24 * h, 2 * h, 200e-9, 0.42);
r += _win(t, 26 * h, 2 * h, 200e-9, 0.56);
r += _win(t, 28 * h, 3 * h, 200e-9, 0.70);
break;
case 3: /* Line 331 */
r += _win(t, 6 * h, 25 * h, 200e-9, 0.35);
c += _win(t, 7 * h, 7 * h, 1e-6, 0.70 / 2);
c += _win(t, 17 * h, 13 * h, 1e-6, 0.42 / 2);
break;
}
s->line[i][x * 2 + 0] = lround(r / 0.7 * level);
s->line[i][x * 2 + 1] = lround(c / 0.7 * level);
}
}
return(0);
}
static int _init_525(vits_t *s, unsigned int sample_rate, int width, int16_t level)
{
int i, x, b;
double r, c, t;
double ts, h;
double bs[6];
/* Setup timing */
ts = 1001.0 / 30000 / 525;
h = ts / 128;
ts = ts / width;
for(b = 0; b < 6; b++)
{
bs[b] = 2.0 * M_PI * _bursts_525[b];
}
s->lines = 525;
s->width = width;
for(i = 0; i < 2; i++)
{
s->line[i] = malloc(sizeof(int16_t) * 2 * width);
if(!s->line[i])
{
perror("malloc");
vits_free(s);
return(-1);
}
for(x = 0; x < width; x++)
{
t = ts * x;
r = 0.0;
c = 0.0;
switch(i)
{
case 0: /* Line 17 */
r += _win(t, 24 * h, 36 * h, 125e-9, 100);
r += _pulse(t, 68 * h, 250e-9, 100);
r += _pulse(t, 75 * h, 1570e-9, 100 / 2);
c += _pulse(t, 75 * h, 1570e-9, 100 / 2);
r += _win(t, 92 * h, 6 * h, 250e-9, 18);
r += _win(t, 98 * h, 6 * h, 250e-9, 36);
r += _win(t, 104 * h, 6 * h, 250e-9, 54);
r += _win(t, 110 * h, 6 * h, 250e-9, 72);
r += _win(t, 116 * h, 8 * h, 250e-9, 90);
c += _win(t, 84 * h, 38 * h, 400e-9, 40 / 2);
break;
case 1: /* Line 280 */
r += _win(t, 24 * h, 8 * h, 125e-9, 100);
r += _win(t, 32 * h, 92 * h, 125e-9, 50);
r += _win(t, 36 * h, 12 * h, 250e-9, 50 / 2)
* sin((t - 36 * h) * bs[0]);
for(b = 1; b < 6; b++)
{
r += _win(t, (40 + 8 * b) * h, 8 * h, 250e-9, 50 / 2)
* sin((t - (40 + 8 * b) * h) * bs[b]);
}
c += _win(t, 92 * h, 8 * h, 400e-9, 20 / 2);
c += _win(t, 100 * h, 8 * h, 400e-9, 40 / 2);
c += _win(t, 108 * h, 12 * h, 400e-9, 80 / 2);
break;
}
s->line[i][x * 2 + 0] = lround(r / 100 * level);
s->line[i][x * 2 + 1] = lround(c / 100 * level);
}
}
return(0);
}
int vits_init(vits_t *s, unsigned int sample_rate, int width, int lines, int16_t level)
{
memset(s, 0, sizeof(vits_t));
if(lines == 625) return(_init_625(s, sample_rate, width, level));
else if(lines == 525) return(_init_525(s, sample_rate, width, level));
return(-1);
}
void vits_free(vits_t *s)
{
int i;
for(i = 0; i < 4; i++)
{
free(s->line[i]);
}
memset(s, 0, sizeof(vits_t));
}
int vits_render(vid_t *s, void *arg, int nlines, vid_line_t **lines)
{
vits_t *v = arg;
int x, i = -1;
int16_t *lut_i;
vid_line_t *l = lines[0];
if(v->lines == 625)
{
if(l->line == 17 || l->line == 18) i = l->line - 17;
else if(l->line == 330 || l->line == 331) i = l->line - 330 + 2;
}
else if(v->lines == 525)
{
if(l->line == 17) i = l->line - 17;
else if(l->line == 280) i = l->line - 280 + 1;
}
if(i < 0) return(0);
if(!v->line[i]) return(0);
vid_get_colour_subcarrier(s, l->frame, l->line, NULL, &lut_i, NULL);
for(x = 0; x < s->width; x++)
{
l->output[x * 2] += v->line[i][x * 2 + 0];
l->output[x * 2] += (lut_i[x] * v->line[i][x * 2 + 1]) >> 15;
}
l->vbialloc = 1;
return(1);
}
|