mmhais/refacladapt/data/naviengine/hwdev0xa0000a34amrwbencnavi.rss
changeset 0 40261b775718
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mmhais/refacladapt/data/naviengine/hwdev0xa0000a34amrwbencnavi.rss	Tue Feb 02 01:56:55 2010 +0200
@@ -0,0 +1,60 @@
+// 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 "resourceaudioenums.hrh"
+#include "hwdeviceimplementationuids.hrh"
+
+// RESOURCE DEFINITIONS
+
+// -----------------------------------------------------------------------------
+//   
+// AMRWB_ENC_RESOURCE
+// The AMRWB_ENC_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 amrwbenc_resource
+{
+    uid = KUidHwCodecPCM16ToWbAMREnc;
+    data =
+        {
+        DAL_RESOURCE_DATA
+            {
+            mode = 2; //EMMFStateRecording
+
+            cap_data =
+                {
+                HWDEVICE_CAPABILITIES_DATA
+                    {
+                    Rate = EMMFSampleRate16000Hz;
+                    Encoding = EMMFSoundEncoding16BitPCM;
+                    Channels = EMMFMono;
+                    BufferSize = 28800;
+                    }
+                };  // End of cap_data
+            } // End of DAL_RESOURCE_DATA
+    }; // End of data[]
+}
+
+// End of File