File: fsadders.h

package info (click to toggle)
dbmix 0.9.8-6.1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 2,888 kB
  • ctags: 2,148
  • sloc: ansic: 12,309; sh: 11,418; makefile: 152
file content (65 lines) | stat: -rw-r--r-- 2,344 bytes parent folder | download | duplicates (7)
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
/*
  fsadders.h

  structure and function definitions for the fourier synthesis adders

  Author: Robert Michael S Dean
  Copyright (c) 1999

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public Licensse as published by
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.
 
   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 General Public License for more details.
 
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

 */

#ifndef __FSADDERS_H_
#define __FSADDERS_H_

signed short *  fs_add2channels(signed short * output, channel_buf * input1, 
			       channel_buf * input2);

signed short * fs_add3channels(signed short * output, channel_buf * input1, 
		    channel_buf * input2, channel_buf* input3);

signed short * fs_add4channels(signed short *output, channel_buf *input1, 
			       channel_buf *input2, channel_buf *input3, 
			       channel_buf *input4);

signed short * fs_add5channels(signed short *output, channel_buf *input1, 
			       channel_buf *input2, channel_buf *input3, 
			       channel_buf *input4, channel_buf *input5);

signed short * fs_add6channels(signed short *output, channel_buf *input1, 
			       channel_buf *input2, channel_buf *input3, 
			       channel_buf *input4, channel_buf *input5,
			       channel_buf *input6);

signed short * fs_add7channels(signed short *output, channel_buf *input1, 
			       channel_buf *input2, channel_buf *input3, 
			       channel_buf *input4, channel_buf *input5,
			       channel_buf *input6, channel_buf *input7);

signed short * fs_add8channels(signed short *output, channel_buf *input1, 
			       channel_buf *input2, channel_buf *input3, 
			       channel_buf *input4, channel_buf *input5,
			       channel_buf *input6, channel_buf *input7,
			       channel_buf *input8);

signed short * fs_addNchannels(signed short* output, channel_buf ** 
			       in_channels, int num_channels);

#endif /* __FSADDERS_H_ */