mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-15 08:31:57 -05:00
More tweaks to the use of flat3.
Include updated makefiles. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3626 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
a6406ea58f
commit
052aedef20
@ -50,7 +50,8 @@ OBJS1 = pctile.o graycode.o sort.o ssort.o \
|
||||
filbig.o fil6521.o afc65b.o decode65b.o setup65.o \
|
||||
extract.o fchisq65.o demod64a.o chkhist.o interleave63.o ccf2.o \
|
||||
move.o indexx.o graycode65.o twkfreq65.o smo121.o \
|
||||
wrapkarn.o init_rs.o encode_rs.o decode_rs.o gen65.o fil4.o
|
||||
wrapkarn.o init_rs.o encode_rs.o decode_rs.o gen65.o fil4.o \
|
||||
flat3.o polfit.o determ.o
|
||||
|
||||
libjt9.a: $(OBJS1)
|
||||
ar cr libjt9.a $(OBJS1)
|
||||
|
@ -40,7 +40,8 @@ OBJS1 = pctile.o graycode.o sort.o ssort.o \
|
||||
filbig.o fil6521.o afc65b.o decode65b.o setup65.o \
|
||||
extract.o fchisq65.o demod64a.o chkhist.o interleave63.o ccf2.o \
|
||||
move.o indexx.o graycode65.o twkfreq65.o smo121.o \
|
||||
wrapkarn.o init_rs.o encode_rs.o decode_rs.o gen65.o fil4.o
|
||||
wrapkarn.o init_rs.o encode_rs.o decode_rs.o gen65.o fil4.o \
|
||||
flat3.o polfit.o determ.o
|
||||
|
||||
libjt9.a: $(OBJS1)
|
||||
ar cr libjt9.a $(OBJS1)
|
||||
|
@ -67,7 +67,7 @@ subroutine flat3(s0,iz,nfa,nfb,nterms,ynoise,s)
|
||||
! enddo
|
||||
|
||||
do i=1,ib
|
||||
y4=y0(i)-yfit(i) - 20.0
|
||||
y4=y0(i)-yfit(i) - 10.0
|
||||
s(i)=10.0**(0.1*y4)
|
||||
enddo
|
||||
|
||||
|
@ -41,7 +41,7 @@ subroutine symspec(k,ntrperiod,nsps,ingain,slope,pxdb,s,df3,ihsym,npts8)
|
||||
go to 900 !Wait for enough samples to start
|
||||
endif
|
||||
|
||||
if(nfft3.ne.nfft3z .or. (slope.ne.slope0 .and. abs(slope+0.1).gt.0.05)) then
|
||||
if(nfft3.ne.nfft3z .or. slope.ne.slope0) then
|
||||
! Compute new window and adjust scale factor
|
||||
pi=4.0*atan(1.0)
|
||||
do i=1,nfft3
|
||||
@ -49,10 +49,14 @@ subroutine symspec(k,ntrperiod,nsps,ingain,slope,pxdb,s,df3,ihsym,npts8)
|
||||
enddo
|
||||
nfft3z=nfft3
|
||||
nh=NSMAX/2
|
||||
if(abs(slope+0.1).gt.0.05) then
|
||||
do i=1,NSMAX
|
||||
x=slope*float(i)/nh - 1.0 + 2.6
|
||||
scale(i)=10.0**x
|
||||
enddo
|
||||
else
|
||||
scale=1.0
|
||||
endif
|
||||
slope0=slope
|
||||
endif
|
||||
|
||||
@ -110,7 +114,8 @@ subroutine symspec(k,ntrperiod,nsps,ingain,slope,pxdb,s,df3,ihsym,npts8)
|
||||
|
||||
if(abs(slope+0.1).lt.0.01) then
|
||||
call flat3(s,iz,nfa,nfb,3,1.0,s)
|
||||
! call flat3(savg,iz,3,1.0,savg)
|
||||
call flat3(savg,iz,nfa,nfb,3,1.0,savg)
|
||||
savg=7.0*savg
|
||||
endif
|
||||
|
||||
900 npts8=k/8
|
||||
|
@ -1,4 +1,4 @@
|
||||
//--------------------------------------------------------------- MainWindow
|
||||
//-------------------------------------------------------------- MainWindow
|
||||
#include "mainwindow.h"
|
||||
#include "ui_mainwindow.h"
|
||||
|
||||
|
@ -17,8 +17,7 @@ bool SoundOutput::audioError () const
|
||||
bool result (true);
|
||||
|
||||
Q_ASSERT_X (m_stream, "SoundOutput", "programming error");
|
||||
if (m_stream)
|
||||
{
|
||||
if (m_stream) {
|
||||
switch (m_stream->error ())
|
||||
{
|
||||
case QAudio::OpenError:
|
||||
|
Loading…
Reference in New Issue
Block a user