slowrx/video.c

429 wiersze
14 KiB
C
Czysty Zwykły widok Historia

2011-07-07 14:09:57 +00:00
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
2011-07-20 17:54:00 +00:00
#include <string.h>
2011-07-07 14:09:57 +00:00
#include <fftw3.h>
#include <gtk/gtk.h>
#include "common.h"
/* Demodulate the video signal
* Mode: M1, M2, S1, S2, R72, R36...
* Rate: exact sampling rate used
* Skip: number of PCM samples to skip at the beginning (for sync phase adjustment)
* Adaptive: false = Static window size, true = Adapt window to noise
* Redraw: false = Apply windowing and FFT to the signal, true = Redraw from cached FFT data
*/
2011-07-25 12:05:03 +00:00
int GetVideo(int Mode, double Rate, int Skip, int Adaptive, int Redraw) {
2011-07-07 14:09:57 +00:00
unsigned int MaxBin = 0;
unsigned int VideoPlusNoiseBins=0, ReceiverBins=0, NoiseOnlyBins=0;
int i=0, j=0;
unsigned int n=0;
2011-07-19 19:29:14 +00:00
int Length=0, Sample=0;
2011-07-25 12:05:03 +00:00
int FFTLen=0, WinLength=0;
2011-07-07 14:09:57 +00:00
int samplesread = 0, WinIdx = 0, LineNum = 0;
int x = 0, y = 0, prevline=0, tx=0, ty=0, MaxPcm=0;
int HannLens[7] = { 64, 96, 128, 256, 512, 1024, 2048 };
double Hann[7][2048] = {{0}};
double t=0, Freq = 0, NextPixel = 0, NextSNR = 0, NextFFT = 0;
2011-07-25 12:05:03 +00:00
double *in, *out;
2011-07-07 14:09:57 +00:00
double Power[2048] = {0};
double Pvideo_plus_noise=0, Pnoise_only=0, Pnoise=0, Psignal=0;
2011-07-25 12:05:03 +00:00
double SNR = 0;
2011-07-07 14:09:57 +00:00
double CurLineTime = 0;
2011-07-25 22:41:04 +00:00
double ChanStart[4] = {0}, ChanLen[4] = {0};
2011-07-07 14:09:57 +00:00
unsigned char Lum=0, Image[800][616][3] = {{{0}}};
unsigned char Channel = 0;
2011-07-25 12:05:03 +00:00
fftw_plan Plan, BigPlan, SNRPlan;
2011-07-07 14:09:57 +00:00
// Prepare FFT
2011-07-25 12:05:03 +00:00
in = fftw_malloc(sizeof(double) * 2048);
2011-07-07 14:09:57 +00:00
if (in == NULL) {
2011-07-17 23:12:42 +00:00
perror("GetVideo: Unable to allocate memory for FFT");
2011-07-07 14:09:57 +00:00
pclose(PcmInStream);
free(PCM);
exit(EXIT_FAILURE);
}
2011-07-25 12:05:03 +00:00
out = fftw_malloc(sizeof(double) * 2048);
2011-07-07 14:09:57 +00:00
if (out == NULL) {
2011-07-17 23:12:42 +00:00
perror("GetVideo: Unable to allocate memory for FFT");
2011-07-07 14:09:57 +00:00
pclose(PcmInStream);
fftw_free(in);
free(PCM);
exit(EXIT_FAILURE);
}
2011-07-25 12:05:03 +00:00
// FFTW plans for frequency estimation
Plan = fftw_plan_r2r_1d(512, in, out, FFTW_FORWARD, FFTW_ESTIMATE);
2011-07-07 14:09:57 +00:00
BigPlan = fftw_plan_r2r_1d(1024, in, out, FFTW_FORWARD, FFTW_ESTIMATE);
2011-07-25 12:05:03 +00:00
// FFTW plan for SNR estimation
SNRPlan = fftw_plan_r2r_1d(SNRSIZE, in, out, FFTW_FORWARD, FFTW_ESTIMATE);
2011-07-07 14:09:57 +00:00
// Initialize Hann windows of different lengths
for (j = 0; j < 7; j++)
for (i = 0; i < HannLens[j]; i++)
Hann[j][i] = 0.5 * (1 - cos( (2 * M_PI * i) / (HannLens[j] - 1)) );
// Initialize 37-point Dolph-Chebyshev window for frequency estimation in HQ cases
double Cheb[37] =
{ 0.1569882, 0.1206692, 0.1631808, 0.2122111, 0.2673747, 0.3280227, 0.3932469, 0.4618960,
0.5326043, 0.6038308, 0.6739095, 0.7411060, 0.8036807, 0.8599540, 0.9083715, 0.9475647,
0.9764067, 0.9940579, 1.0000000, 0.9940579, 0.9764067, 0.9475647, 0.9083715, 0.8599540,
0.8036807, 0.7411060, 0.6739095, 0.6038308, 0.5326043, 0.4618960, 0.3932469, 0.3280227,
0.2673747, 0.2122111, 0.1631808, 0.1206692, 0.1569882 };
2011-07-25 22:41:04 +00:00
// Starting times of video channels on every line, counted from beginning of line
2011-07-07 14:09:57 +00:00
switch (Mode) {
case R36:
case R24:
ChanLen[0] = ModeSpec[Mode].PixelLen * ModeSpec[Mode].ImgWidth * 2;
ChanLen[1] = ChanLen[2] = ModeSpec[Mode].PixelLen * ModeSpec[Mode].ImgWidth;
ChanStart[0] = ModeSpec[Mode].SyncLen + ModeSpec[Mode].PorchLen;
ChanStart[1] = ChanStart[0] + ChanLen[0] + ModeSpec[Mode].SeparatorLen;
ChanStart[2] = ChanStart[1];
break;
2011-07-25 22:41:04 +00:00
case S1:
case S2:
case SDX:
ChanLen[0] = ChanLen[1] = ChanLen[2] = ModeSpec[Mode].PixelLen * ModeSpec[Mode].ImgWidth;
ChanStart[0] = ModeSpec[Mode].SeparatorLen;
ChanStart[1] = ChanStart[0] + ChanLen[0] + ModeSpec[Mode].SeparatorLen;
ChanStart[2] = ChanStart[1] + ChanLen[1] + ModeSpec[Mode].SyncLen + ModeSpec[Mode].PorchLen;
break;
2011-07-07 14:09:57 +00:00
default:
ChanLen[0] = ChanLen[1] = ChanLen[2] = ModeSpec[Mode].PixelLen * ModeSpec[Mode].ImgWidth;
ChanStart[0] = ModeSpec[Mode].SyncLen + ModeSpec[Mode].PorchLen;
ChanStart[1] = ChanStart[0] + ChanLen[0] + ModeSpec[Mode].SeparatorLen;
ChanStart[2] = ChanStart[1] + ChanLen[1] + ModeSpec[Mode].SeparatorLen;
break;
}
// Initialize pixbuffer for gtk
if (!Redraw) {
gdk_pixbuf_unref(CamPixbuf);
CamPixbuf = gdk_pixbuf_new (GDK_COLORSPACE_RGB, FALSE, 8, ModeSpec[Mode].ImgWidth, ModeSpec[Mode].ImgHeight *
ModeSpec[Mode].YScale);
ClearPixbuf(CamPixbuf, ModeSpec[Mode].ImgWidth, ModeSpec[Mode].ImgHeight * ModeSpec[Mode].YScale);
}
int rowstride = gdk_pixbuf_get_rowstride (CamPixbuf);
guchar *pixels, *p;
pixels = gdk_pixbuf_get_pixels(CamPixbuf);
if (!Redraw) StoredFreqRate = Rate;
Length = (ModeSpec[Mode].LineLen * ModeSpec[Mode].ImgHeight) * 44100;
// Loop through signal
for (Sample = 0; Sample < Length; Sample++) {
t = (1.0 * Sample - Skip) / Rate;
CurLineTime = fmod(t, ModeSpec[Mode].LineLen);
if (Redraw) {
// We're redrawing, so all DSP is skipped
Freq = StoredFreq[Sample];
} else {
// Read 2048 samples
2011-07-25 22:41:04 +00:00
if (Sample == 0 || Sample >= PcmPointer - 2048) {
2011-07-07 14:09:57 +00:00
if (!PcmInStream || feof (PcmInStream) || PcmPointer > Length-2048) break;
samplesread = fread(PcmBuffer, 2, 2048, PcmInStream);
if (samplesread < 2048) break;
for (i = 0; i < 2048; i++) {
PCM[PcmPointer + i] = PcmBuffer[i] / 32768.0;
// Keep track of max amplitude for VU meter
if (abs(PcmBuffer[i]) > MaxPcm) MaxPcm = abs(PcmBuffer[i]);
}
PcmPointer += 2048;
}
/*** Estimate SNR at certain intervals ***/
if (t >= NextSNR) {
if (Adaptive == 0) {
// SNR estimation can be turned off
SNR = 70;
} else {
2011-07-25 12:05:03 +00:00
// Apply Hann window to SNRSIZE samples
for (i = 0; i < SNRSIZE; i++) in[i] = PCM[Sample + i] * Hann[6][i];
2011-07-07 14:09:57 +00:00
// FFT
fftw_execute(SNRPlan);
// Calculate video-plus-noise power (1500-2300 Hz)
2011-07-25 12:05:03 +00:00
Pvideo_plus_noise = 0;
for (n = GetBin(1500+HedrShift, SNRSIZE); n <= GetBin(2300+HedrShift, SNRSIZE); n++)
Pvideo_plus_noise += pow(out[n], 2) + pow(out[SNRSIZE - n], 2);
2011-07-07 14:09:57 +00:00
// Calculate noise-only power (400-800 Hz + 2700-3400 Hz)
2011-07-25 12:05:03 +00:00
Pnoise_only = 0;
for (n = GetBin(400+HedrShift, SNRSIZE); n <= GetBin(800+HedrShift, SNRSIZE); n++)
Pnoise_only += pow(out[n], 2) + pow(out[SNRSIZE - n], 2);
2011-07-07 14:09:57 +00:00
2011-07-25 12:05:03 +00:00
for (n = GetBin(2700+HedrShift, SNRSIZE); n <= GetBin(3400+HedrShift, SNRSIZE); n++)
Pnoise_only += pow(out[n], 2) + pow(out[SNRSIZE - n], 2);
2011-07-07 14:09:57 +00:00
2011-07-25 12:05:03 +00:00
// Bandwidths
VideoPlusNoiseBins = GetBin(2300, SNRSIZE) - GetBin(1500, SNRSIZE) + 1;
2011-07-07 14:09:57 +00:00
2011-07-25 12:05:03 +00:00
NoiseOnlyBins = GetBin(800, SNRSIZE) - GetBin(400, SNRSIZE) + 1 +
GetBin(3400, SNRSIZE) - GetBin(2700, SNRSIZE) + 1;
ReceiverBins = GetBin(3400, SNRSIZE) - GetBin(400, SNRSIZE);
// Eq 15
Pnoise = Pnoise_only * (1.0 * ReceiverBins / NoiseOnlyBins);
2011-07-07 14:09:57 +00:00
Psignal = Pvideo_plus_noise - Pnoise_only * (1.0 * VideoPlusNoiseBins / NoiseOnlyBins);
// Lower bound to -20 dB
SNR = ((Psignal / Pnoise < .01) ? -20 : 10 * log10(Psignal / Pnoise));
NextSNR += ModeSpec[Mode].LineLen / 60;
}
}
if (t >= NextFFT) {
// Set window size based on SNR
FFTLen = 512;
if (SNR >= 30) WinLength = 37;
else {
if (SNR < -10) { WinIdx = 5; FFTLen = 1024; }
else if (SNR < -5) WinIdx = 4;
else if (SNR < 3) WinIdx = 3;
else if (SNR < 9) WinIdx = 2;
else if (SNR < 10) WinIdx = 1;
else WinIdx = 0;
WinLength = HannLens[WinIdx];
}
// Halve the window size for M2 and S2, except under excellent or hopeless SNR
if ( (Mode == M2 || Mode == S2) && WinLength > 64 && WinLength < 512) {
WinLength /= 2;
WinIdx --;
}
2011-07-25 12:05:03 +00:00
memset(in, 0, sizeof(double)*2048);
2011-07-07 14:09:57 +00:00
// Select window function based on SNR
if (SNR < 30) {
// Apply Hann window
for (i = 0; i < WinLength; i++)
in[i] = (Sample + i - (WinLength >> 1) < 0) ? 0 : PCM[Sample + i - (WinLength >> 1)] * Hann[WinIdx][i];
} else {
// Apply Chebyshev window
for (i = 0; i < 37; i++) in[i] = (Sample + i >= (37>>1) ? PCM[Sample + i - (37 >> 1)] * Cheb[i] : 0);
}
// FFT
if (FFTLen == 1024) fftw_execute(BigPlan);
else fftw_execute(Plan);
MaxBin = 0;
2011-07-25 10:42:27 +00:00
// Find the bin with most power
2011-07-25 12:05:03 +00:00
for (n = GetBin(1500 + HedrShift, FFTLen) - 1; n <= GetBin(2300 + HedrShift, FFTLen) + 1; n++) {
2011-07-07 14:09:57 +00:00
2011-07-19 19:29:14 +00:00
Power[n] = pow(out[n],2) + pow(out[FFTLen - n], 2);
2011-07-25 10:42:27 +00:00
if (MaxBin == 0 || Power[n] > Power[MaxBin]) MaxBin = n;
2011-07-07 14:09:57 +00:00
}
// Find the exact frequency by Gaussian interpolation
2011-07-25 12:05:03 +00:00
if (MaxBin > GetBin(1500 + HedrShift, FFTLen) - 1 && MaxBin < GetBin(2300 + HedrShift, FFTLen) + 1) {
2011-07-07 14:09:57 +00:00
Freq = MaxBin + (log( Power[MaxBin + 1] / Power[MaxBin - 1] )) /
(2 * log( pow(Power[MaxBin], 2) / (Power[MaxBin + 1] * Power[MaxBin - 1])));
// In Hertz
Freq = Freq / FFTLen * 44100;
} else {
// Use last usable freq
}
NextFFT += ModeSpec[Mode].PixelLen / 2;
}
// Store frequency for later image adjustments
StoredFreq[Sample] = Freq;
}
/*** Are we on a video line, and should we sample a pixel? ***/
if ( ( (CurLineTime >= ChanStart[0] && CurLineTime < ChanStart[0] + ChanLen[0])
|| (CurLineTime >= ChanStart[1] && CurLineTime < ChanStart[1] + ChanLen[1])
|| (CurLineTime >= ChanStart[2] && CurLineTime < ChanStart[2] + ChanLen[2]) )
&& t >= NextPixel
) {
LineNum = (int)(t / ModeSpec[Mode].LineLen);
// Which channel is this?
switch(Mode) {
case R24BW:
case R12BW:
case R8BW:
Channel = 0;
break;
case R36:
case R24:
if (CurLineTime >= ChanStart[1]) {
if (LineNum % 2 == 0) Channel = 1;
else Channel = 2;
} else Channel = 0;
break;
case PD50:
case PD90:
case PD120:
case PD160:
case PD180:
case PD240:
case PD290:
2011-07-25 22:41:04 +00:00
if (CurLineTime >= ChanStart[2] + ChanLen[2]) Channel = 3; // ch 0 of even line
2011-07-07 14:09:57 +00:00
else if (CurLineTime >= ChanStart[2]) Channel = 2;
else if (CurLineTime >= ChanStart[1]) Channel = 1;
else Channel = 0;
break;
default:
if (CurLineTime >= ChanStart[2]) Channel = 2;
else if (CurLineTime >= ChanStart[1]) Channel = 1;
else Channel = 0;
break;
}
// X coordinate of this pixel
2011-07-25 22:41:04 +00:00
x = (CurLineTime - ChanStart[Channel]) / ChanLen[Channel] * ModeSpec[Mode].ImgWidth;
2011-07-07 14:09:57 +00:00
// Y coordinate of this pixel
2011-07-25 22:41:04 +00:00
switch(Channel) {
case 3:
y = LineNum + 1;
Channel = 0;
2011-07-07 14:09:57 +00:00
break;
default:
y = LineNum;
break;
}
// Luminance from frequency
2011-07-25 12:05:03 +00:00
Lum = clip((Freq - (1500 + HedrShift)) / 3.1372549);
2011-07-07 14:09:57 +00:00
// Store pixel
if (x >= 0 && y >= 0 && x < ModeSpec[Mode].ImgWidth) {
Image[x][y][Channel] = Lum;
// Some modes have R-Y & B-Y channels that are twice the height of the Y channel
if (Channel > 0)
switch(Mode) {
case R36:
case R24:
if (y < ModeSpec[Mode].ImgHeight-1) Image[x][y+1][Channel] = Lum;
break;
}
}
if (y > ModeSpec[Mode].ImgHeight-1) break;
// Calculate and draw pixels on line change
if (LineNum != prevline) {
for (tx = 0; tx < ModeSpec[Mode].ImgWidth; tx++) {
for (ty = prevline * ModeSpec[Mode].YScale; ty < prevline * ModeSpec[Mode].YScale + ModeSpec[Mode].YScale; ty++) {
p = pixels + ty * rowstride + tx * 3;
switch(ModeSpec[Mode].ColorEnc) {
case RGB:
p[0] = Image[tx][prevline][0];
p[1] = Image[tx][prevline][1];
p[2] = Image[tx][prevline][2];
break;
case GBR:
p[0] = Image[tx][prevline][2];
p[1] = Image[tx][prevline][0];
p[2] = Image[tx][prevline][1];
break;
case YUV:
p[0] = clip((100 * Image[tx][prevline][0] + 140 * Image[tx][prevline][1] - 17850) / 100.0);
p[1] = clip((100 * Image[tx][prevline][0] - 71 * Image[tx][prevline][1] - 33 *
Image[tx][prevline][2] + 13260) / 100.0);
p[2] = clip((100 * Image[tx][prevline][0] + 178 * Image[tx][prevline][2] - 22695) / 100.0);
break;
case BW:
p[0] = p[1] = p[2] = Image[tx][prevline][0];
break;
}
}
}
if (!Redraw || LineNum % 5 == 0 || LineNum == ModeSpec[Mode].ImgHeight-1) {
2011-07-25 22:41:04 +00:00
gdk_threads_enter();
gtk_image_set_from_pixbuf(GTK_IMAGE(CamImage), CamPixbuf);
gdk_threads_leave();
2011-07-07 14:09:57 +00:00
}
}
prevline = LineNum;
NextPixel += ModeSpec[Mode].PixelLen / 2;
}
if (!Redraw && Sample % 8820 == 0) {
setVU(MaxPcm, SNR);
MaxPcm = 0;
}
}
printf(" dim %d x %d\n", ModeSpec[Mode].ImgWidth, ModeSpec[Mode].ImgHeight);
fftw_destroy_plan(Plan);
fftw_destroy_plan(BigPlan);
fftw_destroy_plan(SNRPlan);
fftw_free(in);
fftw_free(out);
return 0;
}