~ubuntu-branches/ubuntu/trusty/iaxmodem/trusty

« back to all changes in this revision

Viewing changes to lib/spandsp/spandsp-sim/spandsp/line_models.h

  • Committer: Bazaar Package Importer
  • Author(s): Julien BLACHE
  • Date: 2007-05-15 09:43:53 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20070515094353-bpr27hxvt6taxugb
Tags: 0.3.0~dfsg-1
* New upstream release.
  + Now supports V.17 reception; see changelog for details.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * SpanDSP - a series of DSP components for telephony
 
3
 *
 
4
 * line_model.h - Model a telephone line.
 
5
 *
 
6
 * Written by Steve Underwood <steveu@coppice.org>
 
7
 *
 
8
 * Copyright (C) 2004 Steve Underwood
 
9
 *
 
10
 * All rights reserved.
 
11
 *
 
12
 * This program is free software; you can redistribute it and/or modify
 
13
 * it under the terms of the GNU General Public License version 2, as
 
14
 * published by the Free Software Foundation.
 
15
 *
 
16
 * This program is distributed in the hope that it will be useful,
 
17
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
18
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
19
 * GNU General Public License for more details.
 
20
 *
 
21
 * You should have received a copy of the GNU General Public License
 
22
 * along with this program; if not, write to the Free Software
 
23
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
24
 *
 
25
 * $Id: line_models.h,v 1.1 2007/04/03 12:59:32 steveu Exp $
 
26
 */
 
27
 
 
28
/*! \file */
 
29
 
 
30
#if !defined(_SPANDSP_LINE_MODELS_H_)
 
31
#define _SPANDSP_LINE_MODELS_H_
 
32
 
 
33
extern float proakis_line_model[];
 
34
extern float ad_1_edd_1_model[];
 
35
extern float ad_1_edd_2_model[];
 
36
extern float ad_1_edd_3_model[];
 
37
extern float ad_5_edd_1_model[];
 
38
extern float ad_5_edd_2_model[];
 
39
extern float ad_5_edd_3_model[];
 
40
extern float ad_6_edd_1_model[];
 
41
extern float ad_6_edd_2_model[];
 
42
extern float ad_6_edd_3_model[];
 
43
extern float ad_7_edd_1_model[];
 
44
extern float ad_7_edd_2_model[];
 
45
extern float ad_7_edd_3_model[];
 
46
extern float ad_8_edd_1_model[];
 
47
extern float ad_8_edd_2_model[];
 
48
extern float ad_8_edd_3_model[];
 
49
extern float ad_9_edd_1_model[];
 
50
extern float ad_9_edd_2_model[];
 
51
extern float ad_9_edd_3_model[];
 
52
 
 
53
#ifdef __cplusplus
 
54
extern "C"
 
55
{
 
56
#endif
 
57
 
 
58
#ifdef __cplusplus
 
59
}
 
60
#endif
 
61
 
 
62
#endif
 
63
/*- End of file ------------------------------------------------------------*/