sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description: AudioInput API header
|
sl@0
|
15 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
#ifndef CAUDIOINPUT_H
|
sl@0
|
20 |
#define CAUDIOINPUT_H
|
sl@0
|
21 |
|
sl@0
|
22 |
// INCLUDES
|
sl@0
|
23 |
#include <e32base.h>
|
sl@0
|
24 |
#include <midiclientutility.h>
|
sl@0
|
25 |
|
sl@0
|
26 |
// FORWARD DECLARATIONS
|
sl@0
|
27 |
class CMdaAudioRecorderUtility;
|
sl@0
|
28 |
class CMMFDevSound;
|
sl@0
|
29 |
class MCustomInterface;
|
sl@0
|
30 |
class MCustomCommand;
|
sl@0
|
31 |
class CMdaAudioInputStream;
|
sl@0
|
32 |
class CVideoRecorderUtility;
|
sl@0
|
33 |
|
sl@0
|
34 |
// CLASS DECLARATION
|
sl@0
|
35 |
|
sl@0
|
36 |
/**
|
sl@0
|
37 |
* ?one_line_short_description.
|
sl@0
|
38 |
* ?other_description_lines
|
sl@0
|
39 |
*/
|
sl@0
|
40 |
class CAudioInput : public CBase
|
sl@0
|
41 |
{
|
sl@0
|
42 |
public: // Data Types
|
sl@0
|
43 |
|
sl@0
|
44 |
enum TAudioInputPreference
|
sl@0
|
45 |
{
|
sl@0
|
46 |
EDefaultMic,
|
sl@0
|
47 |
EOutputToSpeaker,
|
sl@0
|
48 |
EFMRadio,
|
sl@0
|
49 |
EVoiceCall,
|
sl@0
|
50 |
ELineIn
|
sl@0
|
51 |
};
|
sl@0
|
52 |
|
sl@0
|
53 |
typedef TArray<TAudioInputPreference> TAudioInputArray;
|
sl@0
|
54 |
|
sl@0
|
55 |
public: // Constructors and destructor
|
sl@0
|
56 |
|
sl@0
|
57 |
/**
|
sl@0
|
58 |
* Two-phased constructor.
|
sl@0
|
59 |
*/
|
sl@0
|
60 |
IMPORT_C static CAudioInput* NewL(CMdaAudioRecorderUtility& aUtility);
|
sl@0
|
61 |
// IMPORT_C static CAudioInput* NewL(CMidiClientUtility& aUtility);
|
sl@0
|
62 |
IMPORT_C static CAudioInput* NewL(CMMFDevSound& aDevSound);
|
sl@0
|
63 |
IMPORT_C static CAudioInput* NewL(MCustomInterface& aUtility);
|
sl@0
|
64 |
IMPORT_C static CAudioInput* NewL(MCustomCommand& aUtility);
|
sl@0
|
65 |
IMPORT_C static CAudioInput* NewL(CMdaAudioInputStream& aUtility);
|
sl@0
|
66 |
IMPORT_C static CAudioInput* NewL(CVideoRecorderUtility& aUtility);
|
sl@0
|
67 |
|
sl@0
|
68 |
/**
|
sl@0
|
69 |
* ?member_description.
|
sl@0
|
70 |
* @param ?arg1 ?description
|
sl@0
|
71 |
* @return ?description
|
sl@0
|
72 |
*/
|
sl@0
|
73 |
virtual TAudioInputArray AudioInput() = 0;
|
sl@0
|
74 |
|
sl@0
|
75 |
/**
|
sl@0
|
76 |
* ?member_description.
|
sl@0
|
77 |
* @param ?arg1 ?description
|
sl@0
|
78 |
* @return ?description
|
sl@0
|
79 |
*/
|
sl@0
|
80 |
virtual void SetAudioInputL(TAudioInputArray aAudioInputs) = 0;
|
sl@0
|
81 |
|
sl@0
|
82 |
};
|
sl@0
|
83 |
|
sl@0
|
84 |
#endif // CAUDIOINPUT_H
|
sl@0
|
85 |
|
sl@0
|
86 |
// End of File
|