2016-07-02 08:15:41 -04:00
|
|
|
// qra64_subs.c
|
|
|
|
// Fortran interface routines for QRA64
|
2016-06-22 16:45:29 -04:00
|
|
|
|
2016-07-02 08:15:41 -04:00
|
|
|
#include "qra64.h"
|
2016-06-22 16:45:29 -04:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2016-07-02 08:15:41 -04:00
|
|
|
void qra64_enc_(int x[], int y[])
|
2016-06-22 16:45:29 -04:00
|
|
|
{
|
|
|
|
int ncall=0xf70c238; //K1ABC
|
2016-07-02 08:15:41 -04:00
|
|
|
qra64codec *codec = qra64_init(0,ncall); //codec for ncall
|
|
|
|
qra64_encode(codec, y, x);
|
2016-06-22 16:45:29 -04:00
|
|
|
}
|
|
|
|
|
2016-07-02 08:15:41 -04:00
|
|
|
void qra64_dec_(float r[], int* nmycall, int xdec[], int* rc)
|
2016-06-22 16:45:29 -04:00
|
|
|
{
|
2016-06-23 09:58:18 -04:00
|
|
|
// Return codes:
|
2016-06-24 15:54:34 -04:00
|
|
|
// rc=-16 failed sanity check
|
|
|
|
// rc=-2 decoded, but crc check failed
|
|
|
|
// rc=-1 no decode
|
2016-06-23 09:58:18 -04:00
|
|
|
// rc=0 [? ? ?] AP0 (decoding with no a-priori information)
|
|
|
|
// rc=1 [CQ ? ?] AP27
|
2016-06-24 15:54:34 -04:00
|
|
|
// rc=2 [CQ ? ] AP42
|
2016-06-23 09:58:18 -04:00
|
|
|
// rc=3 [CALL ? ?] AP29
|
2016-06-24 15:54:34 -04:00
|
|
|
// rc=4 [CALL ? ] AP44
|
2016-06-23 09:58:18 -04:00
|
|
|
// rc=5 [CALL CALL ?] AP57
|
|
|
|
|
2016-06-30 16:38:36 -04:00
|
|
|
static ncall0=-1;
|
|
|
|
int ncall=*nmycall;
|
2016-07-02 08:15:41 -04:00
|
|
|
static qra64codec *codec;
|
2016-06-24 15:54:34 -04:00
|
|
|
|
2016-06-30 16:38:36 -04:00
|
|
|
if(ncall!=ncall0) {
|
2016-07-02 08:15:41 -04:00
|
|
|
codec = qra64_init(1,ncall); //codec for ncall
|
2016-06-30 16:38:36 -04:00
|
|
|
ncall0=ncall;
|
2016-06-24 15:54:34 -04:00
|
|
|
}
|
2016-07-02 08:15:41 -04:00
|
|
|
*rc = qra64_decode(codec,xdec,r);
|
2016-06-22 16:45:29 -04:00
|
|
|
}
|