Update contrib.
1 // Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
21 #ifndef __TASKCONFIG_H__
22 #define __TASKCONFIG_H__
28 TTaskSampleRate is a member of TTaskConfig which tells the HwDevice plugin the sample
29 rate of the audio data.
33 /** 8000 Hz Sampling Rate
35 ETask8000Hz = 0x00000001,
36 /** 11025 Hz Sampling Rate
38 ETask11025Hz = 0x00000002,
39 /** 16000 Hz Sampling Rate
41 ETask16000Hz = 0x00000004,
42 /** 22050 Hz Sampling Rate
44 ETask22050Hz = 0x00000008,
45 /** 32000 Hz Sampling Rate
47 ETask32000Hz = 0x00000010,
48 /** 44100 Hz Sampling Rate
50 ETask44100Hz = 0x00000020,
51 /** 48000 Hz Sampling Rate
53 ETask48000Hz = 0x00000040,
54 /** 88200 Hz Sampling Rate
56 ETask88200Hz = 0x00000080,
57 /** 96000 Hz Sampling Rate
59 ETask96000Hz = 0x00000100,
60 /** 12000 Hz Sampling Rate
62 ETask12000Hz = 0x00000200,
63 /** 24000 Hz Sampling Rate
65 ETask24000Hz = 0x00000400,
66 /** 64000 Hz Sampling Rate
68 ETask64000Hz = 0x00000800
75 TTaskStereoMode is a member of TTaskConfig which tells the HwDevice plugin whether stereo audio
76 data is interleaved or not.
80 /** Audio data is mono.
82 ETaskMono = 0x00000001,
83 /** Audio data is interleaved.
85 ETaskInterleaved = 0x00000002,
86 /** Audio data is non-interleaved.
88 ETaskNonInterleaved = 0x00000004
95 Used by the SetConfig() method to configure the sample rate and stereo mode of a CMMFHwDevice
96 plugin. The configuration of HwDevices is device specific.
101 /** The rate of the audio data.
106 /** The type of stereo audio data.
111 /** Uid for this TTaskConfig struct
120 Extended version of TTaskConfig used by the SetConfig() method to configure the sample rate,
121 stereo mode and number of channels of a CMdfHwDevice plugin. The configuration of HwDevices
124 class TTaskConfig2 : public TTaskConfig
128 The number of channels.
130 TInt iNumberOfChannels;