12024
|
1 /*
|
|
2 Copyright (C) 2003 Robert W. Brewer <rbrewer at op.net>
|
|
3
|
|
4 This library is free software; you can redistribute it and/or
|
|
5 modify it under the terms of the GNU Lesser General Public
|
|
6 License as published by the Free Software Foundation; either
|
|
7 version 2.1 of the License, or (at your option) any later version.
|
|
8
|
|
9 This library is distributed in the hope that it will be useful,
|
|
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
12 Lesser General Public License for more details.
|
|
13
|
|
14 You should have received a copy of the GNU Lesser General Public
|
|
15 License along with this library; if not, write to the Free Software
|
|
16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
17 */
|
|
18
|
|
19
|
|
20 #ifndef MSTRUESPEECHENCODER_H
|
|
21 #define MSTRUESPEECHENCODER_H
|
|
22
|
|
23 #include "msfilter.h"
|
|
24 #include <win32codec.h>
|
|
25
|
|
26
|
|
27 #define MS_TRUESPEECH_CODEC_MAX_IN_OUT 1 /* max inputs/outputs per filter*/
|
|
28
|
|
29 #define TRUESPEECH_FORMAT_TAG 0x22
|
|
30 #define TRUESPEECH_DLL "tssoft32.acm"
|
|
31
|
|
32 typedef struct _MSTrueSpeechEncoder
|
|
33 {
|
|
34 /* the MSTrueSpeechEncoder derives from MSFilter, so the MSFilter
|
|
35 object MUST be the first of the MSTrueSpeechEncoder object
|
|
36 in order for the object mechanism to work*/
|
|
37 MSFilter filter;
|
|
38 MSFifo *f_inputs[MS_TRUESPEECH_CODEC_MAX_IN_OUT];
|
|
39 MSFifo *f_outputs[MS_TRUESPEECH_CODEC_MAX_IN_OUT];
|
|
40 Win32Codec* codec;
|
|
41 } MSTrueSpeechEncoder;
|
|
42
|
|
43 typedef struct _MSTrueSpeechEncoderClass
|
|
44 {
|
|
45 /* the MSTrueSpeechEncoder derives from MSFilter,
|
|
46 so the MSFilter class MUST be the first of the MSTrueSpechEncoder
|
|
47 class
|
|
48 in order for the class mechanism to work*/
|
|
49 MSFilterClass parent_class;
|
|
50 Win32CodecDriver* driver;
|
|
51 } MSTrueSpeechEncoderClass;
|
|
52
|
|
53 /* PUBLIC */
|
|
54 #define MS_TRUESPEECHENCODER(filter) ((MSTrueSpechMEncoder*)(filter))
|
|
55 #define MS_TRUESPEECHENCODER_CLASS(klass) ((MSTrueSpeechEncoderClass*)(klass))
|
|
56 MSFilter * ms_truespeechencoder_new(void);
|
|
57
|
|
58 /* for internal use only */
|
|
59 WAVEFORMATEX* ms_truespeechencoder_wf_create();
|
|
60
|
|
61
|
|
62 #endif
|