diff spandsp-0.0.6pre17/src/spandsp/fax.h @ 4:26cd8f1ef0b1

import spandsp-0.0.6pre17
author Peter Meerwald <pmeerw@cosy.sbg.ac.at>
date Fri, 25 Jun 2010 15:50:58 +0200
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/spandsp-0.0.6pre17/src/spandsp/fax.h	Fri Jun 25 15:50:58 2010 +0200
@@ -0,0 +1,133 @@
+/*
+ * SpanDSP - a series of DSP components for telephony
+ *
+ * fax.h - definitions for analogue line ITU T.30 fax processing
+ *
+ * Written by Steve Underwood <steveu@coppice.org>
+ *
+ * Copyright (C) 2005 Steve Underwood
+ *
+ * All rights reserved.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License version 2.1,
+ * as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ * $Id: fax.h,v 1.39 2009/03/13 12:59:26 steveu Exp $
+ */
+
+/*! \file */
+
+#if !defined(_SPANDSP_FAX_H_)
+#define _SPANDSP_FAX_H_
+
+/*! \page fax_page FAX over analogue modem handling
+
+\section fax_page_sec_1 What does it do?
+
+\section fax_page_sec_2 How does it work?
+*/
+
+typedef struct fax_state_s fax_state_t;
+
+#if defined(__cplusplus)
+extern "C"
+{
+#endif
+
+/*! Apply T.30 receive processing to a block of audio samples.
+    \brief Apply T.30 receive processing to a block of audio samples.
+    \param s The FAX context.
+    \param amp The audio sample buffer.
+    \param len The number of samples in the buffer.
+    \return The number of samples unprocessed. This should only be non-zero if
+            the software has reached the end of the FAX call.
+*/
+SPAN_DECLARE(int) fax_rx(fax_state_t *s, int16_t *amp, int len);
+
+/*! Apply fake T.30 receive processing when a block of audio samples is missing (e.g due
+    to packet loss).
+    \brief Apply fake T.30 receive processing.
+    \param s The FAX context.
+    \param len The number of samples to fake.
+    \return The number of samples unprocessed. This should only be non-zero if
+            the software has reached the end of the FAX call.
+*/
+SPAN_DECLARE(int) fax_rx_fillin(fax_state_t *s, int len);
+
+/*! Apply T.30 transmit processing to generate a block of audio samples.
+    \brief Apply T.30 transmit processing to generate a block of audio samples.
+    \param s The FAX context.
+    \param amp The audio sample buffer.
+    \param max_len The number of samples to be generated.
+    \return The number of samples actually generated. This will be zero when
+            there is nothing to send.
+*/
+SPAN_DECLARE(int) fax_tx(fax_state_t *s, int16_t *amp, int max_len);
+
+/*! Select whether silent audio will be sent when FAX transmit is idle.
+    \brief Select whether silent audio will be sent when FAX transmit is idle.
+    \param s The FAX context.
+    \param transmit_on_idle TRUE if silent audio should be output when the FAX transmitter is
+           idle. FALSE to transmit zero length audio when the FAX transmitter is idle. The default
+           behaviour is FALSE.
+*/
+SPAN_DECLARE(void) fax_set_transmit_on_idle(fax_state_t *s, int transmit_on_idle);
+
+/*! Select whether talker echo protection tone will be sent for the image modems.
+    \brief Select whether TEP will be sent for the image modems.
+    \param s The FAX context.
+    \param use_tep TRUE if TEP should be sent.
+*/
+SPAN_DECLARE(void) fax_set_tep_mode(fax_state_t *s, int use_tep);
+
+/*! Get a pointer to the T.30 engine associated with a FAX context.
+    \brief Get a pointer to the T.30 engine associated with a FAX context.
+    \param s The FAX context.
+    \return A pointer to the T.30 context, or NULL.
+*/
+SPAN_DECLARE(t30_state_t *) fax_get_t30_state(fax_state_t *s);
+
+/*! Get a pointer to the logging context associated with a FAX context.
+    \brief Get a pointer to the logging context associated with a FAX context.
+    \param s The FAX context.
+    \return A pointer to the logging context, or NULL.
+*/
+SPAN_DECLARE(logging_state_t *) fax_get_logging_state(fax_state_t *s);
+
+/*! Initialise a FAX context.
+    \brief Initialise a FAX context.
+    \param s The FAX context.
+    \param calling_party TRUE if the context is for a calling party. FALSE if the
+           context is for an answering party.
+    \return A pointer to the FAX context, or NULL if there was a problem.
+*/
+SPAN_DECLARE(fax_state_t *) fax_init(fax_state_t *s, int calling_party);
+
+/*! Release a FAX context.
+    \brief Release a FAX context.
+    \param s The FAX context.
+    \return 0 for OK, else -1. */
+SPAN_DECLARE(int) fax_release(fax_state_t *s);
+
+/*! Free a FAX context.
+    \brief Free a FAX context.
+    \param s The FAX context.
+    \return 0 for OK, else -1. */
+SPAN_DECLARE(int) fax_free(fax_state_t *s);
+
+#if defined(__cplusplus)
+}
+#endif
+
+#endif
+/*- End of file ------------------------------------------------------------*/

Repositories maintained by Peter Meerwald, pmeerw@pmeerw.net.