view frtest/Makefile @ 604:54f0f1b74c25

libgsmhr1 TFO: require BFI=0 and SID=0 for homing In order for a received frame to be recognized as DHF, we need not only the correct bit pattern, but also BFI=0 and SID=0. The BFI=0 requirement should be obvious, while the SID=0 requirement is needed only for HR codec. With FR and EFR, SID classification comes from the payload bits and no separate check is needed - but in HR we get an out-of-band SID ternary flag. When SID=1, no payload bits are used at all; when SID=2, we use only the first 33 bits of the payload. Therefore, it is proper to conditionalize DHF acceptance on SID=0. We already implemented this logic in the just finished full decoder; now bring TFO code into agreement.
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 04 Dec 2025 19:40:35 +0000
parents b26df31124a4
children
line wrap: on
line source

PROGS=	gsmfr-cod2std gsmfr-decode gsmfr-decode-r gsmfr-decode-rb \
	gsmfr-decode-tw5 gsmfr-decode-tw5-r gsmfr-dlcap-gsmx gsmfr-dlcap-parse \
	gsmfr-dlcap-sync gsmfr-encode gsmfr-encode-r gsmfr-preproc \
	gsmfr-tfo-xfrm
LIBFR2=	../libgsmfr2/libgsmfr2.a
LIBTEST=../libtest/libtest.a

include ../config.defs

all:	${PROGS}

gsmfr-cod2std:	cod2std.o ${LIBFR2}
	${CC} ${CFLAGS} -o $@ $^

gsmfr-decode:	decode.o ${LIBTEST} ${LIBFR2}
	${CC} ${CFLAGS} -o $@ $^

gsmfr-decode-r:	decode-r.o ${LIBTEST} ${LIBFR2}
	${CC} ${CFLAGS} -o $@ $^

gsmfr-decode-rb:	decode-rb.o ${LIBTEST} ${LIBFR2}
	${CC} ${CFLAGS} -o $@ $^

gsmfr-decode-tw5:	decode-tw5.o ${LIBTEST} ${LIBFR2}
	${CC} ${CFLAGS} -o $@ $^

gsmfr-decode-tw5-r:	decode-tw5-r.o ${LIBTEST} ${LIBFR2}
	${CC} ${CFLAGS} -o $@ $^

gsmfr-dlcap-gsmx:	dlcap-gsmx.o tidsp.o ${LIBTEST}
	${CC} ${CFLAGS} -o $@ $^

gsmfr-dlcap-parse:	dlcap-parse.o tidsp.o ${LIBTEST} ${LIBFR2}
	${CC} ${CFLAGS} -o $@ $^

gsmfr-dlcap-sync:	dlcap-sync.o sync-from-pcma.o sync-from-pcmu.o tidsp.o \
			${LIBTEST} ${LIBFR2}
	${CC} ${CFLAGS} -o $@ $^

gsmfr-encode:	encode.o ${LIBTEST} ${LIBFR2}
	${CC} ${CFLAGS} -o $@ $^

gsmfr-encode-r:	encode-r.o ${LIBTEST} ${LIBFR2}
	${CC} ${CFLAGS} -o $@ $^

gsmfr-preproc:	preproc.o ${LIBTEST} ${LIBFR2}
	${CC} ${CFLAGS} -o $@ $^

gsmfr-tfo-xfrm:	tfo-xfrm.o ${LIBTEST} ${LIBFR2}
	${CC} ${CFLAGS} -o $@ $^

install:
	mkdir -p ${DESTDIR}${bindir}
	install -c ${PROGS} ${DESTDIR}${bindir}

clean:
	rm -f *.o *.out ${PROGS}