|
1 /* |
|
2 * Copyright (c) 2007-2008 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: VOIP Audio Services |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #include <e32base.h> |
|
20 #include <voipg729decoderintfc.h> |
|
21 #include "VoIPG729DecoderIntfcImpl.h" |
|
22 |
|
23 |
|
24 // --------------------------------------------------------------------------- |
|
25 // CVoIPG729DecoderIntfc::~CVoIPG729DecoderIntfc |
|
26 // --------------------------------------------------------------------------- |
|
27 // |
|
28 EXPORT_C CVoIPG729DecoderIntfc::~CVoIPG729DecoderIntfc() |
|
29 { |
|
30 } |
|
31 |
|
32 // --------------------------------------------------------------------------- |
|
33 // CVoIPG729DecoderIntfc::CVoIPG729DecoderIntfc |
|
34 // --------------------------------------------------------------------------- |
|
35 // |
|
36 CVoIPG729DecoderIntfc::CVoIPG729DecoderIntfc() |
|
37 { |
|
38 } |
|
39 |
|
40 // --------------------------------------------------------------------------- |
|
41 // CVoIPG729DecoderIntfc::ConstructL |
|
42 // --------------------------------------------------------------------------- |
|
43 // |
|
44 void CVoIPG729DecoderIntfc::ConstructL( |
|
45 CVoIPG729DecoderIntfcImpl* aFormatIntfcImpl) |
|
46 { |
|
47 iFormatIntfcImpl = aFormatIntfcImpl; |
|
48 CVoIPFormatIntfc::ConstructL(iFormatIntfcImpl); |
|
49 } |
|
50 |
|
51 // --------------------------------------------------------------------------- |
|
52 // CVoIPG729DecoderIntfc::BadLsfNextBuffer |
|
53 // --------------------------------------------------------------------------- |
|
54 // |
|
55 EXPORT_C TInt CVoIPG729DecoderIntfc::BadLsfNextBuffer() |
|
56 { |
|
57 TInt err = iFormatIntfcImpl->BadLsfNextBuffer(); |
|
58 return err; |
|
59 } |
|
60 |
|
61 |
|
62 // End of file |