os/mm/devsound/hwdevapi/inc/TaskConfig.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2002-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
 @publishedPartner
sl@0
    18
 @released
sl@0
    19
*/
sl@0
    20
sl@0
    21
#ifndef __TASKCONFIG_H__
sl@0
    22
#define __TASKCONFIG_H__
sl@0
    23
sl@0
    24
/**
sl@0
    25
@publishedPartner
sl@0
    26
@released
sl@0
    27
sl@0
    28
TTaskSampleRate is a member of TTaskConfig which tells the HwDevice plugin the sample
sl@0
    29
rate of the audio data.
sl@0
    30
*/
sl@0
    31
enum TTaskSampleRate
sl@0
    32
	{
sl@0
    33
  	/** 8000 Hz Sampling Rate
sl@0
    34
	*/
sl@0
    35
	ETask8000Hz  = 0x00000001,
sl@0
    36
  	/** 11025 Hz Sampling Rate
sl@0
    37
	*/
sl@0
    38
	ETask11025Hz = 0x00000002,
sl@0
    39
  	/** 16000 Hz Sampling Rate
sl@0
    40
	*/
sl@0
    41
	ETask16000Hz = 0x00000004,
sl@0
    42
  	/** 22050 Hz Sampling Rate
sl@0
    43
	*/
sl@0
    44
	ETask22050Hz = 0x00000008,
sl@0
    45
  	/** 32000 Hz Sampling Rate
sl@0
    46
	*/
sl@0
    47
	ETask32000Hz = 0x00000010,
sl@0
    48
  	/** 44100 Hz Sampling Rate
sl@0
    49
	*/
sl@0
    50
	ETask44100Hz = 0x00000020,
sl@0
    51
  	/** 48000 Hz Sampling Rate
sl@0
    52
	*/
sl@0
    53
	ETask48000Hz = 0x00000040,
sl@0
    54
  	/** 88200 Hz Sampling Rate
sl@0
    55
	*/
sl@0
    56
	ETask88200Hz = 0x00000080,
sl@0
    57
  	/** 96000 Hz Sampling Rate
sl@0
    58
	*/
sl@0
    59
	ETask96000Hz = 0x00000100,
sl@0
    60
  	/** 12000 Hz Sampling Rate
sl@0
    61
	*/
sl@0
    62
	ETask12000Hz = 0x00000200,
sl@0
    63
  	/** 24000 Hz Sampling Rate
sl@0
    64
	*/
sl@0
    65
	ETask24000Hz = 0x00000400,
sl@0
    66
	/** 64000 Hz Sampling Rate
sl@0
    67
	*/
sl@0
    68
	ETask64000Hz = 0x00000800
sl@0
    69
	};
sl@0
    70
sl@0
    71
/**
sl@0
    72
@publishedPartner
sl@0
    73
@released
sl@0
    74
sl@0
    75
TTaskStereoMode is a member of TTaskConfig which tells the HwDevice plugin whether stereo audio
sl@0
    76
data is interleaved or not.
sl@0
    77
*/
sl@0
    78
enum TTaskStereoMode
sl@0
    79
	{
sl@0
    80
  	/** Audio data is mono.
sl@0
    81
	*/
sl@0
    82
	ETaskMono			= 0x00000001,
sl@0
    83
  	/** Audio data is interleaved.
sl@0
    84
	*/
sl@0
    85
	ETaskInterleaved	= 0x00000002,
sl@0
    86
  	/** Audio data is non-interleaved.
sl@0
    87
	*/
sl@0
    88
	ETaskNonInterleaved	= 0x00000004
sl@0
    89
	};
sl@0
    90
sl@0
    91
/**
sl@0
    92
@publishedPartner
sl@0
    93
@released
sl@0
    94
sl@0
    95
Used by the SetConfig() method to configure the sample rate and stereo mode of a CMMFHwDevice 
sl@0
    96
plugin. The configuration of HwDevices is device specific.
sl@0
    97
*/
sl@0
    98
class TTaskConfig
sl@0
    99
	{
sl@0
   100
	public:
sl@0
   101
		/** The rate of the audio data.
sl@0
   102
sl@0
   103
		@see TTaskSampleRate
sl@0
   104
	    */
sl@0
   105
		TInt iRate;
sl@0
   106
		/** The type of stereo audio data.
sl@0
   107
sl@0
   108
		@see TTaskStereoMode
sl@0
   109
		*/
sl@0
   110
		TInt iStereoMode;
sl@0
   111
		/** Uid for this TTaskConfig struct
sl@0
   112
		*/
sl@0
   113
		TInt iUid;
sl@0
   114
	};
sl@0
   115
	
sl@0
   116
/**
sl@0
   117
@publishedPartner
sl@0
   118
@released
sl@0
   119
sl@0
   120
Extended version of TTaskConfig used by the SetConfig() method to configure the sample rate, 
sl@0
   121
stereo mode and number of channels of a CMdfHwDevice plugin. The configuration of HwDevices 
sl@0
   122
is device specific.
sl@0
   123
*/	
sl@0
   124
class TTaskConfig2 : public TTaskConfig
sl@0
   125
	{
sl@0
   126
public:
sl@0
   127
	/** 
sl@0
   128
	The number of channels.
sl@0
   129
	*/
sl@0
   130
	TInt iNumberOfChannels;
sl@0
   131
	};	
sl@0
   132
sl@0
   133
#endif
sl@0
   134