epoc32/include/mda/common/gsmaudio.h
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:27:01 +0100
branchSymbian2
changeset 3 e1b950c65cb4
child 4 837f303aceeb
permissions -rw-r--r--
Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
     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 the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #ifndef __GSMAUDIO_H__
    17 #define __GSMAUDIO_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 //* CONSTANTS:
    36 //*******************************************************************
    37 
    38 // Wav Codec Uids
    39 /**
    40 @publishedAll
    41 @released
    42 Uid value for GSM610 codec
    43 */
    44 const TUint KUidMdaGsmWavCodecValue = KUidMdaGsmWavCodecDefine;
    45 /**
    46 @publishedAll
    47 @released
    48 Uid for GSM610 codec
    49 */
    50 const TUid  KUidMdaGsmWavCodec      = { KUidMdaGsmWavCodecValue };
    51 
    52 
    53 //*******************************************************************
    54 //* TMdaGsmWavCodec Class:
    55 //*******************************************************************
    56 
    57 
    58 class TMdaGsmWavCodec : public TMdaWavCodec
    59 /** 
    60  * @internalTechnology
    61  */
    62 	{
    63 public:
    64 	inline TMdaGsmWavCodec();
    65 	};
    66 
    67 
    68 //*******************************************************************
    69 //* INLINE FUNCTIONS:
    70 //*******************************************************************
    71 
    72 inline TMdaGsmWavCodec::TMdaGsmWavCodec() :
    73 	TMdaWavCodec (KUidMdaGsmWavCodec, sizeof(TMdaGsmWavCodec) )
    74 	{
    75 	}
    76 
    77 
    78 #endif	// __GSMAUDIO_H__