diff ater8/read_file.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/read_file.h@5405c1573027
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ater8/read_file.h	Fri Aug 30 19:02:42 2024 +0000
@@ -0,0 +1,12 @@
+/*
+ * This header file defines the interface to the function that reads
+ * ETSI *.dec binary files which we've adopted as our TRAU-UL test
+ * input format for GSM-HR.
+ */
+
+#pragma once
+
+#include <stdint.h>
+
+int read_binary_file(const char *filename, int16_t **bufret,
+		     unsigned *size_ret);