sl@0
|
1 |
// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// MmfBtSwCodecWrapper.dll Hardware device wrapper for reference software audio devices
|
sl@0
|
15 |
// __CYCLE_MMF_DATABUFFERS__ tries to replicate the conditions described in INC021405
|
sl@0
|
16 |
// ('Play-EOF-Play on HwAccelerated solution Panics'). Each time DevSound returns a
|
sl@0
|
17 |
// buffer it will be different to the previous one supplied. This simulates implementations
|
sl@0
|
18 |
// where multiple buffers are available.
|
sl@0
|
19 |
// A similar thing happens on OMAP hardware.
|
sl@0
|
20 |
// MACRO __CYCLE_MMF_DATABUFFERS__
|
sl@0
|
21 |
// __USE_MMF_TRANSFERBUFFERS__ enables devsound to create CMMFTransferBuffers rather than
|
sl@0
|
22 |
// CMMFDescriptorBuffers
|
sl@0
|
23 |
// MACRO __USE_MMF_TRANSFERBUFFERS__
|
sl@0
|
24 |
// __USE_MMF_PTRBUFFERS__ enables devsound to create CMMFPtrBuffers rather than
|
sl@0
|
25 |
// CMMFDescriptorBuffers
|
sl@0
|
26 |
// note this MACRO cannot be used in conjunction with __CYCLE_MMF_DATABUFFERS__ and/or __USE_MMF_TRANSFERBUFFERS__
|
sl@0
|
27 |
// MACRO __USE_MMF_PTRBUFFERS__
|
sl@0
|
28 |
//
|
sl@0
|
29 |
//
|
sl@0
|
30 |
|
sl@0
|
31 |
/**
|
sl@0
|
32 |
@file
|
sl@0
|
33 |
*/
|
sl@0
|
34 |
|
sl@0
|
35 |
|
sl@0
|
36 |
|
sl@0
|
37 |
target mmfbtswcodecwrapper.dll
|
sl@0
|
38 |
CAPABILITY ALL -TCB
|
sl@0
|
39 |
targettype DLL
|
sl@0
|
40 |
|
sl@0
|
41 |
UID 0x1000008D 0x101F9EEE //static interface DLL Uid KSharedLibraryUid
|
sl@0
|
42 |
VENDORID 0x70000001
|
sl@0
|
43 |
|
sl@0
|
44 |
OS_LAYER_SYSTEMINCLUDE_SYMBIAN
|
sl@0
|
45 |
|
sl@0
|
46 |
userinclude ../../src/RoutingSoundDevice
|
sl@0
|
47 |
userinclude ../../src/A2dpBlueTooth/client
|
sl@0
|
48 |
userinclude ../../src/A2dpBlueTooth/server
|
sl@0
|
49 |
|
sl@0
|
50 |
SOURCEPATH ../../src/swcodecwrapper
|
sl@0
|
51 |
|
sl@0
|
52 |
source mmfBtSwCodecWrapper.cpp
|
sl@0
|
53 |
source mmfBtSwCodecDataPath.cpp
|
sl@0
|
54 |
source mmfBtSwCodecPlayDataPath.cpp
|
sl@0
|
55 |
source mmfBtSwCodecRecordDataPath.cpp
|
sl@0
|
56 |
source mmfBtSwCodecConvertDataPath.cpp
|
sl@0
|
57 |
source mmfBtSwCodecUtility.cpp
|
sl@0
|
58 |
|
sl@0
|
59 |
|
sl@0
|
60 |
library euser.lib
|
sl@0
|
61 |
library mmfserverbaseclasses.lib
|
sl@0
|
62 |
library ecom.lib
|
sl@0
|
63 |
library btroutingsounddevice.lib
|
sl@0
|
64 |
|
sl@0
|
65 |
deffile MmfBtSwCodecWrapper.def
|
sl@0
|
66 |
nostrictdef
|
sl@0
|
67 |
|
sl@0
|
68 |
|
sl@0
|
69 |
start wins
|
sl@0
|
70 |
baseaddress 0x4F140000
|
sl@0
|
71 |
end
|