12024
|
1 /*
|
|
2 The mediastreamer library aims at providing modular media processing and I/O
|
|
3 for linphone, but also for any telephony application.
|
|
4 Copyright (C) 2001 Simon MORLAT simon.morlat@linphone.org
|
|
5
|
|
6 This library is free software; you can redistribute it and/or
|
|
7 modify it under the terms of the GNU Lesser General Public
|
|
8 License as published by the Free Software Foundation; either
|
|
9 version 2.1 of the License, or (at your option) any later version.
|
|
10
|
|
11 This library is distributed in the hope that it will be useful,
|
|
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
14 Lesser General Public License for more details.
|
|
15
|
|
16 You should have received a copy of the GNU Lesser General Public
|
|
17 License along with this library; if not, write to the Free Software
|
|
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
19 */
|
|
20
|
|
21
|
|
22 #ifndef MSILBCDECODER_H
|
|
23 #define MSILBCDECODER_H
|
|
24
|
|
25 #include <msfilter.h>
|
|
26 #include <mscodec.h>
|
|
27 #include <iLBC_decode.h>
|
|
28
|
|
29 /*this is the class that implements a ILBCdecoder filter*/
|
|
30
|
|
31 #define MSILBCDECODER_MAX_INPUTS 1 /* max output per filter*/
|
|
32
|
|
33
|
|
34 typedef struct _MSILBCDecoder
|
|
35 {
|
|
36 /* the MSILBCDecoder derivates from MSFilter, so the MSFilter object MUST be the first of the MSILBCDecoder object
|
|
37 in order to the object mechanism to work*/
|
|
38 MSFilter filter;
|
|
39 MSQueue *q_inputs[MSILBCDECODER_MAX_INPUTS];
|
|
40 MSFifo *f_outputs[MSILBCDECODER_MAX_INPUTS];
|
|
41 iLBC_Dec_Inst_t ilbc_dec;
|
|
42 int bitrate;
|
|
43 int ms_per_frame;
|
|
44 int samples_per_frame;
|
|
45 int bytes_per_compressed_frame;
|
|
46 } MSILBCDecoder;
|
|
47
|
|
48 typedef struct _MSILBCDecoderClass
|
|
49 {
|
|
50 /* the MSILBCDecoder derivates from MSFilter, so the MSFilter class MUST be the first of the MSILBCDecoder class
|
|
51 in order to the class mechanism to work*/
|
|
52 MSFilterClass parent_class;
|
|
53 } MSILBCDecoderClass;
|
|
54
|
|
55 /* PUBLIC */
|
|
56
|
|
57 /* call this before if don't load the plugin dynamically */
|
|
58 void ms_ilbc_codec_init();
|
|
59
|
|
60 #define MS_ILBCDECODER(filter) ((MSILBCDecoder*)(filter))
|
|
61 #define MS_ILBCDECODER_CLASS(klass) ((MSILBCDecoderClass*)(klass))
|
|
62 MSFilter * ms_ilbc_decoder_new(void);
|
|
63
|
|
64 /* FOR INTERNAL USE*/
|
|
65 void ms_ilbc_decoder_init(MSILBCDecoder *r);
|
|
66 void ms_ilbc_decoder_class_init(MSILBCDecoderClass *klass);
|
|
67 void ms_ilbc_decoder_destroy( MSILBCDecoder *obj);
|
|
68 void ms_ilbc_decoder_process(MSILBCDecoder *r);
|
|
69
|
|
70 extern MSCodecInfo ilbc_info;
|
|
71
|
|
72 #endif
|