moved fmd code to fmd.rsh

pull/6/head
Ahmet Inan 2014-11-30 17:18:17 +01:00
rodzic e69c476a41
commit 941c80ac00
2 zmienionych plików z 45 dodań i 22 usunięć

Wyświetl plik

@ -20,6 +20,7 @@ limitations under the License.
#include "complex.rsh"
#include "ema.rsh"
#include "ddc.rsh"
#include "fmd.rsh"
short *audio_buffer;
uchar *value_buffer;
@ -78,26 +79,9 @@ static float scottieDX_estimator(int length)
return filter(&variance, deviation * deviation);
}
static float cnt_fmd_scale;
static float cnt_fmd(complex_t baseband)
{
static complex_t prev;
float phase = carg(cdiv(baseband, prev));
prev = baseband;
return clamp(cnt_fmd_scale * phase, -1.0f, 1.0f);
}
static float dat_fmd_scale;
static float dat_fmd(complex_t baseband)
{
static complex_t prev;
float phase = carg(cdiv(baseband, prev));
prev = baseband;
return clamp(dat_fmd_scale * phase, -1.0f, 1.0f);
}
static ema_t avg_power, leader_lowpass;
static ddc_t cnt_ddc, dat_ddc;
static fmd_t cnt_fmd, dat_fmd;
static int sample_rate, mode, even_hpos;
static int maximum_variance, minimum_sync_length;
static int scanline_length, minimum_length, maximum_length;
@ -391,8 +375,8 @@ void initialize(float rate, int length, int width, int height)
cnt_ddc = ddc(cnt_carrier, cnt_bandwidth, sample_rate);
dat_ddc = ddc(dat_carrier, dat_bandwidth, sample_rate);
cnt_fmd_scale = sample_rate / (M_PI * cnt_bandwidth);
dat_fmd_scale = sample_rate / (M_PI * dat_bandwidth);
cnt_fmd = fmd(cnt_bandwidth, sample_rate);
dat_fmd = fmd(dat_bandwidth, sample_rate);
robot36_mode();
}
@ -668,8 +652,8 @@ void decode(int samples) {
complex_t cnt_baseband = convert(&cnt_ddc, amp);
complex_t dat_baseband = convert(&dat_ddc, amp);
float cnt_value = cnt_fmd(cnt_baseband);
float dat_value = dat_fmd(dat_baseband);
float cnt_value = demodulate(&cnt_fmd, cnt_baseband);
float dat_value = demodulate(&dat_fmd, dat_baseband);
int cnt_active = cabs(dat_baseband) < cabs(cnt_baseband);
uchar cnt_level = save_cnt ? 127.5f - 127.5f * cnt_value : 0.0f;

Wyświetl plik

@ -0,0 +1,39 @@
/*
Copyright 2014 Ahmet Inan <xdsopl@googlemail.com>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#ifndef FMD_RSH
#define FMD_RSH
#include "complex.rsh"
typedef struct {
complex_t prev;
float scale;
} fmd_t;
static fmd_t fmd(float bandwidth, float rate)
{
return (fmd_t){ complex(0.0f, 0.0f), rate / (M_PI * bandwidth) };
}
static float demodulate(fmd_t *fmd, complex_t baseband)
{
float phase = carg(cdiv(baseband, fmd->prev));
fmd->prev = baseband;
return clamp(fmd->scale * phase, -1.0f, 1.0f);
}
#endif