os/mm/mmlibs/mmfw/src/Plugin/Codec/audio/GSM610/GSM610.RSS
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     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 #include "Mda\Server\Base.rh"
    17 #include "Mda\Server\Resource.rh"
    18 #include "Mda\Common\Audio.hrh"
    19 #include "Mda\Common\GsmAudio.hrh"
    20 
    21 #include "Gsm610.01t"
    22 
    23 RESOURCE MDA_LIBRARY audio_library
    24 	{
    25 	library_uid= KUidMdaGsmWavCodecLibraryDefine;
    26 	version= MDA_LIBRARY_VERSION { build = 1; };
    27 	objects=
    28 		{
    29 
    30 // WAV Codecs
    31 		MDA_OBJECT_ENTRY 
    32 			{  
    33 			object_identifier_uid =  KUidMdaGsmWavCodecDefine;
    34 			object_type_uid = KUidMdaWavCodecDefine;
    35 			info_entry = wav_codec_gsm; 
    36 			}
    37 		};
    38 	}
    39 
    40 
    41 RESOURCE MDARES_ENTRY wav_codec_gsm
    42 	{
    43 	signature = { MDARES_SIG_DATA {data_string_id=1;} };
    44 	strings = 
    45 		{
    46 		MDARES_TEXT { text=MEDIASVR_GENAUDIO_GSM_CODEC_NAME; }, // Id=0
    47 		MDARES_BINARY { binary=KMdaWavFormatTypeGsmData; } // Id=1
    48 		};
    49 	}
    50 
    51