Fix the "off by one" issue in measuring f0 for list decodes.

This commit is contained in:
Joe Taylor 2020-12-04 15:37:54 -05:00
parent 3dd34e13ba
commit 8b9b71c894
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ subroutine q65_sync(nutc,iwave,nmax,mode_q65,codewords,ncw,nsps,nfqso,ntol, &
ijpk=maxloc(ccf)
ipk=ijpk(1)-ia-1
jpk=ijpk(2)-53-1
f0=nfqso + ipk*df
f0=nfqso + (ipk-1)*df
xdt=jpk*dtstep
imsg_best=imsg
endif