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

« back to all changes in this revision

Viewing changes to lib/spandsp/src/spandsp/plc.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:
22
22
 * along with this program; if not, write to the Free Software
23
23
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24
24
 *
25
 
 * $Id: plc.h,v 1.12 2006/10/24 13:45:28 steveu Exp $
 
25
 * $Id: plc.h,v 1.15 2007/04/08 08:16:18 steveu Exp $
26
26
 */
27
27
 
28
28
/*! \file */
29
29
 
30
 
#if !defined(_PLC_H_)
31
 
#define _PLC_H_
 
30
#if !defined(_SPANDSP_PLC_H_)
 
31
#define _SPANDSP_PLC_H_
32
32
 
33
33
/*! \page plc_page Packet loss concealment
34
34
\section plc_page_sec_1 What does it do?
128
128
} plc_state_t;
129
129
 
130
130
 
131
 
#ifdef __cplusplus
132
 
extern "C" {
 
131
#if defined(__cplusplus)
 
132
extern "C"
 
133
{
133
134
#endif
134
135
 
135
136
/*! Process a block of received audio samples for PLC.
159
160
    \return 0 for OK. */
160
161
int plc_release(plc_state_t *s);
161
162
 
162
 
#ifdef __cplusplus
 
163
#if defined(__cplusplus)
163
164
}
164
165
#endif
165
166