~ubuntu-branches/ubuntu/utopic/jconvolver/utopic-proposed

« back to all changes in this revision

Viewing changes to source/config.h

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2010-01-17 17:43:09 UTC
  • Revision ID: james.westby@ubuntu.com-20100117174309-hc5fbqk31xwi1aok
Tags: upstream-0.8.4
ImportĀ upstreamĀ versionĀ 0.8.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//  -----------------------------------------------------------------------------
 
2
//
 
3
//  Copyright (C) 2006-2009 Fons Adriaensen <fons@kokkinizita.net>
 
4
//  
 
5
//  This program is free software; you can redistribute it and/or modify
 
6
//  it under the terms of the GNU General Public License as published by
 
7
//  the Free Software Foundation; either version 2 of the License, or
 
8
//  (at your option) any later version.
 
9
//
 
10
//  This program is distributed in the hope that it will be useful,
 
11
//  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
//  GNU General Public License for more details.
 
14
//
 
15
//  You should have received a copy of the GNU General Public License
 
16
//  along with this program; if not, write to the Free Software
 
17
//  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
18
//
 
19
//  -----------------------------------------------------------------------------
 
20
 
 
21
 
 
22
#ifndef __CONFIG_H
 
23
#define __CONFIG_H
 
24
 
 
25
 
 
26
#include <zita-convolver.h>
 
27
 
 
28
 
 
29
extern Convproc    *conv;
 
30
extern unsigned int rate;
 
31
extern unsigned int ninp;
 
32
extern unsigned int nout;
 
33
extern unsigned int size;
 
34
 
 
35
 
 
36
enum { NOERR, ERR_OTHER, ERR_SYNTAX, ERR_PARAM, ERR_ALLOC, ERR_CANTCD, ERR_COMMAND, ERR_NOCONV, ERR_IONUM };
 
37
 
 
38
 
 
39
extern int  config (const char *config, unsigned int latency);
 
40
extern int  convnew (const char *);
 
41
extern int  inpname (const char *);
 
42
extern int  outname (const char *);
 
43
extern void makeports (void);
 
44
 
 
45
 
 
46
#define MAXSIZE 0x00100000
 
47
 
 
48
 
 
49
#endif
 
50
 
 
51