sl@0
|
1 |
// Copyright (c) 2006-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 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
|
sl@0
|
17 |
|
sl@0
|
18 |
#include "cdevgencontrol.h"
|
sl@0
|
19 |
|
sl@0
|
20 |
#include <a3f/maudiocontext.h>
|
sl@0
|
21 |
#include <a3f/audioprocessingunittypeuids.h>
|
sl@0
|
22 |
#include <a3f/mbuffersource.h>
|
sl@0
|
23 |
#include <a3f/maudiocodec.h>
|
sl@0
|
24 |
#include <a3f/maudiogaincontrol.h>
|
sl@0
|
25 |
|
sl@0
|
26 |
|
sl@0
|
27 |
// ======== LOCAL FUNCTIONS ========
|
sl@0
|
28 |
|
sl@0
|
29 |
// ======== MEMBER FUNCTIONS ========
|
sl@0
|
30 |
|
sl@0
|
31 |
// ---------------------------------------------------------------------------
|
sl@0
|
32 |
// Default constructor
|
sl@0
|
33 |
// ---------------------------------------------------------------------------
|
sl@0
|
34 |
//
|
sl@0
|
35 |
CDevGenControl::CDevGenControl()
|
sl@0
|
36 |
{
|
sl@0
|
37 |
TRACE_CREATE();
|
sl@0
|
38 |
DP_CONTEXT(CDevGenControl::CDevGenControl *CD1*, CtxDevSound, DPLOCAL);
|
sl@0
|
39 |
DP_IN();
|
sl@0
|
40 |
|
sl@0
|
41 |
DP_OUT();
|
sl@0
|
42 |
}
|
sl@0
|
43 |
|
sl@0
|
44 |
// -----------------------------------------------------------------------------
|
sl@0
|
45 |
// Symbian 2nd phase constructor
|
sl@0
|
46 |
// -----------------------------------------------------------------------------
|
sl@0
|
47 |
//
|
sl@0
|
48 |
void CDevGenControl::ConstructL(CDevAudio* aDevAudio, MDevSoundAdaptationObserver& aDevSoundObserver)
|
sl@0
|
49 |
{
|
sl@0
|
50 |
DP_CONTEXT(CDevGenControl::ConstructL *CD1*, CtxDevSound, DPLOCAL);
|
sl@0
|
51 |
DP_IN();
|
sl@0
|
52 |
CDevAudioControl::ConstructL(aDevAudio, aDevSoundObserver);
|
sl@0
|
53 |
DP_OUT();
|
sl@0
|
54 |
}
|
sl@0
|
55 |
|
sl@0
|
56 |
// -----------------------------------------------------------------------------
|
sl@0
|
57 |
// Symbian constructor
|
sl@0
|
58 |
// -----------------------------------------------------------------------------
|
sl@0
|
59 |
//
|
sl@0
|
60 |
CDevGenControl* CDevGenControl::NewL(CDevAudio* aDevAudio, MDevSoundAdaptationObserver& aDevSoundObserver)
|
sl@0
|
61 |
{
|
sl@0
|
62 |
DP_STATIC_CONTEXT(CDevGenControl::NewL *CD0*, CtxDevSound, DPLOCAL);
|
sl@0
|
63 |
DP_IN();
|
sl@0
|
64 |
CDevGenControl* self = new (ELeave) CDevGenControl();
|
sl@0
|
65 |
CleanupStack::PushL(self);
|
sl@0
|
66 |
self->ConstructL(aDevAudio, aDevSoundObserver);
|
sl@0
|
67 |
CleanupStack::Pop(self);
|
sl@0
|
68 |
DP0_RET(self, "0x%x");
|
sl@0
|
69 |
}
|
sl@0
|
70 |
|
sl@0
|
71 |
// ---------------------------------------------------------------------------
|
sl@0
|
72 |
// Destructor
|
sl@0
|
73 |
// ---------------------------------------------------------------------------
|
sl@0
|
74 |
//
|
sl@0
|
75 |
CDevGenControl::~CDevGenControl()
|
sl@0
|
76 |
{
|
sl@0
|
77 |
DP_CONTEXT(CDevGenControl::~CDevGenControl *CD1*, CtxDevSound, DPLOCAL);
|
sl@0
|
78 |
DP_IN();
|
sl@0
|
79 |
DP_OUT();
|
sl@0
|
80 |
}
|
sl@0
|
81 |
|
sl@0
|
82 |
// End of file
|