/usr/include/spandsp/v8.h is in libspandsp-dev 0.0.6+dfsg-0.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 | /*
* SpanDSP - a series of DSP components for telephony
*
* v8.h - V.8 modem negotiation processing.
*
* Written by Steve Underwood <steveu@coppice.org>
*
* Copyright (C) 2004 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.
*/
/*! \file */
/*! \page v8_page The V.8 modem negotiation protocol
\section v8_page_sec_1 What does it do?
The V.8 specification defines a procedure to be used as PSTN modem answer phone calls,
which allows the modems to negotiate the optimum modem standard, which both ends can
support.
\section v8_page_sec_2 How does it work?
At startup the modems communicate using the V.21 standard at 300 bits/second. They
exchange simple messages about their capabilities, and choose the modem standard they
will use for data communication. The V.8 protocol then terminates, and the modems
being negotiating and training with their chosen modem standard.
*/
#if !defined(_SPANDSP_V8_H_)
#define _SPANDSP_V8_H_
typedef struct v8_parms_s v8_parms_t;
typedef void (*v8_result_handler_t)(void *user_data, v8_parms_t *result);
enum v8_call_function_e
{
V8_CALL_TBS = 0,
V8_CALL_H324 = 1,
V8_CALL_V18 = 2,
V8_CALL_T101 = 3,
V8_CALL_T30_TX = 4,
V8_CALL_T30_RX = 5,
V8_CALL_V_SERIES = 6,
V8_CALL_FUNCTION_EXTENSION = 7
};
enum v8_modulation_e
{
V8_MOD_V17 = (1 << 0), /* V.17 half-duplex */
V8_MOD_V21 = (1 << 1), /* V.21 duplex */
V8_MOD_V22 = (1 << 2), /* V.22/V22.bis duplex */
V8_MOD_V23HDX = (1 << 3), /* V.23 half-duplex */
V8_MOD_V23 = (1 << 4), /* V.23 duplex */
V8_MOD_V26BIS = (1 << 5), /* V.23 duplex */
V8_MOD_V26TER = (1 << 6), /* V.23 duplex */
V8_MOD_V27TER = (1 << 7), /* V.23 duplex */
V8_MOD_V29 = (1 << 8), /* V.29 half-duplex */
V8_MOD_V32 = (1 << 9), /* V.32/V32.bis duplex */
V8_MOD_V34HDX = (1 << 10), /* V.34 half-duplex */
V8_MOD_V34 = (1 << 11), /* V.34 duplex */
V8_MOD_V90 = (1 << 12), /* V.90 duplex */
V8_MOD_V92 = (1 << 13) /* V.92 duplex */
};
enum v8_protocol_e
{
V8_PROTOCOL_NONE = 0,
V8_PROTOCOL_LAPM_V42 = 1,
V8_PROTOCOL_EXTENSION = 7
};
enum v8_pstn_access_e
{
V8_PSTN_ACCESS_CALL_DCE_CELLULAR = 0x01,
V8_PSTN_ACCESS_ANSWER_DCE_CELLULAR = 0x02,
V8_PSTN_ACCESS_DCE_ON_DIGITAL = 0x04
};
enum v8_pcm_modem_availability_e
{
V8_PSTN_PCM_MODEM_V90_V92_ANALOGUE = 0x01,
V8_PSTN_PCM_MODEM_V90_V92_DIGITAL = 0x02,
V8_PSTN_PCM_MODEM_V91 = 0x04
};
enum v8_status_e
{
/*! V.8 negotiation is in progress. */
V8_STATUS_IN_PROGRESS = 0,
/*! V.8 has been offered by the other (calling) party. */
V8_STATUS_V8_OFFERED = 1,
/*! V.8 has been successfully negotiated. Note that this only means the V.8
message exchange has successfully completed. The actual exchanged parameters
must be checked, to see if the call can proceed properly. */
V8_STATUS_V8_CALL = 2,
/*! A non-V.8 is being received. */
V8_STATUS_NON_V8_CALL = 3,
/*! V.8 negotiation failed. */
V8_STATUS_FAILED = 4
};
typedef struct v8_state_s v8_state_t;
struct v8_parms_s
{
int status;
int modem_connect_tone;
int send_ci;
int v92;
int call_function;
unsigned int modulations;
int protocol;
int pstn_access;
int pcm_modem_availability;
int nsf;
int t66;
};
#if defined(__cplusplus)
extern "C"
{
#endif
SPAN_DECLARE(int) v8_restart(v8_state_t *s,
int calling_party,
v8_parms_t *parms);
/*! Initialise a V.8 context.
\brief Initialise a V.8 context.
\param s The V.8 context.
\param calling_party TRUE if caller mode, else answerer mode.
\param parms The allowed parameters for the call.
\param result_handler The callback routine used to handle the results of negotiation.
\param user_data An opaque pointer passed to the result_handler routine.
\return A pointer to the V.8 context, or NULL if there was a problem. */
SPAN_DECLARE(v8_state_t *) v8_init(v8_state_t *s,
int calling_party,
v8_parms_t *parms,
v8_result_handler_t result_handler,
void *user_data);
/*! Release a V.8 context.
\brief Release a V.8 context.
\param s The V.8 context.
\return 0 for OK. */
SPAN_DECLARE(int) v8_release(v8_state_t *s);
/*! Free a V.8 context.
\brief Release a V.8 context.
\param s The V.8 context.
\return 0 for OK. */
SPAN_DECLARE(int) v8_free(v8_state_t *s);
SPAN_DECLARE(logging_state_t *) v8_get_logging_state(v8_state_t *s);
/*! Generate a block of V.8 audio samples.
\brief Generate a block of V.8 audio samples.
\param s The V.8 context.
\param amp The audio sample buffer.
\param max_len The number of samples to be generated.
\return The number of samples actually generated.
*/
SPAN_DECLARE_NONSTD(int) v8_tx(v8_state_t *s, int16_t *amp, int max_len);
/*! Process a block of received V.8 audio samples.
\brief Process a block of received V.8 audio samples.
\param s The V.8 context.
\param amp The audio sample buffer.
\param len The number of samples in the buffer.
*/
SPAN_DECLARE_NONSTD(int) v8_rx(v8_state_t *s, const int16_t *amp, int len);
/*! Log the list of supported modulations.
\brief Log the list of supported modulations.
\param s The V.8 context.
\param modulation_schemes The list of supported modulations. */
SPAN_DECLARE(void) v8_log_supported_modulations(v8_state_t *s, int modulation_schemes);
SPAN_DECLARE(const char *) v8_call_function_to_str(int call_function);
SPAN_DECLARE(const char *) v8_modulation_to_str(int modulation_scheme);
SPAN_DECLARE(const char *) v8_protocol_to_str(int protocol);
SPAN_DECLARE(const char *) v8_pstn_access_to_str(int pstn_access);
SPAN_DECLARE(const char *) v8_nsf_to_str(int nsf);
SPAN_DECLARE(const char *) v8_pcm_modem_availability_to_str(int pcm_modem_availability);
SPAN_DECLARE(const char *) v8_t66_to_str(int t66);
#if defined(__cplusplus)
}
#endif
#endif
/*- End of file ------------------------------------------------------------*/
|