os/mm/devsound/devsoundapi/inc/SoundDevice.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) 2001-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
#ifndef __SOUNDDEVICE_H__
sl@0
    17
#define __SOUNDDEVICE_H__
sl@0
    18
sl@0
    19
#include <e32base.h>
sl@0
    20
#include <f32file.h>
sl@0
    21
#include <mmf/common/mmfbase.h>
sl@0
    22
#include <mmf/common/mmfutilities.h>
sl@0
    23
#include <mmf/common/mmfcontroller.h>
sl@0
    24
sl@0
    25
sl@0
    26
//Debugging info
sl@0
    27
sl@0
    28
/*
sl@0
    29
Notes: 
sl@0
    30
This file defines the DevSound class which acts as an interface to
sl@0
    31
the hardware and is intended to invoke VCR functionality via the plug-ins.
sl@0
    32
The DevSound also contains a product specific policy.
sl@0
    33
*/
sl@0
    34
sl@0
    35
//UIDs for buffers: According to Symbian: Not used
sl@0
    36
sl@0
    37
// Public Media Server includes
sl@0
    38
sl@0
    39
/**
sl@0
    40
@publishedAll
sl@0
    41
@released
sl@0
    42
sl@0
    43
Sampling rates available.
sl@0
    44
sl@0
    45
When queried from DevSound by calling the function Capabilities(), iRate indicates
sl@0
    46
the sampling rates supported by the audio device.
sl@0
    47
sl@0
    48
DevSound by default is configured to 8KHz sampling rate.
sl@0
    49
So to configure DevSound to play/record audio at 16 KHz sampling rate:
sl@0
    50
sl@0
    51
The mode should not be OR'ed with each other, only single values are accepted. 
sl@0
    52
*/
sl@0
    53
enum TMMFSampleRate
sl@0
    54
	{
sl@0
    55
  	/** 8000 Hz Sampling Rate
sl@0
    56
	*/
sl@0
    57
	EMMFSampleRate8000Hz  = 0x00000001,
sl@0
    58
  	/** 11025 Hz Sampling Rate
sl@0
    59
	*/
sl@0
    60
	EMMFSampleRate11025Hz = 0x00000002,
sl@0
    61
  	/** 16000 Hz Sampling Rate
sl@0
    62
	*/
sl@0
    63
	EMMFSampleRate16000Hz = 0x00000004,
sl@0
    64
  	/** 22050 Hz Sampling Rate
sl@0
    65
	*/
sl@0
    66
	EMMFSampleRate22050Hz = 0x00000008,
sl@0
    67
  	/** 32000 Hz Sampling Rate
sl@0
    68
	*/
sl@0
    69
	EMMFSampleRate32000Hz = 0x00000010,
sl@0
    70
  	/** 44100 Hz Sampling Rate
sl@0
    71
	*/
sl@0
    72
	EMMFSampleRate44100Hz = 0x00000020,
sl@0
    73
  	/** 48000 Hz Sampling Rate
sl@0
    74
	*/
sl@0
    75
	EMMFSampleRate48000Hz = 0x00000040,
sl@0
    76
  	/** 88200 Hz Sampling Rate
sl@0
    77
	*/
sl@0
    78
	EMMFSampleRate88200Hz = 0x00000080,
sl@0
    79
  	/** 96000 Hz Sampling Rate
sl@0
    80
	*/
sl@0
    81
	EMMFSampleRate96000Hz = 0x00000100,
sl@0
    82
  	/** 12000 Hz Sampling Rate
sl@0
    83
	*/
sl@0
    84
	EMMFSampleRate12000Hz = 0x00000200,
sl@0
    85
  	/** 24000 Hz Sampling Rate
sl@0
    86
	*/
sl@0
    87
	EMMFSampleRate24000Hz = 0x00000400,
sl@0
    88
  	/** 64000 Hz Sampling Rate
sl@0
    89
	*/
sl@0
    90
	EMMFSampleRate64000Hz = 0x00000800
sl@0
    91
	};
sl@0
    92
sl@0
    93
/**
sl@0
    94
@publishedAll
sl@0
    95
@released
sl@0
    96
sl@0
    97
Mono Stereo playback and record modes available.
sl@0
    98
sl@0
    99
When queried from DevSound by calling the function Capabilities(), iChannels
sl@0
   100
indicates whether the underlying audio device supports playing back stereo
sl@0
   101
audio samples and recording audio samples in stereo mode or not.
sl@0
   102
sl@0
   103
DevSound by default is configured to Mono mode.
sl@0
   104
So to configure DevSound to play/record audio sample in stereo mode:
sl@0
   105
sl@0
   106
The mode should not be OR'ed with each other, only single values are accepted. 
sl@0
   107
*/
sl@0
   108
enum TMMFMonoStereo
sl@0
   109
	{
sl@0
   110
	/** Mono mode
sl@0
   111
	*/
sl@0
   112
	EMMFMono	= 0x00000001,
sl@0
   113
	/** Stereo mode
sl@0
   114
	*/
sl@0
   115
	EMMFStereo	= 0x00000002
sl@0
   116
	};
sl@0
   117
sl@0
   118
/**
sl@0
   119
@publishedAll
sl@0
   120
@released
sl@0
   121
sl@0
   122
Encoding modes available.
sl@0
   123
sl@0
   124
When queried from DevSound by calling the function Capabilities(), iEncoding
sl@0
   125
provides information about different encoding supported by audio device.
sl@0
   126
sl@0
   127
DevSound by default is configured to play PCM16 Bit audio data.
sl@0
   128
Setting encoding mode is not supported yet:
sl@0
   129
*/
sl@0
   130
enum TMMFSoundEncoding
sl@0
   131
	{
sl@0
   132
  	/** Signed 8 Bit PCM
sl@0
   133
	*/
sl@0
   134
	EMMFSoundEncoding8BitPCM		= 0x00000001,
sl@0
   135
  	/** Signed 16 Bit PCM
sl@0
   136
	*/
sl@0
   137
	EMMFSoundEncoding16BitPCM		= 0x00000002,
sl@0
   138
  	/** Signed 8 Bit ALaw
sl@0
   139
	*/
sl@0
   140
	EMMFSoundEncoding8BitALaw		= 0x00000004,
sl@0
   141
  	/** Signed 8 Bit MuLaw
sl@0
   142
	*/
sl@0
   143
	EMMFSoundEncoding8BitMuLaw		= 0x00000008,
sl@0
   144
	};
sl@0
   145
sl@0
   146
/**
sl@0
   147
@publishedAll
sl@0
   148
@released
sl@0
   149
sl@0
   150
Stereo support enum.
sl@0
   151
*/
sl@0
   152
enum TMMFStereoSupport
sl@0
   153
	{
sl@0
   154
	/** No stereo support
sl@0
   155
	*/
sl@0
   156
	EMMFNone						= 0x00000000,
sl@0
   157
	/** Interleaved stereo support
sl@0
   158
	*/
sl@0
   159
	EMMFInterleavedOnly				= 0x00000001,
sl@0
   160
	/** Non Interleaved stereo support
sl@0
   161
	*/
sl@0
   162
	EMMFNonInterleavedOnly			= 0x00000002,
sl@0
   163
	/** Interleaved and Non Interleaved stereo support
sl@0
   164
	*/
sl@0
   165
	EMMFBothNonAndInterleaved		= 0x00000003,
sl@0
   166
 	/** Joint stereo support
sl@0
   167
 	*/
sl@0
   168
 	EMMFJoint						= 0x00000004
sl@0
   169
	};
sl@0
   170
sl@0
   171
/**
sl@0
   172
@publishedAll
sl@0
   173
@released
sl@0
   174
sl@0
   175
Type class for DevSound implementation device capabilities.
sl@0
   176
sl@0
   177
CMMFDevSound will return Sampling Rates, Encoding and Stereo feature
sl@0
   178
supported in this structure when queried for capabilities. DevSound can
sl@0
   179
also be configured by setting parameters in this structure and passing the
sl@0
   180
structure to it.
sl@0
   181
*/
sl@0
   182
class TMMFCapabilities
sl@0
   183
	{
sl@0
   184
public:
sl@0
   185
	/** Sampling Rates supported
sl@0
   186
	*/
sl@0
   187
	TUint	iRate;
sl@0
   188
	/** Encodings supported
sl@0
   189
	*/
sl@0
   190
	TUint	iEncoding;
sl@0
   191
	/** Mono/Stereo support
sl@0
   192
	*/
sl@0
   193
	TUint	iChannels;
sl@0
   194
	/** Buffer size supported
sl@0
   195
	*/
sl@0
   196
	TInt	iBufferSize;
sl@0
   197
	};
sl@0
   198
sl@0
   199
/**
sl@0
   200
@publishedAll
sl@0
   201
@released
sl@0
   202
sl@0
   203
An interface to a set of DevSound callback functions.
sl@0
   204
sl@0
   205
sl@0
   206
This serves as the method of communication between the client and the
sl@0
   207
DevSound.
sl@0
   208
sl@0
   209
The class is a mixin and is intended to be inherited by the client class
sl@0
   210
that is interested in observing the DevSound operation. The functions
sl@0
   211
encapsulated by this class are called when specific events occur in the
sl@0
   212
process of initializing and playing/recording an audio sample or playing
sl@0
   213
tones.
sl@0
   214
*/
sl@0
   215
class MDevSoundObserver
sl@0
   216
	{
sl@0
   217
public:
sl@0
   218
	/**
sl@0
   219
	Handles initialization completion event.
sl@0
   220
	
sl@0
   221
	A derived class must provide an implementation to handle the initialization
sl@0
   222
	request.
sl@0
   223
	
sl@0
   224
	CMMFDevSound object calls this function when its InitializeL() function
sl@0
   225
	completes.
sl@0
   226
	
sl@0
   227
	@param  aError
sl@0
   228
	        Error code. KErrNone if successful. Other values are possible
sl@0
   229
	        indicating a problem initializing CMMFDevSound object.
sl@0
   230
	*/
sl@0
   231
	virtual void InitializeComplete(TInt aError)=0;
sl@0
   232
sl@0
   233
	/**
sl@0
   234
	Handles tone play completion event.
sl@0
   235
	
sl@0
   236
	A derived class must provide an implementation to handle the tone play
sl@0
   237
	completion request.
sl@0
   238
	
sl@0
   239
	CMMFDevSound object calls this function when an attempt to play tone has
sl@0
   240
	completed, successfully or otherwise.
sl@0
   241
sl@0
   242
	The following are the play tone functions; PlayToneL(), PlayDMTFStringL(),
sl@0
   243
	PlayToneSequenceL(), and PlayFixedSequenceL().
sl@0
   244
	
sl@0
   245
	@param	aError
sl@0
   246
	        Error code. The status of tone playback. KErrUnderflow playing of
sl@0
   247
	        the tone is complete. KErrAccessDenied the sound device is in use by
sl@0
   248
	        another higher priority client. KErrCancel playing of the audio
sl@0
   249
	        sample is stopped by DevSound client another higher priority client.
sl@0
   250
	*/
sl@0
   251
	virtual void ToneFinished(TInt aError)=0;
sl@0
   252
sl@0
   253
	/**
sl@0
   254
	Handles CMMFDevSound object's data request event.
sl@0
   255
	
sl@0
   256
	A derived class must provide an implementation to supply CMMFDevSound
sl@0
   257
	object the data that it needs to play or convert.
sl@0
   258
	
sl@0
   259
	CMMFDevSound object calls this function when and where it needs data for
sl@0
   260
	playing or converting. The observer should notify CMMFDevSound object as
sl@0
   261
	quickly as possible after the data is read into buffer, aBuffer by calling
sl@0
   262
	PlayData(), otherwise the implementation might callback function PlayError()
sl@0
   263
	on derived class object with error code KErrUnderflow.
sl@0
   264
	This does not apply to the very first call to PlayData(), however.
sl@0
   265
	It is possible for a user of DevSound to hold the first buffer sent in
sl@0
   266
	BufferToBeFilled() until ready to play.
sl@0
   267
	The use case for this is if a low latency audio response
sl@0
   268
	is required, as at this point all the resources used to play audio are open.
sl@0
   269
	If used in this way then it is important to be aware that when when the
sl@0
   270
	resources for audio are ready at the BufferToBeFilled() callback, a Devsound
sl@0
   271
	on a real device will be running at increased power consumption as the audio
sl@0
   272
	hw and any required DSPs will be powered up etc.
sl@0
   273
	
sl@0
   274
	@param  aBuffer
sl@0
   275
	        Buffer into which data should be read. The amount of data that is
sl@0
   276
	        needed is specified in CMMFBuffer::RequestSize().
sl@0
   277
	*/
sl@0
   278
	virtual void BufferToBeFilled(CMMFBuffer* aBuffer)=0;
sl@0
   279
sl@0
   280
	/**
sl@0
   281
	Handles play completion or cancel event.
sl@0
   282
sl@0
   283
	A derived class must provide an implementation to handle the play
sl@0
   284
	completion or cancel request.
sl@0
   285
sl@0
   286
	CMMFDevSound object calls this function when an attempt to play audio sample
sl@0
   287
	has completed, successfully or otherwise.
sl@0
   288
sl@0
   289
	@param  aError
sl@0
   290
	        Error code. The status of playback. KErrUnderflow playing of the
sl@0
   291
	        audio sample is complete. KErrAccessDenied the sound device is in
sl@0
   292
	        use by another higher priority client.
sl@0
   293
	*/
sl@0
   294
	virtual void PlayError(TInt aError)=0;
sl@0
   295
sl@0
   296
	/**
sl@0
   297
	Handles CMMFDevSound object's data request event.
sl@0
   298
sl@0
   299
	A derived class must provide an implementation to process the data
sl@0
   300
	supplied by CMMFDevSound object while recording or converting.
sl@0
   301
sl@0
   302
	CMMFDevSound object calls this function when the buffer, aBuffer gets filled
sl@0
   303
	while recording or converting. The observer should notify CMMFDevSound
sl@0
   304
	object as quickly as possible after data in the buffer is processed by
sl@0
   305
	calling RecordData(), otherwise the implementation might callback
sl@0
   306
	the function RecordError() on derived class object with error code KErrOverflow.
sl@0
   307
sl@0
   308
	@param  aBuffer
sl@0
   309
	        Buffer containing processed (recorded or converted) data. The amount
sl@0
   310
	        of data that is available is specified in CMMFBuffer::RequestSize().
sl@0
   311
	*/
sl@0
   312
	virtual void BufferToBeEmptied(CMMFBuffer* aBuffer)=0;
sl@0
   313
sl@0
   314
	/**
sl@0
   315
	Handles record completion or cancel event.
sl@0
   316
	
sl@0
   317
	A derived class must provide an implementation to handle the record
sl@0
   318
	completion or cancel request.
sl@0
   319
	
sl@0
   320
	CMMFDevSound object calls this function when an attempt to record audio sample
sl@0
   321
	has completed, successfully or otherwise.
sl@0
   322
	
sl@0
   323
	@param  aError
sl@0
   324
	        Error code. The status of recording. KErrOverflow audio devices
sl@0
   325
	        runs out of internal buffer. KErrAccessDenied the sound device is
sl@0
   326
	        in use by another higher priority client.
sl@0
   327
	*/
sl@0
   328
	virtual void RecordError(TInt aError)=0;
sl@0
   329
sl@0
   330
	/**
sl@0
   331
	Handles conversion completion or cancel event.
sl@0
   332
sl@0
   333
	A derived class must provide an implementation to handle the conversion
sl@0
   334
	completion or cancel request.
sl@0
   335
sl@0
   336
	CMMFDevSound object calls this function when an attempt to convert data from
sl@0
   337
	source format to destination format has completed, successfully or otherwise.
sl@0
   338
sl@0
   339
	@param  aError
sl@0
   340
	        Error code. KErrCancel conversion operation is cancelled. KErrNone
sl@0
   341
	        conversion is complete. Other values are possible indicating a
sl@0
   342
	        problem converting data.
sl@0
   343
	*/
sl@0
   344
	virtual void ConvertError(TInt aError)=0;
sl@0
   345
sl@0
   346
	/**
sl@0
   347
	Handles device event.
sl@0
   348
	
sl@0
   349
	A derived class must provide an implementtion to handle the messages from
sl@0
   350
	audio hardware device.
sl@0
   351
	
sl@0
   352
	CMMFDevSound object calls this function when a message is received from the
sl@0
   353
	audio hardware device.
sl@0
   354
	
sl@0
   355
	@param	aMessageType
sl@0
   356
			Defines the type of message. Used to determine how to
sl@0
   357
			interpret the contents of aMsg.
sl@0
   358
	@param	aMsg
sl@0
   359
			Message that is packed in the Descriptor format.
sl@0
   360
	*/
sl@0
   361
	virtual void DeviceMessage(TUid aMessageType, const TDesC8& aMsg)=0;
sl@0
   362
sl@0
   363
sl@0
   364
	/**
sl@0
   365
	Handles policy request completion event.
sl@0
   366
	
sl@0
   367
	A derived class must provide an implementation to handle the policy request
sl@0
   368
	completion event.
sl@0
   369
	
sl@0
   370
	CMMFDevSound object calls this function when an attempt to acquire sound
sl@0
   371
	device is rejected by audio policy server.
sl@0
   372
	
sl@0
   373
	@param	aEvent
sl@0
   374
			Not used
sl@0
   375
	*/
sl@0
   376
	inline virtual void SendEventToClient(const TMMFEvent& aEvent);
sl@0
   377
sl@0
   378
	};
sl@0
   379
sl@0
   380
sl@0
   381
/**
sl@0
   382
@publishedAll
sl@0
   383
@released
sl@0
   384
sl@0
   385
This is the interface from Symbian OS to the raw audio functions on the
sl@0
   386
device hardware.
sl@0
   387
sl@0
   388
DevSound is currently loaded as a DLL, and implements the VCR-type
sl@0
   389
functions to be expected for such an interface.
sl@0
   390
sl@0
   391
The audio functions include the following functionality:
sl@0
   392
- Initialisation and configuration of hardware devices, for example, setting microphone gain, 
sl@0
   393
setting setero balance and so on.
sl@0
   394
- The playing and recording of raw audio data.
sl@0
   395
- The playing and dynamic control of tones with user specified frequencies.
sl@0
   396
- The playing of DTMF strings.
sl@0
   397
*/
sl@0
   398
class CMMFDevSound : public CBase
sl@0
   399
	{
sl@0
   400
public:
sl@0
   401
sl@0
   402
	/**
sl@0
   403
	Constructs, and returns a pointer to, a new CMMFDevSound object.
sl@0
   404
sl@0
   405
	Leaves on failure.
sl@0
   406
	*/
sl@0
   407
	IMPORT_C static CMMFDevSound* NewL();
sl@0
   408
sl@0
   409
	/**
sl@0
   410
	Destructor.
sl@0
   411
sl@0
   412
	Deletes all objects and releases all resource owned by this
sl@0
   413
	instance.
sl@0
   414
	*/
sl@0
   415
	IMPORT_C ~CMMFDevSound();
sl@0
   416
sl@0
   417
	/**
sl@0
   418
	Initializes CMMFDevSound object to play and record PCM16 raw audio data
sl@0
   419
	with sampling rate of 8 KHz.
sl@0
   420
sl@0
   421
	On completion of Initialization, calls InitializeComplete() on
sl@0
   422
	aDevSoundObserver.
sl@0
   423
sl@0
   424
	Leaves on failure.
sl@0
   425
sl@0
   426
	@param  aDevSoundObserver
sl@0
   427
	        A reference to DevSound Observer instance.
sl@0
   428
	@param  aMode
sl@0
   429
	        The mode for which this object will be used. Any value other than EMMFStatePlaying, EMMFStateRecording or EMMFStateTonePlaying is unsupported. 
sl@0
   430
	
sl@0
   431
	 
sl@0
   432
	*/
sl@0
   433
    IMPORT_C void InitializeL(MDevSoundObserver& aDevSoundObserver, TMMFState aMode);
sl@0
   434
sl@0
   435
sl@0
   436
	/**
sl@0
   437
	Initializes DevSound object for the mode aMode for processing audio data
sl@0
   438
	with hardware device aHWDev.
sl@0
   439
sl@0
   440
	On completion of Initialization, the observer will be notified via call back
sl@0
   441
	InitializeComplete().
sl@0
   442
sl@0
   443
	Leaves on failure.
sl@0
   444
sl@0
   445
	@param  aDevSoundObserver
sl@0
   446
	        A reference to DevSound Observer instance.
sl@0
   447
	@param  aHWDev
sl@0
   448
	        The CMMFHwDevice implementation identifier.
sl@0
   449
	@param  aMode
sl@0
   450
	        The mode for which this object will be used. Any value other than EMMFStatePlaying, EMMFStateRecording or EMMFStateTonePlaying is unsupported.
sl@0
   451
	        
sl@0
   452
   	*/
sl@0
   453
	IMPORT_C void InitializeL(MDevSoundObserver& aDevSoundObserver, TUid aHWDev, TMMFState aMode);
sl@0
   454
sl@0
   455
	/**
sl@0
   456
	Initializes DevSound object for the mode aMode for processing audio data
sl@0
   457
	with hardware device supporting FourCC aDesiredFourCC.
sl@0
   458
sl@0
   459
	On completion of Initialization, the observer will be notified via call back
sl@0
   460
	InitializeComplete().
sl@0
   461
sl@0
   462
	Leaves on failure.
sl@0
   463
sl@0
   464
	@param  aDevSoundObserver
sl@0
   465
	        A reference to DevSound Observer instance.
sl@0
   466
	@param  aDesiredFourCC
sl@0
   467
	        The CMMFHwDevice implementation FourCC code.
sl@0
   468
	@param  aMode
sl@0
   469
	        The mode for which this object will be used. Any value other than EMMFStatePlaying, EMMFStateRecording or EMMFStateTonePlaying is unsupported.
sl@0
   470
	        
sl@0
   471
    */
sl@0
   472
	IMPORT_C void InitializeL(MDevSoundObserver& aDevSoundObserver, TFourCC aDesiredFourCC, TMMFState aMode);
sl@0
   473
sl@0
   474
	/**
sl@0
   475
	Returns the supported Audio settings ie. encoding, sample rates, mono/stereo operation, buffer 
sl@0
   476
	size etc.
sl@0
   477
sl@0
   478
	@return	The device settings.
sl@0
   479
	*/
sl@0
   480
	IMPORT_C TMMFCapabilities Capabilities();
sl@0
   481
sl@0
   482
	/**
sl@0
   483
	Returns the current device configuration.
sl@0
   484
sl@0
   485
	@return	The device settings.
sl@0
   486
	*/
sl@0
   487
	IMPORT_C TMMFCapabilities Config() const;
sl@0
   488
sl@0
   489
	/**
sl@0
   490
	Configure CMMFDevSound object with the settings in aConfig.
sl@0
   491
sl@0
   492
	Use this to set sampling rate, encoding and mono/stereo.
sl@0
   493
sl@0
   494
	@param  aCaps
sl@0
   495
	        The attribute values to which CMMFDevSound object will be configured to.
sl@0
   496
	*/
sl@0
   497
	IMPORT_C void SetConfigL(const TMMFCapabilities& aCaps);
sl@0
   498
sl@0
   499
	/**
sl@0
   500
	Returns an integer representing the maximum volume device supports.
sl@0
   501
sl@0
   502
	This is the maximum value which can be passed to CMMFDevSound::SetVolume.
sl@0
   503
sl@0
   504
	@return	The maximum volume. This value is platform dependent but is always greater than or equal
sl@0
   505
	to one.
sl@0
   506
	*/
sl@0
   507
	IMPORT_C TInt MaxVolume();
sl@0
   508
sl@0
   509
	/**
sl@0
   510
	Returns an integer representing the current volume.
sl@0
   511
sl@0
   512
	@return The current volume level.
sl@0
   513
	*/
sl@0
   514
	IMPORT_C TInt Volume();
sl@0
   515
sl@0
   516
	/**
sl@0
   517
	Changes the current playback volume to a specified value.
sl@0
   518
sl@0
   519
	The volume can be changed before or during playback and is effective
sl@0
   520
	immediately.
sl@0
   521
sl@0
   522
	@param  aVolume
sl@0
   523
	        The volume setting. This can be any value from 0 to the value
sl@0
   524
	        returned by a call to CMMFDevSound::MaxVolume(). If the
sl@0
   525
	        volume is not within this range, the volume is automatically set to
sl@0
   526
	        minimum or maximum value based on the value that is being passed.
sl@0
   527
	        Setting a zero value mutes the sound. Setting the maximum value
sl@0
   528
	        results in the loudest possible sound.
sl@0
   529
	*/
sl@0
   530
	IMPORT_C void SetVolume(TInt aVolume);
sl@0
   531
sl@0
   532
	/**
sl@0
   533
	Returns an integer representing the maximum gain the device supports.
sl@0
   534
sl@0
   535
	This is the maximum value which can be passed to CMMFDevSound::SetGain.
sl@0
   536
sl@0
   537
	@return The maximum gain. This value is platform dependent but is always greater than or equal
sl@0
   538
	to one.
sl@0
   539
	*/
sl@0
   540
	IMPORT_C TInt MaxGain();
sl@0
   541
sl@0
   542
	/**
sl@0
   543
	Returns an integer representing the current gain.
sl@0
   544
sl@0
   545
	@return The current gain level.
sl@0
   546
	*/
sl@0
   547
	IMPORT_C TInt Gain();
sl@0
   548
sl@0
   549
	/**
sl@0
   550
	Changes the current recording gain to a specified value.
sl@0
   551
sl@0
   552
	The gain can be changed before or during recording and is effective
sl@0
   553
	immediately.
sl@0
   554
sl@0
   555
	@param  aGain
sl@0
   556
	        The gain setting. This can be any value from zero to the value
sl@0
   557
	        returned by a call to CMMFDevSound::MaxGain(). If the
sl@0
   558
	        volume is not within this range, the gain is automatically set to
sl@0
   559
	        minimum or maximum value based on the value that is being passed.
sl@0
   560
	        Setting a zero value mutes the sound. Setting the maximum value
sl@0
   561
	        results in the loudest possible sound.
sl@0
   562
	*/
sl@0
   563
	IMPORT_C void SetGain(TInt aGain);
sl@0
   564
sl@0
   565
	/**
sl@0
   566
	Returns the speaker balance set for playing.
sl@0
   567
sl@0
   568
	Leaves on failure.
sl@0
   569
sl@0
   570
	@param  aLeftPercentage
sl@0
   571
	        On return contains the left speaker volume percentage.
sl@0
   572
	@param  aRightPercentage
sl@0
   573
	        On return contains the right speaker volume percentage.
sl@0
   574
	*/
sl@0
   575
	IMPORT_C void GetPlayBalanceL(TInt& aLeftPercentage, TInt& aRightPercentage);
sl@0
   576
sl@0
   577
	/**
sl@0
   578
	Sets the speaker balance for playing.
sl@0
   579
sl@0
   580
	The speaker balance can be changed before or during playback and is
sl@0
   581
	effective immediately.
sl@0
   582
sl@0
   583
	@param  aLeftPercentage
sl@0
   584
	        On return contains left speaker volume perecentage. This can be any
sl@0
   585
	        value from zero to 100. Setting a zero value mutes the sound on left
sl@0
   586
	        speaker.
sl@0
   587
	@param  aRightPercentage
sl@0
   588
	        On return contains right speaker volume perecentage. This can be any
sl@0
   589
	        value from zero to 100. Setting a zero value mutes the sound on
sl@0
   590
	        right speaker.
sl@0
   591
	*/
sl@0
   592
	IMPORT_C void SetPlayBalanceL(TInt aLeftPercentage, TInt aRightPercentage);
sl@0
   593
sl@0
   594
	/**
sl@0
   595
	Returns the microphone gain balance set for recording.
sl@0
   596
sl@0
   597
	Leaves on failure.
sl@0
   598
sl@0
   599
	@param  aLeftPercentage
sl@0
   600
	        On return contains the left microphone gain percentage.
sl@0
   601
	@param  aRightPercentage
sl@0
   602
	        On return contains the right microphone gain percentage.
sl@0
   603
	*/
sl@0
   604
	IMPORT_C void GetRecordBalanceL(TInt& aLeftPercentage, TInt& aRightPercentage);
sl@0
   605
sl@0
   606
	/**
sl@0
   607
	Sets the microphone gain balance for recording.
sl@0
   608
sl@0
   609
	The microphone gain balance can be changed before or during recording and
sl@0
   610
	is effective immediately.
sl@0
   611
sl@0
   612
	@param  aLeftPercentage
sl@0
   613
	        The left microphone gain precentage. This can be any value from zero to
sl@0
   614
	        100. Setting a zero value mutes the gain on left microphone.
sl@0
   615
	@param  aRightPercentage
sl@0
   616
	        The right microphone gain precentage. This can be any value from zero to
sl@0
   617
	        100. Setting a zero value mutes the gain on right microphone.
sl@0
   618
	*/
sl@0
   619
	IMPORT_C void SetRecordBalanceL(TInt aLeftPercentage, TInt aRightPercentage);
sl@0
   620
sl@0
   621
	/**
sl@0
   622
	Initializes the audio device and starts the play process.
sl@0
   623
sl@0
   624
	This function queries and acquires the audio policy before initializing audio device. If there was
sl@0
   625
	an error during policy initialization, PlayError() function will be called on	the observer with
sl@0
   626
	error code KErrAccessDenied, otherwise BufferToBeFilled() function will be called with a buffer
sl@0
   627
	reference. After reading data into the buffer reference passed, the client should call
sl@0
   628
	PlayData() to play data.
sl@0
   629
sl@0
   630
	The amount of data that can be played is specified in
sl@0
   631
	CMMFBuffer::RequestSize(). Any data that is read into buffer beyond this
sl@0
   632
	size will be ignored.
sl@0
   633
sl@0
   634
	Leaves on failure.
sl@0
   635
sl@0
   636
	@see    MDevSoundObserver::PlayError()
sl@0
   637
	@see    MDevSoundObserver::BufferToBeFilled()
sl@0
   638
	*/
sl@0
   639
	IMPORT_C void PlayInitL();
sl@0
   640
sl@0
   641
	/**
sl@0
   642
	Initializes audio device and starts the recording process. 
sl@0
   643
sl@0
   644
	This function queries and acquires the audio policy before initializing audio device. If there 
sl@0
   645
	was an error during policy initialization, RecordError() function will be called on the observer 
sl@0
   646
	with error code KErrAccessDenied, otherwise BufferToBeEmptied()	function will be called with a 
sl@0
   647
	buffer reference. This buffer contains recorded	or encoded data. After processing data in the 
sl@0
   648
	buffer reference passed, the client should call RecordData() to continue recording process.
sl@0
   649
sl@0
   650
	The amount of data that is available is specified in CMMFBuffer::RequestSize().
sl@0
   651
sl@0
   652
	Leaves on failure.
sl@0
   653
sl@0
   654
	@see    MDevSoundObserver::RecordError() 
sl@0
   655
	@see    MDevSoundObserver::BufferToBeEmptied()
sl@0
   656
	
sl@0
   657
	@capability	UserEnvironment
sl@0
   658
			For recording - the requesting client process must have the 
sl@0
   659
			UserEnvironment capability.
sl@0
   660
	*/
sl@0
   661
	IMPORT_C void RecordInitL();
sl@0
   662
sl@0
   663
	/**
sl@0
   664
	Plays data in the buffer at the current volume. 
sl@0
   665
sl@0
   666
	The client should fill the buffer with audio data before calling this function. The observer gets
sl@0
   667
	a reference to the buffer along with the callback function BufferToBeFilled(). When playing of
sl@0
   668
	the audio sample is complete, successfully or otherwise, the function PlayError() on the
sl@0
   669
	observer is called.
sl@0
   670
sl@0
   671
	The last buffer of the audio stream being played should have the last buffer flag set using
sl@0
   672
	CMMFBuffer::SetLastBuffer(TBool). If a subsequent attempt to play the clip is made, this flag 
sl@0
   673
	will need resetting by the client.
sl@0
   674
sl@0
   675
	@see    MDevSoundObserver::PlayError()
sl@0
   676
	*/
sl@0
   677
	IMPORT_C void PlayData();
sl@0
   678
sl@0
   679
	/**
sl@0
   680
	Contine the process of recording. 
sl@0
   681
sl@0
   682
	Once the buffer is filled with recorded	data, the Observer gets a reference to the buffer along 
sl@0
   683
	with the callback function BufferToBeEmptied(). After processing the buffer (copying over to a
sl@0
   684
	different buffer or writing to file) the client should call this function to continue the 
sl@0
   685
	recording process.
sl@0
   686
	
sl@0
   687
	@capability	UserEnvironment
sl@0
   688
			For recording - the requesting client process must have the 
sl@0
   689
			UserEnvironment capability.
sl@0
   690
	*/
sl@0
   691
	IMPORT_C void RecordData();
sl@0
   692
sl@0
   693
	/**
sl@0
   694
	Stops the ongoing operation (Play, Record, TonePlay, Convert).
sl@0
   695
sl@0
   696
	This function should be synchronous and invoke no callbacks through MDevSoundObserver.
sl@0
   697
	*/
sl@0
   698
	IMPORT_C void Stop();
sl@0
   699
sl@0
   700
	/**
sl@0
   701
	Temporarily Stops the ongoing operation (Play, Record, TonePlay, Convert).
sl@0
   702
	
sl@0
   703
	The behaviour of Pause() is currently undefined when the initialisation mode
sl@0
   704
	is not EMMFStateRecording, consequently different DevSound implementations exhibit
sl@0
   705
	different behaviour for pause during play.  For this reason, it is recommended that
sl@0
   706
	when pausing of audio during playing is required, Stop() is used instead of the call
sl@0
   707
	to Pause(). To resume audio playing after Stop(), call PlayInitL(). Among other things,
sl@0
   708
	this will internally reset the SamplesPlayed() result and the calling code may need to
sl@0
   709
	remember the previous result to give the correct "samples played from start" value.
sl@0
   710
sl@0
   711
	In the case of record, Pause is taken to mean halt any further recording
sl@0
   712
	but continue to call the MDevSoundObserver::BufferToBeEmptied() passing
sl@0
   713
	already recorded buffers. The last buffer flag should be set when
sl@0
   714
	all recorded buffers have been flushed.
sl@0
   715
	
sl@0
   716
	@see CMMFDevSound::Stop()
sl@0
   717
	@see CMMFDevSound::PlayInitL()
sl@0
   718
	@see CMMFDevSound::SamplesPlayed()
sl@0
   719
	*/
sl@0
   720
	IMPORT_C void Pause();
sl@0
   721
sl@0
   722
	/**
sl@0
   723
	Returns the number samples recorded so far.
sl@0
   724
sl@0
   725
	@return The samples recorded.
sl@0
   726
	*/
sl@0
   727
	IMPORT_C TInt SamplesRecorded();
sl@0
   728
sl@0
   729
	/**
sl@0
   730
	Returns the number of samples played so far.
sl@0
   731
sl@0
   732
	@return The samples played.
sl@0
   733
	*/
sl@0
   734
	IMPORT_C TInt SamplesPlayed();
sl@0
   735
sl@0
   736
	/**
sl@0
   737
	Initializes the audio device and starts playing a tone. The tone is played with the
sl@0
   738
	frequency and duration specified.
sl@0
   739
sl@0
   740
	Leaves on failure.
sl@0
   741
sl@0
   742
	@param  aFrequency
sl@0
   743
	        The frequency at which the tone will be played.
sl@0
   744
	@param  aDuration
sl@0
   745
	        The period over which the tone will be played. A zero value causes
sl@0
   746
	        the no tone to be played.
sl@0
   747
	*/
sl@0
   748
	IMPORT_C void PlayToneL(TInt aFrequency, const TTimeIntervalMicroSeconds& aDuration);
sl@0
   749
sl@0
   750
	/**
sl@0
   751
	Initializes audio device and starts playing a dual tone.
sl@0
   752
sl@0
   753
	The generated tone consists of two sine waves of different frequencies
sl@0
   754
	summed together.
sl@0
   755
sl@0
   756
	Dual Tone is played with the specified frequencies and for the specified duration.
sl@0
   757
sl@0
   758
	@param  aFrequencyOne
sl@0
   759
	        The first frequency of dual tone.
sl@0
   760
	@param  aFrequencyTwo
sl@0
   761
	        The second frequency of dual tone
sl@0
   762
	@param  aDuration
sl@0
   763
	        The period over which the tone will be played. A zero value causes
sl@0
   764
	        the no tone to be played (Verify this with test app).
sl@0
   765
	*/
sl@0
   766
	IMPORT_C void PlayDualToneL(TInt aFrequencyOne, TInt aFrequencyTwo, const TTimeIntervalMicroSeconds& aDuration);
sl@0
   767
sl@0
   768
	/**
sl@0
   769
	Initializes the audio device and starts playing the DTMF string aDTMFString.
sl@0
   770
sl@0
   771
	Leaves on failure.
sl@0
   772
sl@0
   773
	@param  aDTMFString
sl@0
   774
	        The DTMF sequence in a descriptor.
sl@0
   775
	*/
sl@0
   776
	IMPORT_C void PlayDTMFStringL(const TDesC& aDTMFString);
sl@0
   777
sl@0
   778
	/**
sl@0
   779
	Initializes the audio device and starts playing a tone sequence.
sl@0
   780
sl@0
   781
	Leaves on failure.
sl@0
   782
sl@0
   783
	@param  aData
sl@0
   784
	        The tone sequence in a descriptor.
sl@0
   785
	*/
sl@0
   786
	IMPORT_C void PlayToneSequenceL(const TDesC8& aData);
sl@0
   787
sl@0
   788
	/**
sl@0
   789
	Initializes the audio device and starts playing the specified pre-defined tone
sl@0
   790
	sequence.
sl@0
   791
sl@0
   792
	Leaves on failure.
sl@0
   793
sl@0
   794
	@param  aSequenceNumber
sl@0
   795
	        The index identifying the specific pre-defined tone sequence. Index
sl@0
   796
	        values are relative to zero.
sl@0
   797
	        This can be any value from zero to the value returned by a call to
sl@0
   798
			FixedSequenceCount() - 1.
sl@0
   799
	        The function raises a panic if the sequence number is not within this
sl@0
   800
	        range.
sl@0
   801
	@see	FixedSequenceCount()
sl@0
   802
	*/
sl@0
   803
	IMPORT_C void PlayFixedSequenceL(TInt aSequenceNumber);
sl@0
   804
sl@0
   805
	/**
sl@0
   806
	Defines the number of times the audio is to be repeated during the tone
sl@0
   807
	playback operation.
sl@0
   808
sl@0
   809
	A period of silence can follow each playing of a tone. The tone playing can
sl@0
   810
	be repeated indefinitely.
sl@0
   811
sl@0
   812
	@param  aRepeatCount
sl@0
   813
	        The number of times the tone, together with the trailing silence,
sl@0
   814
	        is to be repeated. If this is set to KMdaRepeatForever, then the
sl@0
   815
	        tone, together with the trailing silence, is repeated indefinitely
sl@0
   816
	        or until Stop() is called. If this is set to zero, then the tone is
sl@0
   817
	        not repeated.
sl@0
   818
	@param  aRepeatTrailingSilence
sl@0
   819
	        An interval of silence which will be played after each tone.
sl@0
   820
	        Supported only during tone playing.
sl@0
   821
	*/
sl@0
   822
	IMPORT_C void SetToneRepeats(TInt aRepeatCount,
sl@0
   823
					const TTimeIntervalMicroSeconds& aRepeatTrailingSilence);
sl@0
   824
sl@0
   825
	/**
sl@0
   826
	Defines the duration of tone on, tone off and tone pause to be used during the
sl@0
   827
	DTMF tone playback operation.
sl@0
   828
sl@0
   829
	Supported only during tone playing.
sl@0
   830
sl@0
   831
	@param  aToneOnLength
sl@0
   832
	        The period over which the tone will be played. If this is set to
sl@0
   833
	        zero, then the tone is not played.
sl@0
   834
	@param  aToneOffLength
sl@0
   835
	        The period over which the no tone will be played.
sl@0
   836
	@param  aPauseLength
sl@0
   837
	        The period over which the tone playing will be paused.
sl@0
   838
	*/
sl@0
   839
	IMPORT_C void SetDTMFLengths(TTimeIntervalMicroSeconds32& aToneOnLength,
sl@0
   840
									TTimeIntervalMicroSeconds32& aToneOffLength,
sl@0
   841
									TTimeIntervalMicroSeconds32& aPauseLength);
sl@0
   842
sl@0
   843
	/**
sl@0
   844
	Defines the period over which the volume level is to rise smoothly from
sl@0
   845
	nothing to the normal volume level.
sl@0
   846
sl@0
   847
	The function is only available while the tone is playing.
sl@0
   848
sl@0
   849
	@param  aRampDuration
sl@0
   850
	        The period over which the volume is to rise. A zero value causes
sl@0
   851
	        the tone sample to be played at the normal level for the full
sl@0
   852
	        duration of the playback. A value, which is longer than the duration
sl@0
   853
	        of the tone sample means that the sample never reaches its normal
sl@0
   854
	        volume level.
sl@0
   855
	*/
sl@0
   856
	IMPORT_C void SetVolumeRamp(const TTimeIntervalMicroSeconds& aRampDuration);
sl@0
   857
sl@0
   858
	/**
sl@0
   859
	Defines the priority settings that should be used for this instance.
sl@0
   860
sl@0
   861
	@param  aPrioritySettings
sl@0
   862
	        A class type representing the client's priority, priority preference and state.
sl@0
   863
	*/
sl@0
   864
	IMPORT_C void SetPrioritySettings(const TMMFPrioritySettings& aPrioritySettings);
sl@0
   865
sl@0
   866
	/**
sl@0
   867
	Retrieves a custom interface to the device.
sl@0
   868
sl@0
   869
	@param  aInterfaceId
sl@0
   870
	        The interface UID, defined with the custom interface.
sl@0
   871
	
sl@0
   872
	@return A pointer to the interface implementation, or NULL if the device does not
sl@0
   873
	        implement the interface requested. The return value must be cast to the
sl@0
   874
	        correct type by the user.The user should be careful while caching the custom interface pointer,
sl@0
   875
	        as in some situations the lower level custom interface pointer may become NULL.
sl@0
   876
	*/
sl@0
   877
	IMPORT_C TAny* CustomInterface(TUid aInterfaceId);
sl@0
   878
sl@0
   879
	/**
sl@0
   880
	Returns the number of available pre-defined tone sequences.
sl@0
   881
sl@0
   882
	This is the number of fixed sequence supported by DevSound by default.
sl@0
   883
sl@0
   884
	@return The fixed sequence count. This value is implementation dependent but is always greater 
sl@0
   885
	        than or equal to zero.
sl@0
   886
	*/
sl@0
   887
	IMPORT_C TInt FixedSequenceCount();
sl@0
   888
sl@0
   889
	/**
sl@0
   890
	Returns the name assigned to a specific pre-defined tone sequence.
sl@0
   891
sl@0
   892
	This is the number of the fixed sequence supported by DevSound by default.
sl@0
   893
sl@0
   894
	The function raises a panic if sequence number specified is invalid.
sl@0
   895
sl@0
   896
	@param  aSequenceNumber
sl@0
   897
	        The index identifying the specific pre-defined tone sequence. Index values are relative 
sl@0
   898
	        to zero. This can be any value from zero to the value returned by a call to
sl@0
   899
	        FixedSequenceCount() - 1.
sl@0
   900
	        The function raises a panic if sequence number is not within this
sl@0
   901
	        range.
sl@0
   902
sl@0
   903
	@return A reference to a Descriptor containing the fixed sequence name indexed by
sl@0
   904
	        aSequenceNumber.
sl@0
   905
	        
sl@0
   906
	@see	FixedSequenceCount()
sl@0
   907
	*/
sl@0
   908
	IMPORT_C const TDesC& FixedSequenceName(TInt aSequenceNumber);
sl@0
   909
sl@0
   910
	/**
sl@0
   911
	Returns a list of the supported input datatypes that can be sent to DevSound for playing audio.
sl@0
   912
	The datatypes returned are those that the DevSound supports given the priority settings passed
sl@0
   913
	in aPrioritySettings.
sl@0
   914
sl@0
   915
	Note that if no supported data types are found this does not constitute failure, the function will
sl@0
   916
	return normally with no entries in aSupportedDataTypes.
sl@0
   917
sl@0
   918
	@param  aSupportedDataTypes
sl@0
   919
	        The array of supported data types that will be filled in by this function.
sl@0
   920
	        The supported data types of the DevSound are in the form of an array
sl@0
   921
	        of TFourCC codes. Any existing entries in the array will be overwritten on 
sl@0
   922
	        calling this function. If no supported data types are found given the priority 
sl@0
   923
	        settings, then the aSupportedDatatypes array will have zero entries.
sl@0
   924
	@param  aPrioritySettings
sl@0
   925
	        The priority settings used to determine the supported datatypes.  Note this
sl@0
   926
	        does not set the priority settings. For input datatypes the iState member
sl@0
   927
	        of the priority settings would be expected to be either
sl@0
   928
	        EMMFStatePlaying or EMMFStatePlayingRecording. The priority settings may
sl@0
   929
	        effect the supported datatypes depending on the audio routing.
sl@0
   930
	*/
sl@0
   931
	IMPORT_C void GetSupportedInputDataTypesL(RArray<TFourCC>& aSupportedDataTypes, const TMMFPrioritySettings& aPrioritySettings) const;
sl@0
   932
sl@0
   933
	/**
sl@0
   934
	Returns a list of the supported output dataypes that can be received from DevSound for
sl@0
   935
	recording audio.  The datatypes returned are those that the DevSound supports given the priority 
sl@0
   936
	settings passed in aPrioritySettings.
sl@0
   937
sl@0
   938
	Note that if no supported data types are found this does not constitute failure, the function will 
sl@0
   939
	return normally with no entries in aSupportedDataTypes.
sl@0
   940
sl@0
   941
	@param  aSupportedDataTypes
sl@0
   942
	        The array of supported data types that will be filled in by this function.
sl@0
   943
	        The supported datatypes of the DevSound are in the form of an array
sl@0
   944
	        of TFourCC codes.
sl@0
   945
	        Any existing entries in the array will be overwritten on calling this function.
sl@0
   946
	        If no supported datatypes are found given the priority settings, then
sl@0
   947
	        the aSupportedDatatypes array will have zero entries.
sl@0
   948
	@param  aPrioritySettings
sl@0
   949
	        The priority settings used to determine the supported data types.  Note this
sl@0
   950
	        does not set the priority settings. For output data types the iState member
sl@0
   951
	        of the priority settings would expected to be either
sl@0
   952
	        EMMFStateRecording or EMMFStatePlayingRecording. The priority settings may
sl@0
   953
	        effect the supported datatypes depending on the audio routing.
sl@0
   954
	*/
sl@0
   955
	IMPORT_C void GetSupportedOutputDataTypesL(RArray<TFourCC>& aSupportedDataTypes, const TMMFPrioritySettings& aPrioritySettings) const;
sl@0
   956
	
sl@0
   957
	/** 
sl@0
   958
	Registers the client for notification of resource avalibility.
sl@0
   959
sl@0
   960
	@param  aEventType
sl@0
   961
	        The Notification event type for which the client needs notification.
sl@0
   962
	@param  aNotificationRegistrationData
sl@0
   963
	        The Notification Registration data has been reserved for future use and its value should be always NULL
sl@0
   964
	@return An error code indicating if the function call was successful. KErrNone on success, 
sl@0
   965
			KErrNotSupported if the event type is not supported, KErrArgument if the notification data
sl@0
   966
			is not null otherwise another of the system-wide error codes.
sl@0
   967
	*/
sl@0
   968
	inline TInt RegisterAsClient(TUid aEventType, const TDesC8& aNotificationRegistrationData = KNullDesC8);
sl@0
   969
	
sl@0
   970
	/**
sl@0
   971
	Cancels the Registered Notification.
sl@0
   972
	
sl@0
   973
	@param  aEventType
sl@0
   974
	        The Event type need to cancel
sl@0
   975
	@return An error code indicating if the function call was successful. KErrNone on success, KErrNotSupported
sl@0
   976
			if the event type is not supported otherwise another of the system-wide error codes.
sl@0
   977
	*/	
sl@0
   978
	inline TInt CancelRegisterAsClient(TUid aEventType);
sl@0
   979
	
sl@0
   980
	/**
sl@0
   981
	Returns the Notification data which the client needs to resume playing.
sl@0
   982
	
sl@0
   983
	@param aEventType
sl@0
   984
	       The Event type for which to get notification data  
sl@0
   985
	@param aNotificationData
sl@0
   986
			The reference data for which the client needs to resume the play. The actual data depends on the event type.
sl@0
   987
			Note that for the event type 'KMMFEventCategoryAudioResourceAvailable' the package buffer returned
sl@0
   988
			is TMMFTimeIntervalMicroSecondsPckg,but the contents should be converted to an integer and
sl@0
   989
			interpreted as the data returned is samples played ,but not as a microsecond value.
sl@0
   990
	@return An error code indicating if the function call was successful. KErrNone on success, otherwise
sl@0
   991
	        another of the system-wide error codes.
sl@0
   992
	*/
sl@0
   993
	inline TInt GetResourceNotificationData(TUid aEventType,TDes8& aNotificationData);
sl@0
   994
	
sl@0
   995
	/**
sl@0
   996
	Wait for the clients to resume play back even after the default timeout expires.
sl@0
   997
	Unless the client cancels the notification request or completes no other client gets
sl@0
   998
	notification.
sl@0
   999
	
sl@0
  1000
	@return An error code indicating if the function call was successful. KErrNone on success,
sl@0
  1001
			KErrPermissionDenied if the client does not have MultimediaDD capaility, otherwise
sl@0
  1002
	        another of the system-wide error codes.
sl@0
  1003
	*/
sl@0
  1004
	inline TInt WillResumePlay();
sl@0
  1005
	
sl@0
  1006
	/**
sl@0
  1007
sl@0
  1008
	Empties the play buffers below DevSound without causing the codec to be deleted.
sl@0
  1009
sl@0
  1010
	@return An error code indicating if the function call was successful. KErrNone on success,
sl@0
  1011
			KErrNotSupported if called in a mode other than EMMFStatePlaying or if the function is otherwise not supported,
sl@0
  1012
			KErrNotReady if this is called before playing,
sl@0
  1013
			otherwise another of the system-wide error codes.
sl@0
  1014
			If this function is not supported, it is advised to use Stop().
sl@0
  1015
	*/
sl@0
  1016
	inline TInt EmptyBuffers();
sl@0
  1017
sl@0
  1018
	/** Cancels the initialization process of a CMMFDevSound object
sl@0
  1019
sl@0
  1020
	@return An error code indicating if the function call was successful. 
sl@0
  1021
			KErrNone on success,
sl@0
  1022
			KerrNotReady if this is called before InitializeL() call or after      
sl@0
  1023
			the object has been initialized, 
sl@0
  1024
	*/
sl@0
  1025
	inline TInt CancelInitialize();
sl@0
  1026
	
sl@0
  1027
	/**
sl@0
  1028
	Sets client thread info for devsound to make proper policy and routing decisions
sl@0
  1029
	
sl@0
  1030
	@param  aTid
sl@0
  1031
			The thread Id of real client.
sl@0
  1032
	
sl@0
  1033
	@capability MultimediaDD
sl@0
  1034
			A process requires MultimediaDD capability to make this call. 
sl@0
  1035
	*/
sl@0
  1036
	inline TInt SetClientThreadInfo(TThreadId aTid);
sl@0
  1037
sl@0
  1038
	/**
sl@0
  1039
	Retrieves the current play time from the audio renderer
sl@0
  1040
	
sl@0
  1041
	@param  aTime
sl@0
  1042
	        A reference to TTimeIntervalMicroSeconds object which will be filled with the current play time by this function.  
sl@0
  1043
	@return An error code indicating if the function call was successful. 
sl@0
  1044
			KErrNone on success,
sl@0
  1045
			KErrNotSupported if the underlying devsound implementation or the HwDevice does not support this API,
sl@0
  1046
			otherwise any of the system-wide error codes.
sl@0
  1047
			If this function is not supported, SamplesPlayed() needs to be used instead.
sl@0
  1048
	
sl@0
  1049
	@see	IsGetTimePlayedSupported()
sl@0
  1050
	*/
sl@0
  1051
	inline TInt GetTimePlayed(TTimeIntervalMicroSeconds& aTime);
sl@0
  1052
	
sl@0
  1053
	/**
sl@0
  1054
	This method can be used by devsound clients to check if the devsound implementation supports
sl@0
  1055
	GetTimePlayed API. If this method returns EFalse, SamplesPlayed needs to be used.
sl@0
  1056
	
sl@0
  1057
	@return ETrue if the underlying devsound implementation supports GetTimePlayed API,
sl@0
  1058
			EFalse if the the underlying devsound implementation does not support GetTimePlayed API
sl@0
  1059
	
sl@0
  1060
	@see	GetTimePlayed()
sl@0
  1061
	*/
sl@0
  1062
	inline TBool IsGetTimePlayedSupported();
sl@0
  1063
sl@0
  1064
	/**
sl@0
  1065
	This method can be used by devsound clients to check if the devsound implementation ignores the underflow
sl@0
  1066
	errors from the sound driver and does not propagate them to its clients. 
sl@0
  1067
	
sl@0
  1068
	@return ETrue 	if devsound ignores all the underflow errors from the sound driver except for the last buffer
sl@0
  1069
					That means DevSound propagates the underflow error from sound driver to its clients only when 
sl@0
  1070
					client sets the last buffer flag on the CMMFBuffer type buffer.
sl@0
  1071
			EFalse 	if devsound propagates the underflow errors from the sound driver in all the cases
sl@0
  1072
	
sl@0
  1073
	*/
sl@0
  1074
	inline TBool QueryIgnoresUnderflow();
sl@0
  1075
sl@0
  1076
	/**
sl@0
  1077
	This method can be used by devsound clients to check if current configuration supports resume
sl@0
  1078
	This call is only valid when DevSound is initialized
sl@0
  1079
	@return ETrue 	if current format does supports resume
sl@0
  1080
			EFalse 	otherwise
sl@0
  1081
	*/
sl@0
  1082
	inline TBool IsResumeSupported();
sl@0
  1083
sl@0
  1084
	/**
sl@0
  1085
	Resume play back, recording or tone playing after this has been paused
sl@0
  1086
	@return An error code indicating if the function call was successful. 
sl@0
  1087
			KErrNone on success,
sl@0
  1088
			KErrNotSupported if current format configuration does not support this functionality
sl@0
  1089
			KErrNotReady if DevSound is not paused
sl@0
  1090
	*/
sl@0
  1091
	inline TInt Resume();
sl@0
  1092
sl@0
  1093
protected:
sl@0
  1094
sl@0
  1095
	/**
sl@0
  1096
	Default Constructor.
sl@0
  1097
	*/
sl@0
  1098
	//So that nobody can extend derive from CMMFDevSound.
sl@0
  1099
	CMMFDevSound();
sl@0
  1100
sl@0
  1101
	/**
sl@0
  1102
	Second phase constructor.
sl@0
  1103
	*/
sl@0
  1104
	void ConstructL();
sl@0
  1105
sl@0
  1106
	class CBody;
sl@0
  1107
	
sl@0
  1108
	/**
sl@0
  1109
	DevSound body
sl@0
  1110
	*/
sl@0
  1111
	CBody* iBody;
sl@0
  1112
	};
sl@0
  1113
sl@0
  1114
inline void MDevSoundObserver::SendEventToClient(const TMMFEvent& /*aEvent*/)
sl@0
  1115
	{
sl@0
  1116
	}
sl@0
  1117
sl@0
  1118
#include <mmf/server/sounddevice.inl>
sl@0
  1119
sl@0
  1120
#endif // __SOUNDDEVICE_H__