forked from captainjack64/hacktv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vbidata.c
executable file
·134 lines (109 loc) · 3.36 KB
/
vbidata.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
/* hacktv - Analogue video transmitter for the HackRF */
/*=======================================================================*/
/* Copyright 2018 Philip Heron <[email protected]> */
/* */
/* 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/>. */
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <math.h>
#include "vbidata.h"
static double _sinc(double x)
{
return(sin(M_PI * x) / (M_PI * x));
}
static double _raised_cosine(double x, double b, double t)
{
if(x == 0) return(1.0);
return sqrt(_sinc(x / t) * (cos(M_PI * b * x / t) / (1.0 - (4.0 * b * b * x * x / (t * t)))));
}
static size_t _vbidata_init(int16_t *lut, unsigned int swidth, unsigned int dwidth, int16_t level, int filter, double beta)
{
size_t l;
int b, x, lb;
l = 0;
for(lb = b = 0; b < swidth; b++)
{
double tt = (1.0 / swidth) * (0.5 + b);
for(x = 0; x < dwidth; x++)
{
double tv = (1.0 / dwidth) * (0.5 + x);
double tr = (tv - tt) * swidth;
double h = _raised_cosine(tr, beta, 1);
int16_t w = (int16_t) round(h * level);
if(w != 0)
{
if(lb != b)
{
if(lut)
{
*(lut++) = b;
*(lut++) = 0;
}
l += sizeof(int16_t) * 2;
lb = b;
}
if(lut)
{
*(lut++) = x;
*(lut++) = w;
}
l += sizeof(int16_t) * 2;
}
}
l += sizeof(int16_t) * 2;
}
if(lut)
{
*(lut++) = 0;
*(lut++) = 0;
}
l += sizeof(int16_t) * 2;
return(l);
}
int16_t *vbidata_init(unsigned int swidth, unsigned int dwidth, int16_t level, int filter, double beta)
{
size_t l;
int16_t *s;
/* Calculate the length of the lookup-table and allocate memory */
l = _vbidata_init(NULL, swidth, dwidth, level, filter, beta);
s = malloc(l);
if(!s)
{
return(NULL);
}
/* Generate the lookup-table and return */
_vbidata_init(s, swidth, dwidth, level, filter, beta);
return(s);
}
void vbidata_render_nrz(const int16_t *lut, const uint8_t *src, int offset, size_t length, int order, int16_t *dst, size_t step)
{
int b = offset;
int x = 0;
int bit;
bit = (b < 0 || b >= length ? 0 : (src[b >> 3] >> (order == VBIDATA_LSB_FIRST ? (b & 7) : 7 - (b & 7))) & 1);
for(; !(lut[0] == 0 && lut[1] == 0); lut += 2)
{
if(lut[1] == 0)
{
b = lut[0] + offset;
bit = (b < 0 || b >= length ? 0 : (src[b >> 3] >> (order == VBIDATA_LSB_FIRST ? (b & 7) : 7 - (b & 7))) & 1);
}
else if(bit)
{
x = lut[0];
dst[x * step] += lut[1];
}
}
}