00001 /* 00002 * SpanDSP - a series of DSP components for telephony 00003 * 00004 * t31.h - A T.31 compatible class 1 FAX modem interface. 00005 * 00006 * Written by Steve Underwood <steveu@coppice.org> 00007 * 00008 * Copyright (C) 2004 Steve Underwood 00009 * 00010 * All rights reserved. 00011 * 00012 * This program is free software; you can redistribute it and/or modify 00013 * it under the terms of the GNU Lesser General Public License version 2.1, 00014 * as published by the Free Software Foundation. 00015 * 00016 * This program is distributed in the hope that it will be useful, 00017 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00018 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00019 * GNU Lesser General Public License for more details. 00020 * 00021 * You should have received a copy of the GNU Lesser General Public 00022 * License along with this program; if not, write to the Free Software 00023 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 00024 */ 00025 00026 /*! \file */ 00027 00028 #if !defined(_SPANDSP_T31_H_) 00029 #define _SPANDSP_T31_H_ 00030 00031 /*! \page t31_page T.31 Class 1 FAX modem protocol handling 00032 \section t31_page_sec_1 What does it do? 00033 The T.31 class 1 FAX modem modules implements a class 1 interface to the FAX 00034 modems in spandsp. 00035 00036 \section t31_page_sec_2 How does it work? 00037 */ 00038 00039 /*! 00040 T.31 descriptor. This defines the working state for a single instance of 00041 a T.31 FAX modem. 00042 */ 00043 typedef struct t31_state_s t31_state_t; 00044 00045 typedef int (*t31_modem_control_handler_t)(t31_state_t *s, void *user_data, int op, const char *num); 00046 00047 #define T31_TX_BUF_LEN (4096) 00048 #define T31_TX_BUF_HIGH_TIDE (4096 - 1024) 00049 #define T31_TX_BUF_LOW_TIDE (1024) 00050 #define T31_MAX_HDLC_LEN 284 00051 #define T31_T38_MAX_HDLC_LEN 260 00052 00053 #if defined(__cplusplus) 00054 extern "C" 00055 { 00056 #endif 00057 00058 SPAN_DECLARE(void) t31_call_event(t31_state_t *s, int event); 00059 00060 /*! Return the amount of free space in the AT COMMAND BUFFER. 00061 \brief Return the amount of free space in the AT COMMAND BUFFER. 00062 \param s The T.31 modem context. 00063 \return The number of bytes of free space. */ 00064 SPAN_DECLARE(int) t31_at_rx_free_space(t31_state_t *s); 00065 00066 SPAN_DECLARE(int) t31_at_rx(t31_state_t *s, const char *t, int len); 00067 00068 /*! Process a block of received T.31 modem audio samples. 00069 \brief Process a block of received T.31 modem audio samples. 00070 \param s The T.31 modem context. 00071 \param amp The audio sample buffer. 00072 \param len The number of samples in the buffer. 00073 \return The number of samples unprocessed. */ 00074 SPAN_DECLARE_NONSTD(int) t31_rx(t31_state_t *s, int16_t amp[], int len); 00075 00076 /*! Fake processing of a missing block of received T.31 modem audio samples 00077 (e.g due to packet loss). 00078 \brief Fake processing of a missing block of received T.31 modem audio samples. 00079 \param s The T.31 modem context. 00080 \param len The number of samples to fake. 00081 \return The number of samples unprocessed. */ 00082 SPAN_DECLARE_NONSTD(int) t31_rx_fillin(t31_state_t *s, int len); 00083 00084 /*! Generate a block of T.31 modem audio samples. 00085 \brief Generate a block of T.31 modem audio samples. 00086 \param s The T.31 modem context. 00087 \param amp The audio sample buffer. 00088 \param max_len The number of samples to be generated. 00089 \return The number of samples actually generated. 00090 */ 00091 SPAN_DECLARE_NONSTD(int) t31_tx(t31_state_t *s, int16_t amp[], int max_len); 00092 00093 SPAN_DECLARE(int) t31_t38_send_timeout(t31_state_t *s, int samples); 00094 00095 /*! Select whether silent audio will be sent when transmit is idle. 00096 \brief Select whether silent audio will be sent when transmit is idle. 00097 \param s The T.31 modem context. 00098 \param transmit_on_idle TRUE if silent audio should be output when the transmitter is 00099 idle. FALSE to transmit zero length audio when the transmitter is idle. The default 00100 behaviour is FALSE. 00101 */ 00102 SPAN_DECLARE(void) t31_set_transmit_on_idle(t31_state_t *s, int transmit_on_idle); 00103 00104 /*! Select whether TEP mode will be used (or time allowed for it (when transmitting). 00105 \brief Select whether TEP mode will be used. 00106 \param s The T.31 modem context. 00107 \param use_tep TRUE if TEP is to be ised. 00108 */ 00109 SPAN_DECLARE(void) t31_set_tep_mode(t31_state_t *s, int use_tep); 00110 00111 /*! Select whether T.38 data will be paced as it is transmitted. 00112 \brief Select whether T.38 data will be paced. 00113 \param s The T.31 modem context. 00114 \param without_pacing TRUE if data is to be sent as fast as possible. FALSE if it is 00115 to be paced. 00116 */ 00117 SPAN_DECLARE(void) t31_set_t38_config(t31_state_t *s, int without_pacing); 00118 00119 SPAN_DECLARE(void) t31_set_mode(t31_state_t *s, int t38_mode); 00120 00121 /*! Get a pointer to the logging context associated with a T.31 context. 00122 \brief Get a pointer to the logging context associated with a T.31 context. 00123 \param s The T.31 context. 00124 \return A pointer to the logging context, or NULL. 00125 */ 00126 SPAN_DECLARE(logging_state_t *) t31_get_logging_state(t31_state_t *s); 00127 00128 SPAN_DECLARE(t38_core_state_t *) t31_get_t38_core_state(t31_state_t *s); 00129 00130 /*! Initialise a T.31 context. This must be called before the first 00131 use of the context, to initialise its contents. 00132 \brief Initialise a T.31 context. 00133 \param s The T.31 context. 00134 \param at_tx_handler A callback routine to handle AT interpreter channel output. 00135 \param at_tx_user_data An opaque pointer passed in called to at_tx_handler. 00136 \param modem_control_handler A callback routine to handle control of the modem (off-hook, etc). 00137 \param modem_control_user_data An opaque pointer passed in called to modem_control_handler. 00138 \param tx_t38_packet_handler ??? 00139 \param tx_t38_packet_user_data ??? 00140 \return A pointer to the T.31 context. */ 00141 SPAN_DECLARE(t31_state_t *) t31_init(t31_state_t *s, 00142 at_tx_handler_t at_tx_handler, 00143 void *at_tx_user_data, 00144 t31_modem_control_handler_t modem_control_handler, 00145 void *modem_control_user_data, 00146 t38_tx_packet_handler_t tx_t38_packet_handler, 00147 void *tx_t38_packet_user_data); 00148 00149 /*! Release a T.31 context. 00150 \brief Release a T.31 context. 00151 \param s The T.31 context. 00152 \return 0 for OK */ 00153 SPAN_DECLARE(int) t31_release(t31_state_t *s); 00154 00155 /*! Free a T.31 context. 00156 \brief Release a T.31 context. 00157 \param s The T.31 context. 00158 \return 0 for OK */ 00159 SPAN_DECLARE(int) t31_free(t31_state_t *s); 00160 00161 #if defined(__cplusplus) 00162 } 00163 #endif 00164 00165 #endif 00166 /*- End of file ------------------------------------------------------------*/
1.6.1