sl@0
|
1 |
// Copyright (c) 2003-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 |
// source\server\mmfswcodecdatapath.cpp
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include "mmfSwCodecDataPath.h"
|
sl@0
|
19 |
|
sl@0
|
20 |
|
sl@0
|
21 |
CMMFSwCodecDataPath::~CMMFSwCodecDataPath()
|
sl@0
|
22 |
{
|
sl@0
|
23 |
|
sl@0
|
24 |
}
|
sl@0
|
25 |
|
sl@0
|
26 |
/**
|
sl@0
|
27 |
Retrieves a custom interface to the device.
|
sl@0
|
28 |
Usually the derived class should
|
sl@0
|
29 |
return the implementation for this.
|
sl@0
|
30 |
|
sl@0
|
31 |
@param aInterface
|
sl@0
|
32 |
Interface UID, defined with the custom interface.
|
sl@0
|
33 |
|
sl@0
|
34 |
@return NULL
|
sl@0
|
35 |
|
sl@0
|
36 |
*/
|
sl@0
|
37 |
TAny* CMMFSwCodecDataPath::CustomInterface(TUid /*aInterface*/)
|
sl@0
|
38 |
{
|
sl@0
|
39 |
return NULL;
|
sl@0
|
40 |
}
|
sl@0
|
41 |
|
sl@0
|
42 |
|
sl@0
|
43 |
|
sl@0
|
44 |
/*
|
sl@0
|
45 |
* CycleAudioBufferL
|
sl@0
|
46 |
*
|
sl@0
|
47 |
* Sets up a usable buffer for passing to MMF
|
sl@0
|
48 |
*
|
sl@0
|
49 |
* This method has been written such that it must allocate a new buffer before
|
sl@0
|
50 |
* replacing the existing one. The purpose of this is to force creation of a
|
sl@0
|
51 |
* new buffer. Simply deleting and then re-allocing may result in the same
|
sl@0
|
52 |
* address being used.
|
sl@0
|
53 |
*
|
sl@0
|
54 |
* Only cycles if there is enough memory
|
sl@0
|
55 |
*
|
sl@0
|
56 |
*/
|
sl@0
|
57 |
#ifdef __CYCLE_MMF_DATABUFFERS__
|
sl@0
|
58 |
CMMFDataBuffer* CMMFSwCodecDataPath::CycleAudioBuffer(CMMFDataBuffer* aBuffer)
|
sl@0
|
59 |
{
|
sl@0
|
60 |
CMMFDataBuffer* buffer = NULL;
|
sl@0
|
61 |
TUint bufferSize = aBuffer->Data().MaxLength();
|
sl@0
|
62 |
|
sl@0
|
63 |
#ifdef __USE_MMF_TRANSFERBUFFERS__
|
sl@0
|
64 |
TRAPD(err, buffer = CreateTransferBufferL(bufferSize, static_cast<CMMFTransferBuffer*>(aBuffer)));
|
sl@0
|
65 |
#else
|
sl@0
|
66 |
TRAPD(err,buffer = CMMFDataBuffer::NewL(bufferSize));
|
sl@0
|
67 |
|
sl@0
|
68 |
if (err == KErrNone)
|
sl@0
|
69 |
{
|
sl@0
|
70 |
delete aBuffer;
|
sl@0
|
71 |
}
|
sl@0
|
72 |
#endif
|
sl@0
|
73 |
if (err != KErrNone)
|
sl@0
|
74 |
{//there was a problem creating buffer eg OOM so use same buffer
|
sl@0
|
75 |
buffer = aBuffer;
|
sl@0
|
76 |
}
|
sl@0
|
77 |
|
sl@0
|
78 |
return buffer;
|
sl@0
|
79 |
|
sl@0
|
80 |
}
|
sl@0
|
81 |
#endif
|
sl@0
|
82 |
|
sl@0
|
83 |
/*
|
sl@0
|
84 |
* DoCleanupRHandleBase
|
sl@0
|
85 |
*
|
sl@0
|
86 |
* This method will initially Close the handle and then delete it.
|
sl@0
|
87 |
*
|
sl@0
|
88 |
*/
|
sl@0
|
89 |
#ifdef __USE_MMF_TRANSFERBUFFERS__
|
sl@0
|
90 |
inline static void DoCleanupRHandleBase(TAny* aRHandleBase)
|
sl@0
|
91 |
{
|
sl@0
|
92 |
ASSERT(aRHandleBase);
|
sl@0
|
93 |
RHandleBase* rHandleBase = STATIC_CAST(RHandleBase*, aRHandleBase);
|
sl@0
|
94 |
TRAPD(error, rHandleBase->Close());
|
sl@0
|
95 |
delete aRHandleBase;
|
sl@0
|
96 |
}
|
sl@0
|
97 |
|
sl@0
|
98 |
CMMFTransferBuffer* CMMFSwCodecDataPath::CreateTransferBufferL(TUint aBufferSize, CMMFTransferBuffer* aOldBuffer)
|
sl@0
|
99 |
{
|
sl@0
|
100 |
CMMFTransferBuffer* buffer = NULL;
|
sl@0
|
101 |
|
sl@0
|
102 |
RTransferBuffer* transBuffer = new (ELeave) RTransferBuffer;
|
sl@0
|
103 |
|
sl@0
|
104 |
TCleanupItem bufferCleanupItem(DoCleanupRHandleBase, transBuffer); //closes and deletes.
|
sl@0
|
105 |
CleanupStack::PushL(bufferCleanupItem);
|
sl@0
|
106 |
|
sl@0
|
107 |
RTransferWindow* transWindow = new (ELeave) RTransferWindow;
|
sl@0
|
108 |
|
sl@0
|
109 |
TCleanupItem windowCleanupItem(DoCleanupRHandleBase, transWindow); //closes and deletes.
|
sl@0
|
110 |
CleanupStack::PushL(windowCleanupItem);
|
sl@0
|
111 |
|
sl@0
|
112 |
User::LeaveIfError(transBuffer->Create(aBufferSize));
|
sl@0
|
113 |
User::LeaveIfError(transWindow->Create(aBufferSize));
|
sl@0
|
114 |
User::LeaveIfError(transWindow->MapInBuffer(*transBuffer));
|
sl@0
|
115 |
|
sl@0
|
116 |
buffer = CMMFTransferBuffer::NewL(*transWindow);
|
sl@0
|
117 |
|
sl@0
|
118 |
delete aOldBuffer; //closes RTransferWindow
|
sl@0
|
119 |
delete iTransferWindow;
|
sl@0
|
120 |
|
sl@0
|
121 |
if(iTransferBuffer)
|
sl@0
|
122 |
{
|
sl@0
|
123 |
iTransferBuffer->Close();
|
sl@0
|
124 |
}
|
sl@0
|
125 |
delete iTransferBuffer;
|
sl@0
|
126 |
|
sl@0
|
127 |
iTransferBuffer = transBuffer;
|
sl@0
|
128 |
iTransferWindow = transWindow;
|
sl@0
|
129 |
|
sl@0
|
130 |
CleanupStack::Pop(transWindow);
|
sl@0
|
131 |
CleanupStack::Pop(transBuffer);
|
sl@0
|
132 |
|
sl@0
|
133 |
return buffer;
|
sl@0
|
134 |
}
|
sl@0
|
135 |
#endif
|
sl@0
|
136 |
|
sl@0
|
137 |
|
sl@0
|
138 |
#ifdef __USE_MMF_PTRBUFFERS__
|
sl@0
|
139 |
CMMFPtrBuffer* CMMFSwCodecDataPath::CreatePtrBufferL(TUint aBufferSize)
|
sl@0
|
140 |
{
|
sl@0
|
141 |
CMMFPtrBuffer* buffer = NULL;
|
sl@0
|
142 |
if (iPtrBufferMemoryBlock)
|
sl@0
|
143 |
{
|
sl@0
|
144 |
delete iPtrBufferMemoryBlock;//incase already exisits
|
sl@0
|
145 |
iPtrBufferMemoryBlock = NULL;
|
sl@0
|
146 |
}
|
sl@0
|
147 |
iPtrBufferMemoryBlock = HBufC8::NewL(aBufferSize);
|
sl@0
|
148 |
TPtr8 ptrMemoryBlock(iPtrBufferMemoryBlock->Des());
|
sl@0
|
149 |
buffer = CMMFPtrBuffer::NewL(ptrMemoryBlock);
|
sl@0
|
150 |
return buffer;
|
sl@0
|
151 |
}
|
sl@0
|
152 |
#endif // __USE_MMF_PTRBUFFERS__
|
sl@0
|
153 |
|
sl@0
|
154 |
|
sl@0
|
155 |
|