• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2008-2009 SVOX AG, Baslerstr. 30, 8048 Zuerich, Switzerland
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 /**
17  * @file picopr.h
18  *
19  * text preprocessor PU - include file
20  *
21  * Copyright (C) 2008-2009 SVOX AG, Baslerstr. 30, 8048 Zuerich, Switzerland
22  * All rights reserved.
23  *
24  * History:
25  * - 2009-04-20 -- initial version
26  *
27  */
28 /**
29  * @addtogroup picopr
30  *
31  * <b> Text Pre Processing module </b>\n
32  *
33 */
34 #ifndef PICOPR_H_
35 #define PICOPR_H_
36 
37 #include "picoos.h"
38 #include "picodata.h"
39 #include "picorsrc.h"
40 
41 #ifdef __cplusplus
42 extern "C" {
43 #endif
44 #if 0
45 }
46 #endif
47 
48 
49 picodata_ProcessingUnit picopr_newPreprocUnit(
50         picoos_MemoryManager mm,
51         picoos_Common common,
52         picodata_CharBuffer cbIn,
53         picodata_CharBuffer cbOut,
54         picorsrc_Voice voice);
55 
56 #define PICOPR_OUTBUF_SIZE 256
57 
58 #ifdef __cplusplus
59 }
60 #endif
61 
62 
63 #endif /*PICOPR_H_*/
64