~ubuntu-branches/ubuntu/raring/lmms/raring-proposed

« back to all changes in this revision

Viewing changes to plugins/ladspa_effect/swh/gsm/gsm.h

  • Committer: Charlie Smotherman
  • Date: 2012-12-05 22:08:38 UTC
  • mfrom: (33.1.7 lmms_0.4.13)
  • Revision ID: cjsmo@cableone.net-20121205220838-09pjfzew9m5023hr
* New  Upstream release.
  - Minor tweaking to ZynAddSubFX, CALF, SWH plugins  and Stefan Fendt's RC
    filters.
  - Added UI fixes: Magnentic effect of knobs and Piano-roll fixes
  - Updated German localization and copyright year
* debian/lmms-common.install:
  - added /usr/share/applications so the lmms.desktop file will correctly
    install (LP: #863366)
  - This should also fix the Software Center not displaying lmms in sound
    and video (LP: #824231)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 1992 by Jutta Degener and Carsten Bormann, Technische
 
3
 * Universitaet Berlin.  See the accompanying file "COPYRIGHT" for
 
4
 * details.  THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
 
5
 */
 
6
 
 
7
/*$Header: /home/cvs/giga/ladspa-swh/gsm/gsm.h,v 1.1 2001/06/10 21:36:51 swh Exp $*/
 
8
 
 
9
#ifndef GSM_H
 
10
#define GSM_H
 
11
 
 
12
#ifdef __cplusplus
 
13
#       define  NeedFunctionPrototypes  1
 
14
#endif
 
15
 
 
16
#if __STDC__
 
17
#       define  NeedFunctionPrototypes  1
 
18
#endif
 
19
 
 
20
#ifdef _NO_PROTO
 
21
#       undef   NeedFunctionPrototypes
 
22
#endif
 
23
 
 
24
#ifdef NeedFunctionPrototypes
 
25
#   include     <stdio.h>               /* for FILE *   */
 
26
#endif
 
27
 
 
28
#undef GSM_P
 
29
#if NeedFunctionPrototypes
 
30
#       define  GSM_P( protos ) protos
 
31
#else
 
32
#       define  GSM_P( protos ) ( /* protos */ )
 
33
#endif
 
34
 
 
35
/*
 
36
 *      Interface
 
37
 */
 
38
 
 
39
typedef struct gsm_state *      gsm;
 
40
typedef short                   gsm_signal;             /* signed 16 bit */
 
41
typedef unsigned char           gsm_byte;
 
42
typedef gsm_byte                gsm_frame[33];          /* 33 * 8 bits   */
 
43
 
 
44
#define GSM_MAGIC               0xD                     /* 13 kbit/s RPE-LTP */
 
45
 
 
46
#define GSM_PATCHLEVEL          10
 
47
#define GSM_MINOR               0
 
48
#define GSM_MAJOR               1
 
49
 
 
50
#define GSM_OPT_VERBOSE         1
 
51
#define GSM_OPT_FAST            2
 
52
#define GSM_OPT_LTP_CUT         3
 
53
#define GSM_OPT_WAV49           4
 
54
#define GSM_OPT_FRAME_INDEX     5
 
55
#define GSM_OPT_FRAME_CHAIN     6
 
56
 
 
57
extern gsm  gsm_create  GSM_P((void));
 
58
extern void gsm_destroy GSM_P((gsm));   
 
59
 
 
60
extern int  gsm_print   GSM_P((FILE *, gsm, gsm_byte  *));
 
61
extern int  gsm_option  GSM_P((gsm, int, int *));
 
62
 
 
63
extern void gsm_encode  GSM_P((gsm, gsm_signal *, gsm_byte  *));
 
64
extern int  gsm_decode  GSM_P((gsm, gsm_byte   *, gsm_signal *));
 
65
 
 
66
extern int  gsm_explode GSM_P((gsm, gsm_byte   *, gsm_signal *));
 
67
extern void gsm_implode GSM_P((gsm, gsm_signal *, gsm_byte   *));
 
68
 
 
69
#undef  GSM_P
 
70
 
 
71
#endif  /* GSM_H */