sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2007-2009 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:
|
sl@0
|
15 |
* Save as expressly licensed to you by Symbian Software Ltd, all rights reserved.
|
sl@0
|
16 |
*
|
sl@0
|
17 |
*
|
sl@0
|
18 |
*/
|
sl@0
|
19 |
|
sl@0
|
20 |
|
sl@0
|
21 |
|
sl@0
|
22 |
/**
|
sl@0
|
23 |
@file
|
sl@0
|
24 |
@publishedPartner
|
sl@0
|
25 |
@released
|
sl@0
|
26 |
*/
|
sl@0
|
27 |
|
sl@0
|
28 |
#ifndef MAUDIOCODECOBSERVER_H
|
sl@0
|
29 |
#define MAUDIOCODECOBSERVER_H
|
sl@0
|
30 |
|
sl@0
|
31 |
#include <e32base.h>
|
sl@0
|
32 |
#include <a3f/a3fbase.h>
|
sl@0
|
33 |
|
sl@0
|
34 |
/**
|
sl@0
|
35 |
* An interface to a set of AudioGainControl callback functions.
|
sl@0
|
36 |
*
|
sl@0
|
37 |
* This serves as the method of communication between the client and the
|
sl@0
|
38 |
* AudioGainControl.
|
sl@0
|
39 |
*
|
sl@0
|
40 |
* The class is a mixin and is intended to be inherited by the client class
|
sl@0
|
41 |
* that is interested in observing the Gain operations. The functions
|
sl@0
|
42 |
* encapsulated by this class are called when specific events occur while
|
sl@0
|
43 |
* processing audio.
|
sl@0
|
44 |
*
|
sl@0
|
45 |
*/
|
sl@0
|
46 |
class MAudioCodecObserver
|
sl@0
|
47 |
{
|
sl@0
|
48 |
public:
|
sl@0
|
49 |
|
sl@0
|
50 |
/**
|
sl@0
|
51 |
* Callback showing completion SetSampleRate().
|
sl@0
|
52 |
*
|
sl@0
|
53 |
* @param aError will be KErrNone if the action succeeded, otherwise it will be a system error
|
sl@0
|
54 |
* specific errors to be defined.
|
sl@0
|
55 |
*/
|
sl@0
|
56 |
virtual void SampleRateSet(TInt aError)=0;
|
sl@0
|
57 |
|
sl@0
|
58 |
/**
|
sl@0
|
59 |
* Callback showing completion SetMode().
|
sl@0
|
60 |
*
|
sl@0
|
61 |
* @param aError will be KErrNone if the action succeeded, otherwise it will be a system error
|
sl@0
|
62 |
* specific errors to be defined.
|
sl@0
|
63 |
*/
|
sl@0
|
64 |
virtual void ModeSet(TInt aError)=0;
|
sl@0
|
65 |
|
sl@0
|
66 |
/**
|
sl@0
|
67 |
* Callback showing completion GetSupportedSampleRates().
|
sl@0
|
68 |
*
|
sl@0
|
69 |
* @param Error will be KErrNone if the action succeeded, otherwise it will be a system error
|
sl@0
|
70 |
* specific errors to be defined. If aError is not KErrNone, then the state of aSupportedRates is undefined.
|
sl@0
|
71 |
*/
|
sl@0
|
72 |
virtual void GetSupportedSampleRatesComplete (TInt aError)=0;
|
sl@0
|
73 |
|
sl@0
|
74 |
/**
|
sl@0
|
75 |
* Callback showing completion GetSupportedModes().
|
sl@0
|
76 |
*
|
sl@0
|
77 |
* @param aError will be KErrNone if the action succeeded, otherwise it will be a system error
|
sl@0
|
78 |
* specific errors to be defined. If aError is not KErrNone, then the state of aSupportedModes is undefined.
|
sl@0
|
79 |
*/
|
sl@0
|
80 |
virtual void GetSupportedModesComplete (TInt aError)=0;
|
sl@0
|
81 |
|
sl@0
|
82 |
};
|
sl@0
|
83 |
|
sl@0
|
84 |
#endif // MAUDIOCODECOBSERVER_H
|
sl@0
|
85 |
|