diff ater8/out_frame.h @ 42:ff94d7fc5891

new program itt-ater-8
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 30 Aug 2024 19:02:42 +0000
parents ater/out_frame.h@2ee910aa03c3
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ater8/out_frame.h	Fri Aug 30 19:02:42 2024 +0000
@@ -0,0 +1,15 @@
+/*
+ * This header file defines the interface to the function that
+ * fills struct osmo_trau_frame based on a 22-word decoder input
+ * record we read from an ETSI *.dec file.
+ */
+
+#pragma once
+
+#include <stdint.h>
+#include <stdbool.h>
+
+#include <osmocom/trau/trau_frame.h>
+
+void trau_frame_from_record(const int16_t *rec, struct osmo_trau_frame *fr,
+			    bool *has_taf);