|
1 // Copyright (c) 2000-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 #ifndef __MDAGSMWAVCODEC_H__ |
|
17 #define __MDAGSMWAVCODEC_H__ |
|
18 |
|
19 |
|
20 //******************************************************************* |
|
21 //* INCLUDE FILES: |
|
22 //******************************************************************* |
|
23 |
|
24 // Standard EPOC32 includes |
|
25 #include <e32base.h> |
|
26 // Public Media Server includes |
|
27 #include <mda/common/base.h> |
|
28 #include <mda/common/resource.h> |
|
29 #include <mda/common/controller.h> |
|
30 #include <mda/common/audio.hrh> |
|
31 #include <mda/common/gsmaudio.hrh> |
|
32 |
|
33 |
|
34 //******************************************************************* |
|
35 //* TMdaGsmWavCodec Class: |
|
36 //******************************************************************* |
|
37 |
|
38 |
|
39 class TMdaGsmWavCodec : public TMdaWavCodec |
|
40 /** |
|
41 * @internalTechnology |
|
42 */ |
|
43 { |
|
44 public: |
|
45 inline TMdaGsmWavCodec(); |
|
46 }; |
|
47 |
|
48 |
|
49 //******************************************************************* |
|
50 //* INLINE FUNCTIONS: |
|
51 //******************************************************************* |
|
52 |
|
53 inline TMdaGsmWavCodec::TMdaGsmWavCodec() : |
|
54 TMdaWavCodec (KUidMdaGsmWavCodec, sizeof(TMdaGsmWavCodec) ) |
|
55 { |
|
56 } |
|
57 |
|
58 |
|
59 #endif // __MDAGSMWAVCODEC_H__ |