mmhais/refacladapt/data/HwDev0x10283463ToneDefault.rss
author hgs
Wed, 13 Oct 2010 12:08:48 +0100
changeset 3 28bdc4aca325
parent 0 79dd3e2336a0
permissions -rw-r--r--
2010wk42_01

// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
//



// INCLUDES
#include "resourcehwdeviceinitstructs.rh"
#include "hwdeviceimplementationuids.hrh"
#include "resourceaudioenums.hrh"

// RESOURCE DEFINITIONS

// -----------------------------------------------------------------------------
//   
// TONE_RESOURCE
// The TONE_RESOURCE resource provides the client with the following 
// initialization information:
// 1. Hardware device UID. This UID is defined by the client.
// 2. The device capabilities parameters consisting of sampling rate,
//    type of encoding, channel definition (mono or stereo) and buffer size.
//
// -----------------------------------------------------------------------------
//

RESOURCE DAL_RESOURCE_DATA_RESOURCE tone_resource
{
uid	= 0x10283463;
    data =
        {
        DAL_RESOURCE_DATA
            {
            mode = 1; //EMMFStatePlaying

            cap_data =
                {
                HWDEVICE_CAPABILITIES_DATA
                    {
					Rate =	 0x01;
					Encoding = EMMFSoundEncoding16BitPCM;
					Channels = 3;
					BufferSize = 4096;
                    }
                };  // End of cap_data
            } // End of DAL_RESOURCE_DATA

    }; // End of data[]
}


// End of File