os/mm/devsound/devsoundpluginsupport/src/sounddevice/SoundDevice.cpp
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
#include <mmf/server/sounddevice.h>
sl@0
    17
#include "SoundDeviceBody.h"
sl@0
    18
sl@0
    19
/*
sl@0
    20
 *
sl@0
    21
 *	Default Constructor.
sl@0
    22
 *
sl@0
    23
 *
sl@0
    24
 */
sl@0
    25
CMMFDevSound::CMMFDevSound()
sl@0
    26
	{
sl@0
    27
	}
sl@0
    28
sl@0
    29
/*
sl@0
    30
 *  -doxygen comments moved to header-
sl@0
    31
 *
sl@0
    32
 *	Destructor.
sl@0
    33
 *
sl@0
    34
 *	Deletes all objects and releases all resource owned by this
sl@0
    35
 *	instance.
sl@0
    36
 *
sl@0
    37
 */
sl@0
    38
EXPORT_C CMMFDevSound::~CMMFDevSound()
sl@0
    39
	{
sl@0
    40
	delete iBody;
sl@0
    41
	}
sl@0
    42
sl@0
    43
/*
sl@0
    44
 *  -doxygen comments moved to header-
sl@0
    45
 *
sl@0
    46
 *	Constructs, and returns a pointer to, a new CMMFDevSound object.
sl@0
    47
 *
sl@0
    48
 *	Leaves on failure.
sl@0
    49
 *
sl@0
    50
 */
sl@0
    51
EXPORT_C CMMFDevSound* CMMFDevSound::NewL()
sl@0
    52
	{
sl@0
    53
	CMMFDevSound* self = new (ELeave) CMMFDevSound;
sl@0
    54
	CleanupStack::PushL(self);
sl@0
    55
	self->ConstructL();
sl@0
    56
	CleanupStack::Pop();
sl@0
    57
	return self;
sl@0
    58
	}
sl@0
    59
sl@0
    60
/*
sl@0
    61
 *  -doxygen comments moved to header-
sl@0
    62
 *
sl@0
    63
 *	Second phase constructor.
sl@0
    64
 *
sl@0
    65
 */
sl@0
    66
void CMMFDevSound::ConstructL()
sl@0
    67
	{
sl@0
    68
	iBody = CBody::NewL();
sl@0
    69
	}
sl@0
    70
sl@0
    71
/*
sl@0
    72
 *  -doxygen comments moved to header-
sl@0
    73
 *
sl@0
    74
 *	Initializes CMMFDevSound object to play and record PCM16 raw audio data
sl@0
    75
 *	with sampling rate of 8 KHz.
sl@0
    76
 *
sl@0
    77
 *	On completion of Initialization, calls InitializeComplete() on
sl@0
    78
 *	aDevSoundObserver.
sl@0
    79
 *
sl@0
    80
 *	Leaves on failure.
sl@0
    81
 *
sl@0
    82
 *	@param	"aDevSoundObserver"
sl@0
    83
 *			A reference to DevSound Observer instance.
sl@0
    84
 *
sl@0
    85
 *	@param	"aMode"
sl@0
    86
 *			Mode for which this object will be used.
sl@0
    87
 *
sl@0
    88
 */
sl@0
    89
EXPORT_C void CMMFDevSound::InitializeL(MDevSoundObserver& aDevSoundObserver, TMMFState aMode)
sl@0
    90
sl@0
    91
	{
sl@0
    92
	iBody->InitializeL(aDevSoundObserver,aMode);
sl@0
    93
	}
sl@0
    94
sl@0
    95
/*
sl@0
    96
 *  -doxygen comments moved to header-
sl@0
    97
 *
sl@0
    98
 *	Initializes DevSound object for the mode aMode for processing audio data
sl@0
    99
 *	with hardware device aHWDev.
sl@0
   100
 *
sl@0
   101
 *	On completion of Initialization, the observer will be notified via call back
sl@0
   102
 *	InitializeComplete().
sl@0
   103
 *
sl@0
   104
 *	Leaves on failure.
sl@0
   105
 *
sl@0
   106
 *	@param	"aDevSoundObserver"
sl@0
   107
 *			A reference to DevSound Observer instance.
sl@0
   108
 *
sl@0
   109
 *	@param	"aHWDev"
sl@0
   110
 *			CMMFHwDevice implementation identifier.
sl@0
   111
 *
sl@0
   112
 *	@param	"aMode"
sl@0
   113
 *			Mode for which this object will be used.
sl@0
   114
 *
sl@0
   115
 */
sl@0
   116
EXPORT_C void CMMFDevSound::InitializeL(MDevSoundObserver& aDevSoundObserver, TUid aHWDev, TMMFState aMode)
sl@0
   117
	{
sl@0
   118
	iBody->InitializeL(aDevSoundObserver, aHWDev, aMode);
sl@0
   119
	}
sl@0
   120
sl@0
   121
/*
sl@0
   122
 *  -doxygen comments moved to header-
sl@0
   123
 *
sl@0
   124
 *	Initializes DevSound object for the mode aMode for processing audio data
sl@0
   125
 *	with hardware device supporting FourCC aDesiredFourCC.
sl@0
   126
 *
sl@0
   127
 *	On completion of Initialization, the observer will be notified via call back
sl@0
   128
 *	InitializeComplete().
sl@0
   129
 *
sl@0
   130
 *	Leaves on failure.
sl@0
   131
 *
sl@0
   132
 *	@param	"aDevSoundObserver"
sl@0
   133
 *			A reference to DevSound Observer instance.
sl@0
   134
 *
sl@0
   135
 *	@param	"aDesiredFourCC"
sl@0
   136
 *			CMMFHwDevice implementation FourCC.
sl@0
   137
 *
sl@0
   138
 *	@param	"aMode"
sl@0
   139
 *			Mode for which this object will be used.
sl@0
   140
 *
sl@0
   141
 */
sl@0
   142
EXPORT_C void CMMFDevSound::InitializeL(MDevSoundObserver& aDevSoundObserver, 
sl@0
   143
										  TFourCC aDesiredFourCC, TMMFState aMode)
sl@0
   144
	{
sl@0
   145
	iBody->InitializeL(aDevSoundObserver, aDesiredFourCC, aMode);
sl@0
   146
	}
sl@0
   147
sl@0
   148
/*
sl@0
   149
 *  -doxygen comments moved to header-
sl@0
   150
 *
sl@0
   151
 *	Returns the supported Audio settings.
sl@0
   152
 *
sl@0
   153
 *	@return	"TMMFCapabilities"
sl@0
   154
 *			Device settings.
sl@0
   155
 *
sl@0
   156
 */
sl@0
   157
EXPORT_C TMMFCapabilities CMMFDevSound::Capabilities()
sl@0
   158
	{
sl@0
   159
	return iBody->Capabilities();
sl@0
   160
	}
sl@0
   161
sl@0
   162
/*
sl@0
   163
 *  -doxygen comments moved to header-
sl@0
   164
 *
sl@0
   165
 *	Returns the current audio settings.
sl@0
   166
 *
sl@0
   167
 *	@return	"TMMFCapabilities"
sl@0
   168
 *			Device settings.
sl@0
   169
 *
sl@0
   170
 */
sl@0
   171
EXPORT_C TMMFCapabilities CMMFDevSound::Config() const
sl@0
   172
	{
sl@0
   173
	return iBody->Config();
sl@0
   174
	}
sl@0
   175
sl@0
   176
/*
sl@0
   177
 *  -doxygen comments moved to header-
sl@0
   178
 *
sl@0
   179
 *	Configure CMMFDevSound object for the settings in aConfig.
sl@0
   180
 *
sl@0
   181
 *	Use this to set sampling rate, Encoding and Mono/Stereo.
sl@0
   182
 *
sl@0
   183
 *	@param	"aConfig"
sl@0
   184
 *			Attribute values to which CMMFDevSound object will be configured to.
sl@0
   185
 *
sl@0
   186
 */
sl@0
   187
EXPORT_C void CMMFDevSound::SetConfigL(const TMMFCapabilities& aConfig)
sl@0
   188
	{
sl@0
   189
	iBody->SetConfigL(aConfig);
sl@0
   190
	}
sl@0
   191
sl@0
   192
/*
sl@0
   193
 *  -doxygen comments moved to header-
sl@0
   194
 *
sl@0
   195
 *	Returns an integer representing the maximum volume.
sl@0
   196
 *
sl@0
   197
 *	This is the maximum value which can be passed to CMMFDevSound::SetVolume.
sl@0
   198
 *
sl@0
   199
 *	@return	"TInt"
sl@0
   200
 *			The maximum volume. This value is platform dependent but is always
sl@0
   201
 *			greater than or equal to one.
sl@0
   202
 *
sl@0
   203
 */
sl@0
   204
EXPORT_C TInt CMMFDevSound::MaxVolume()
sl@0
   205
	{
sl@0
   206
	return iBody->MaxVolume();
sl@0
   207
	}
sl@0
   208
sl@0
   209
/*
sl@0
   210
 *  -doxygen comments moved to header-
sl@0
   211
 *
sl@0
   212
 *	Returns an integer representing the current volume.
sl@0
   213
 *
sl@0
   214
 *	@return	"TInt"
sl@0
   215
 *			The current volume level.
sl@0
   216
 *
sl@0
   217
 */
sl@0
   218
EXPORT_C TInt CMMFDevSound::Volume()
sl@0
   219
	{
sl@0
   220
	return iBody->Volume();
sl@0
   221
	}
sl@0
   222
sl@0
   223
/*
sl@0
   224
 *  -doxygen comments moved to header-
sl@0
   225
 *
sl@0
   226
 *	Changes the current playback volume to a specified value.
sl@0
   227
 *
sl@0
   228
 *	The volume can be changed before or during playback and is effective
sl@0
   229
 *	immediately.
sl@0
   230
 *
sl@0
   231
 *	@param	"aVolume"
sl@0
   232
 *			The volume setting. This can be any value from zero to the value
sl@0
   233
 *			returned by a call to CMMFDevSound::MaxVolume(). If the
sl@0
   234
 *			volume is not within this range, the volume is automatically set to
sl@0
   235
 *			minimum or maximum value based on the value that is being passed.
sl@0
   236
 *			Setting a zero value mutes the sound. Setting the maximum value
sl@0
   237
 *			results in the loudest possible sound.
sl@0
   238
 *
sl@0
   239
 */
sl@0
   240
EXPORT_C void CMMFDevSound::SetVolume(TInt aVolume)
sl@0
   241
	{
sl@0
   242
	iBody->SetVolume(aVolume);
sl@0
   243
	}
sl@0
   244
sl@0
   245
/*
sl@0
   246
 *  -doxygen comments moved to header-
sl@0
   247
 *
sl@0
   248
 *	Returns an integer representing the maximum gain.
sl@0
   249
 *
sl@0
   250
 *	This is the maximum value which can be passed to CMMFDevSound::SetGain.
sl@0
   251
 *
sl@0
   252
 *	@return	"TInt"
sl@0
   253
 *			The maximum gain. This value is platform dependent but is always
sl@0
   254
 *			greater than or equal to one.
sl@0
   255
 *
sl@0
   256
 */
sl@0
   257
EXPORT_C TInt CMMFDevSound::MaxGain()
sl@0
   258
	{
sl@0
   259
	return iBody->MaxGain();
sl@0
   260
	}
sl@0
   261
sl@0
   262
/*
sl@0
   263
 *  -doxygen comments moved to header-
sl@0
   264
 *
sl@0
   265
 *	Returns an integer representing the current gain.
sl@0
   266
 *
sl@0
   267
 *	@return	"TInt"
sl@0
   268
 *			The current gain level.
sl@0
   269
 *
sl@0
   270
 */
sl@0
   271
EXPORT_C TInt CMMFDevSound::Gain()
sl@0
   272
	{
sl@0
   273
	return iBody->Gain();
sl@0
   274
	}
sl@0
   275
sl@0
   276
/*
sl@0
   277
 *  -doxygen comments moved to header-
sl@0
   278
 *
sl@0
   279
 *	Changes the current recording gain to a specified value.
sl@0
   280
 *
sl@0
   281
 *	The gain can be changed before or during recording and is effective
sl@0
   282
 *	immediately.
sl@0
   283
 *
sl@0
   284
 *	@param	"TInt aGain"
sl@0
   285
 *			The gain setting. This can be any value from zero to the value
sl@0
   286
 *			returned by a call to CMMFDevSound::MaxGain(). If the
sl@0
   287
 *			volume is not within this range, the gain is automatically set to
sl@0
   288
 *			minimum or maximum value based on the value that is being passed.
sl@0
   289
 *			Setting a zero value mutes the sound. Setting the maximum value
sl@0
   290
 *			results in the loudest possible sound.
sl@0
   291
 *
sl@0
   292
 */
sl@0
   293
EXPORT_C void CMMFDevSound::SetGain(TInt aGain)
sl@0
   294
	{
sl@0
   295
	iBody->SetGain(aGain);
sl@0
   296
	}
sl@0
   297
sl@0
   298
/*
sl@0
   299
 *  -doxygen comments moved to header-
sl@0
   300
 *
sl@0
   301
 *	Returns the speaker balance set for playing.
sl@0
   302
 *
sl@0
   303
 *	Leaves on failure.
sl@0
   304
 *
sl@0
   305
 *	@param	"aLeftPrecentage"
sl@0
   306
 *			On return contains the left speaker volume percentage.
sl@0
   307
 *
sl@0
   308
 *	@param	"aRightPercentage"
sl@0
   309
 *			On return contains the right speaker volume percentage.
sl@0
   310
 *
sl@0
   311
 */
sl@0
   312
EXPORT_C void CMMFDevSound::GetPlayBalanceL(TInt& aLeftPercentage, TInt& aRightPercentage)
sl@0
   313
	{
sl@0
   314
	iBody->GetPlayBalanceL(aLeftPercentage, aRightPercentage);
sl@0
   315
	}
sl@0
   316
sl@0
   317
/*
sl@0
   318
 *  -doxygen comments moved to header-
sl@0
   319
 *
sl@0
   320
 *	Sets the speaker balance for playing.
sl@0
   321
 *
sl@0
   322
 *	The speaker balance can be changed before or during playback and is
sl@0
   323
 *	effective immediately.
sl@0
   324
 *
sl@0
   325
 *	@param	"aLeftPercentage"
sl@0
   326
 *			On return contains left speaker volume perecentage. This can be any
sl@0
   327
 *			value from zero to 100. Setting a zero value mutes the sound on left
sl@0
   328
 *			speaker.
sl@0
   329
 *
sl@0
   330
 *	@param	"aRightPercentage"
sl@0
   331
 *			On return contains right speaker volume perecentage. This can be any
sl@0
   332
 *			value from zero to 100. Setting a zero value mutes the sound on
sl@0
   333
 *			right speaker.
sl@0
   334
 *
sl@0
   335
 */
sl@0
   336
EXPORT_C void CMMFDevSound::SetPlayBalanceL(TInt aLeftPercentage, TInt aRightPercentage)
sl@0
   337
	{
sl@0
   338
	iBody->SetPlayBalanceL(aLeftPercentage, aRightPercentage);
sl@0
   339
	}
sl@0
   340
sl@0
   341
/*
sl@0
   342
 *  -doxygen comments moved to header-
sl@0
   343
 *
sl@0
   344
 *	Returns the microphone gain balance set for recording.
sl@0
   345
 *
sl@0
   346
 *	Leaves on failure.
sl@0
   347
 *
sl@0
   348
 *	@param	"aLeftPercentage"
sl@0
   349
 *			On return contains the left microphone gain percentage.
sl@0
   350
 *
sl@0
   351
 *	@param	"aRightPercentage"
sl@0
   352
 *			On return contains the right microphone gain percentage.
sl@0
   353
 *
sl@0
   354
 */
sl@0
   355
EXPORT_C void CMMFDevSound::GetRecordBalanceL(TInt& aLeftPercentage, TInt& aRightPercentage)
sl@0
   356
	{
sl@0
   357
	iBody->GetRecordBalanceL(aLeftPercentage, aRightPercentage);
sl@0
   358
	}
sl@0
   359
sl@0
   360
/*
sl@0
   361
 *  -doxygen comments moved to header-
sl@0
   362
 *
sl@0
   363
 *	Sets the microphone gain balance for recording.
sl@0
   364
 *
sl@0
   365
 *	The microphone gain balance can be changed before or during recording and
sl@0
   366
 *	is effective immediately.
sl@0
   367
 *
sl@0
   368
 *	@param	"aLeftPercentage"
sl@0
   369
 *			Left microphone gain precentage. This can be any value from zero to
sl@0
   370
 *			100. Setting a zero value mutes the gain on left microphone.
sl@0
   371
 *
sl@0
   372
 *	@param	"aRightPercentage"
sl@0
   373
 *			Right microphone gain precentage. This can be any value from zero to
sl@0
   374
 *			100. Setting a zero value mutes the gain on right microphone.
sl@0
   375
 *
sl@0
   376
 */
sl@0
   377
EXPORT_C void CMMFDevSound::SetRecordBalanceL(TInt aLeftPercentage, TInt aRightPercentage)
sl@0
   378
	{
sl@0
   379
	iBody->SetRecordBalanceL(aLeftPercentage, aRightPercentage);
sl@0
   380
	}
sl@0
   381
sl@0
   382
/*
sl@0
   383
 *  -doxygen comments moved to header-
sl@0
   384
 *
sl@0
   385
 *	Initializes audio device and start play process. This method queries and
sl@0
   386
 *	acquires the audio policy before initializing audio device. If there was an
sl@0
   387
 *	error during policy initialization, PlayError() method will be called on
sl@0
   388
 *	the observer with error code KErrAccessDenied, otherwise BufferToBeFilled()
sl@0
   389
 *	method will be called with a buffer reference. After reading data into the
sl@0
   390
 *	buffer reference passed, the client should call PlayData() to play data.
sl@0
   391
 *
sl@0
   392
 *	The amount of data that can be played is specified in
sl@0
   393
 *	CMMFBuffer::RequestSize(). Any data that is read into buffer beyond this
sl@0
   394
 *	size will be ignored.
sl@0
   395
 *
sl@0
   396
 *	Leaves on failure.
sl@0
   397
 *
sl@0
   398
 */
sl@0
   399
EXPORT_C void CMMFDevSound::PlayInitL()
sl@0
   400
	{
sl@0
   401
	iBody->PlayInitL();
sl@0
   402
	}
sl@0
   403
sl@0
   404
/*
sl@0
   405
 *  -doxygen comments moved to header-
sl@0
   406
 *
sl@0
   407
 *	Initializes audio device and start record process. This method queries and
sl@0
   408
 *	acquires the audio policy before initializing audio device. If there was an
sl@0
   409
 *	error during policy initialization, RecordError() method will be called on
sl@0
   410
 *	the observer with error code KErrAccessDenied, otherwise BufferToBeEmptied()
sl@0
   411
 *	method will be called with a buffer reference. This buffer contains recorded
sl@0
   412
 *	or encoded data. After processing data in the buffer reference passed, the
sl@0
   413
 *	client should call RecordData() to continue recording process.
sl@0
   414
 *
sl@0
   415
 *	The amount of data that is available is specified in
sl@0
   416
 *	CMMFBuffer::RequestSize().
sl@0
   417
 *
sl@0
   418
 *	Leaves on failure.
sl@0
   419
 *
sl@0
   420
 */
sl@0
   421
EXPORT_C void CMMFDevSound::RecordInitL()
sl@0
   422
	{
sl@0
   423
	iBody->RecordInitL();
sl@0
   424
	}
sl@0
   425
sl@0
   426
/*
sl@0
   427
 *  -doxygen comments moved to header-
sl@0
   428
 *
sl@0
   429
 *	Plays data in the buffer at the current volume. The client should fill
sl@0
   430
 *	the buffer with audio data before calling this method. The Observer gets
sl@0
   431
 *	reference to buffer along with callback BufferToBeFilled(). When playing of
sl@0
   432
 *	the audio sample is complete, successfully or otherwise, the method
sl@0
   433
 *	PlayError() on observer is called.
sl@0
   434
 *
sl@0
   435
 */
sl@0
   436
EXPORT_C void CMMFDevSound::PlayData()
sl@0
   437
	{
sl@0
   438
	iBody->PlayData();
sl@0
   439
	}
sl@0
   440
sl@0
   441
/*
sl@0
   442
 *  -doxygen comments moved to header-
sl@0
   443
 *
sl@0
   444
 *	Contine the process of recording. Once the buffer is filled with recorded
sl@0
   445
 *	data, the Observer gets reference to buffer along with callback
sl@0
   446
 *	BufferToBeEmptied(). After processing the buffer (copying over to a
sl@0
   447
 *	different buffer or writing to file) the client should call this
sl@0
   448
 *	method to continue recording process.
sl@0
   449
 *
sl@0
   450
 */
sl@0
   451
EXPORT_C void CMMFDevSound::RecordData()
sl@0
   452
	{
sl@0
   453
	iBody->RecordData();
sl@0
   454
	}
sl@0
   455
sl@0
   456
/*
sl@0
   457
 *  -doxygen comments moved to header-
sl@0
   458
 *
sl@0
   459
 *	Stops the ongoing operation (Play, Record, TonePlay, Convert)
sl@0
   460
 *
sl@0
   461
 */
sl@0
   462
EXPORT_C void CMMFDevSound::Stop()
sl@0
   463
	{
sl@0
   464
	iBody->Stop();
sl@0
   465
	}
sl@0
   466
sl@0
   467
/*
sl@0
   468
 *  -doxygen comments moved to header-
sl@0
   469
 *
sl@0
   470
 *	Temporarily Stops the ongoing operation (Play, Record, TonePlay, Convert)
sl@0
   471
 *
sl@0
   472
 */
sl@0
   473
EXPORT_C void CMMFDevSound::Pause()
sl@0
   474
	{
sl@0
   475
	iBody->Pause();
sl@0
   476
	}
sl@0
   477
sl@0
   478
/*
sl@0
   479
 *  -doxygen comments moved to header-
sl@0
   480
 *
sl@0
   481
 *	Returns the sample recorded so far.
sl@0
   482
 *
sl@0
   483
 *	@return "TInt"
sl@0
   484
 *			Returns the samples recorded.
sl@0
   485
 *
sl@0
   486
 */
sl@0
   487
EXPORT_C TInt CMMFDevSound::SamplesRecorded()
sl@0
   488
	{ 
sl@0
   489
	return iBody->SamplesRecorded();
sl@0
   490
	}
sl@0
   491
sl@0
   492
/*
sl@0
   493
 *  -doxygen comments moved to header-
sl@0
   494
 *
sl@0
   495
 *	Returns the sample played so far.
sl@0
   496
 *
sl@0
   497
 *	@return "TInt"
sl@0
   498
 *			Returns the samples recorded.
sl@0
   499
 *
sl@0
   500
 */
sl@0
   501
EXPORT_C TInt CMMFDevSound::SamplesPlayed()
sl@0
   502
	{ 
sl@0
   503
	return iBody->SamplesPlayed();
sl@0
   504
	}
sl@0
   505
sl@0
   506
sl@0
   507
/*
sl@0
   508
 *  -doxygen comments moved to header-
sl@0
   509
 *
sl@0
   510
 *	Initializes audio device and start playing tone. Tone is played with
sl@0
   511
 *	frequency and for duration specified.
sl@0
   512
 *
sl@0
   513
 *	Leaves on failure.
sl@0
   514
 *
sl@0
   515
 *	@param	"aFrequency"
sl@0
   516
 *			Frequency at with the tone will be played.
sl@0
   517
 *
sl@0
   518
 *	@param	"aDuration"
sl@0
   519
 *			The period over which the tone will be played. A zero value causes
sl@0
   520
 *			the no tone to be played (Verify this with test app).
sl@0
   521
 *
sl@0
   522
 */
sl@0
   523
EXPORT_C void CMMFDevSound::PlayToneL(TInt aFrequency, const TTimeIntervalMicroSeconds& aDuration)
sl@0
   524
	{
sl@0
   525
	iBody->PlayToneL(aFrequency, aDuration);
sl@0
   526
	}
sl@0
   527
sl@0
   528
/*
sl@0
   529
 *  -doxygen comments moved to header-
sl@0
   530
 *
sl@0
   531
 *	Initializes audio device and start playing a dual tone. 
sl@0
   532
 *  The tone consists of two sine waves of different frequencies summed together
sl@0
   533
 *  Dual Tone is played with specified frequencies and for specified duration.
sl@0
   534
 *
sl@0
   535
 *	@param	"aFrequencyOne"
sl@0
   536
 *			First frequency of dual tone
sl@0
   537
 *
sl@0
   538
 *	@param	"aFrequencyTwo"
sl@0
   539
 *			Second frequency of dual tone
sl@0
   540
 *
sl@0
   541
 *	@param	"aDuration"
sl@0
   542
 *			The period over which the tone will be played. A zero value causes
sl@0
   543
 *			the no tone to be played (Verify this with test app).
sl@0
   544
 */
sl@0
   545
EXPORT_C void CMMFDevSound::PlayDualToneL(TInt aFrequencyOne, TInt aFrequencyTwo, const TTimeIntervalMicroSeconds& aDuration)
sl@0
   546
	{
sl@0
   547
	iBody->PlayDualToneL(aFrequencyOne, aFrequencyTwo, aDuration);
sl@0
   548
	}
sl@0
   549
sl@0
   550
/*
sl@0
   551
 *  -doxygen comments moved to header-
sl@0
   552
 *
sl@0
   553
 *	Initializes audio device and start playing DTMF string aDTMFString.
sl@0
   554
 *
sl@0
   555
 *	Leaves on failure.
sl@0
   556
 *
sl@0
   557
 *	@param	"aDTMFString"
sl@0
   558
 *			DTMF sequence in a descriptor.
sl@0
   559
 *
sl@0
   560
 */
sl@0
   561
EXPORT_C void CMMFDevSound::PlayDTMFStringL(const TDesC& aDTMFString)
sl@0
   562
	{
sl@0
   563
	iBody->PlayDTMFStringL(aDTMFString);
sl@0
   564
	}
sl@0
   565
sl@0
   566
/*
sl@0
   567
 *  -doxygen comments moved to header-
sl@0
   568
 *
sl@0
   569
 *	Initializes audio device and start playing tone sequence.
sl@0
   570
 *
sl@0
   571
 *	Leaves on failure.
sl@0
   572
 *
sl@0
   573
 *	@param	"TDesC8& aData"
sl@0
   574
 *			Tone sequence in a descriptor.
sl@0
   575
 *
sl@0
   576
 */
sl@0
   577
EXPORT_C void CMMFDevSound::PlayToneSequenceL(const TDesC8& aData)
sl@0
   578
	{
sl@0
   579
	iBody->PlayToneSequenceL(aData);
sl@0
   580
	}
sl@0
   581
sl@0
   582
/*
sl@0
   583
 *  -doxygen comments moved to header-
sl@0
   584
 *
sl@0
   585
 *	Initializes audio device and start playing the specified pre-defined tone
sl@0
   586
 *	sequence.
sl@0
   587
 *
sl@0
   588
 *	Leaves on failure.
sl@0
   589
 *
sl@0
   590
 *	@param	"aSequenceNumber"
sl@0
   591
 *			The index identifying the specific pre-defined tone sequence. Index
sl@0
   592
 *			values are relative to zero.
sl@0
   593
 *			This can be any value from zero to the value returned by a call to
sl@0
   594
 *			FixedSequenceCount() - 1.
sl@0
   595
 *			The function raises a panic if sequence number is not within this
sl@0
   596
 *			range.
sl@0
   597
 *	@see	FixedSequenceCount()
sl@0
   598
 *
sl@0
   599
 */
sl@0
   600
EXPORT_C void CMMFDevSound::PlayFixedSequenceL(TInt aSequenceNumber)
sl@0
   601
	{
sl@0
   602
	iBody->PlayFixedSequenceL(aSequenceNumber);
sl@0
   603
	}
sl@0
   604
sl@0
   605
/*
sl@0
   606
 *  -doxygen comments moved to header-
sl@0
   607
 *
sl@0
   608
 *	Defines the number of times the audio is to be repeated during the tone
sl@0
   609
 *	playback operation.
sl@0
   610
 *
sl@0
   611
 *	A period of silence can follow each playing of tone. The tone playing can
sl@0
   612
 *	be repeated indefinitely.
sl@0
   613
 *
sl@0
   614
 *	@param	" aRepeatCount"
sl@0
   615
 *			The number of times the tone, together with the trailing silence,
sl@0
   616
 *			is to be repeated. If this is set to KMdaRepeatForever, then the
sl@0
   617
 *			tone, together with the trailing silence, is repeated indefinitely
sl@0
   618
 *			or until Stop() is called. If this is set to zero, then the tone is
sl@0
   619
 *			not repeated.
sl@0
   620
 *
sl@0
   621
 *			Supported only during tone playing.
sl@0
   622
 *
sl@0
   623
 */
sl@0
   624
EXPORT_C void CMMFDevSound::SetToneRepeats(TInt aRepeatCount,
sl@0
   625
				const TTimeIntervalMicroSeconds& aRepeatTrailingSilence)
sl@0
   626
	{
sl@0
   627
	iBody->SetToneRepeats(aRepeatCount, aRepeatTrailingSilence);
sl@0
   628
	}
sl@0
   629
sl@0
   630
/*
sl@0
   631
 *  -doxygen comments moved to header-
sl@0
   632
 *
sl@0
   633
 *	Defines the duration of tone on, tone off and tone pause to be used during the
sl@0
   634
 *	DTMF tone playback operation.
sl@0
   635
 *
sl@0
   636
 *	Supported only during tone playing.
sl@0
   637
 *
sl@0
   638
 *	@param	"aToneOnLength"
sl@0
   639
 *			The period over which the tone will be played. If this is set to
sl@0
   640
 *			zero, then the tone is not played.
sl@0
   641
 *
sl@0
   642
 *	@param	"aToneOffLength"
sl@0
   643
 *			The period over which the no tone will be played.
sl@0
   644
 *
sl@0
   645
 *	@param	"aPauseLength"
sl@0
   646
 *			The period over which the tone playing will be paused.
sl@0
   647
 *
sl@0
   648
 */
sl@0
   649
EXPORT_C void CMMFDevSound::SetDTMFLengths(TTimeIntervalMicroSeconds32& aToneOnLength,
sl@0
   650
								TTimeIntervalMicroSeconds32& aToneOffLength,
sl@0
   651
								TTimeIntervalMicroSeconds32& aPauseLength) 
sl@0
   652
	{
sl@0
   653
	iBody->SetDTMFLengths(aToneOnLength, aToneOffLength, aPauseLength);
sl@0
   654
	}
sl@0
   655
sl@0
   656
/*
sl@0
   657
 *  -doxygen comments moved to header-
sl@0
   658
 *
sl@0
   659
 *	Defines the period over which the volume level is to rise smoothly from
sl@0
   660
 *	nothing to the normal volume level.
sl@0
   661
 *
sl@0
   662
 *	@param	"aRampDuration"
sl@0
   663
 *			The period over which the volume is to rise. A zero value causes 
sl@0
   664
 *			the tone sample to be played at the normal level for the full
sl@0
   665
 *			duration of the playback. A value, which is longer than the duration
sl@0
   666
 *			of the tone sample, that the sample never reaches its normal
sl@0
   667
 *			volume level.
sl@0
   668
 *
sl@0
   669
 *
sl@0
   670
 */
sl@0
   671
EXPORT_C void CMMFDevSound::SetVolumeRamp(const TTimeIntervalMicroSeconds& aRampDuration)
sl@0
   672
	{	
sl@0
   673
	iBody->SetVolumeRamp(aRampDuration);
sl@0
   674
	}
sl@0
   675
sl@0
   676
/*
sl@0
   677
 *  -doxygen comments moved to header-
sl@0
   678
 *
sl@0
   679
 *	Defines the priority settings that should be used for this instance.
sl@0
   680
 *
sl@0
   681
 *	@param	"aPrioritySettings"
sl@0
   682
 *			An class type representing the client's priority, priority 
sl@0
   683
 *			preference and state.
sl@0
   684
 *
sl@0
   685
 */
sl@0
   686
EXPORT_C void CMMFDevSound::SetPrioritySettings(const TMMFPrioritySettings& aPrioritySettings)
sl@0
   687
	{
sl@0
   688
	iBody->SetPrioritySettings(aPrioritySettings);
sl@0
   689
	}
sl@0
   690
sl@0
   691
EXPORT_C TAny* CMMFDevSound::CustomInterface(TUid aInterface)
sl@0
   692
	{
sl@0
   693
	return iBody->CustomInterface(aInterface);
sl@0
   694
	}
sl@0
   695
sl@0
   696
/*
sl@0
   697
 *  -doxygen comments moved to header-
sl@0
   698
 *
sl@0
   699
 *	Returns the number of available pre-defined tone sequences.
sl@0
   700
 *
sl@0
   701
 *	This is the number of fixed sequence supported by DevSound by default.
sl@0
   702
 *
sl@0
   703
 *	@return	"TInt"
sl@0
   704
 *			The fixed sequence count. This value is implementation dependent
sl@0
   705
 *			but is always greater than or equal to zero.
sl@0
   706
 *
sl@0
   707
 */
sl@0
   708
EXPORT_C TInt CMMFDevSound::FixedSequenceCount()
sl@0
   709
	{
sl@0
   710
	return iBody->FixedSequenceCount();
sl@0
   711
	}
sl@0
   712
sl@0
   713
/*
sl@0
   714
 *  -doxygen comments moved to header-
sl@0
   715
 *
sl@0
   716
 *	Returns the name assigned to a specific pre-defined tone sequence.
sl@0
   717
 *
sl@0
   718
 *	This is the number of fixed sequence supported by DevSound by default.
sl@0
   719
 *
sl@0
   720
 *	The function raises a panic if sequence number specified invalid.
sl@0
   721
 *
sl@0
   722
 *	@return	"TDesC&"
sl@0
   723
 *			A reference to a Descriptor containing the fixed sequence
sl@0
   724
 *			name indexed by aSequenceNumber.
sl@0
   725
 *
sl@0
   726
 *	@param	"aSequenceNumber"
sl@0
   727
 *			The index identifying the specific pre-defined tone sequence. Index
sl@0
   728
 *			values are relative to zero.
sl@0
   729
 *			This can be any value from zero to the value returned by a call to
sl@0
   730
 *			FixedSequenceCount() - 1.
sl@0
   731
 *			The function raises a panic if sequence number is not within this
sl@0
   732
 *			range.
sl@0
   733
 *
sl@0
   734
 *	@see	FixedSequenceCount()
sl@0
   735
 *
sl@0
   736
 */
sl@0
   737
EXPORT_C const TDesC& CMMFDevSound::FixedSequenceName(TInt aSequenceNumber)
sl@0
   738
	{
sl@0
   739
	return iBody->FixedSequenceName(aSequenceNumber);
sl@0
   740
	}
sl@0
   741
sl@0
   742
sl@0
   743
/*
sl@0
   744
 *  -doxygen comments in header-
sl@0
   745
 */
sl@0
   746
EXPORT_C void CMMFDevSound::GetSupportedInputDataTypesL(RArray<TFourCC>& aSupportedDataTypes,const TMMFPrioritySettings& aPrioritySettings) const
sl@0
   747
	{
sl@0
   748
	iBody->GetSupportedInputDataTypesL(aSupportedDataTypes, aPrioritySettings);
sl@0
   749
	}
sl@0
   750
sl@0
   751
sl@0
   752
/*
sl@0
   753
 *  -doxygen comments in header-
sl@0
   754
 */
sl@0
   755
EXPORT_C void CMMFDevSound::GetSupportedOutputDataTypesL(RArray<TFourCC>& aSupportedDataTypes, const TMMFPrioritySettings& aPrioritySettings) const
sl@0
   756
	{
sl@0
   757
	iBody->GetSupportedOutputDataTypesL(aSupportedDataTypes, aPrioritySettings);
sl@0
   758
	}
sl@0
   759
sl@0
   760
sl@0
   761
/********************************************************************************
sl@0
   762
 *				Non Exported public functions ends here							*
sl@0
   763
 ********************************************************************************/
sl@0
   764
sl@0
   765
/******************************************************************************
sl@0
   766
 *	Function Name:	E32Dll
sl@0
   767
 *	
sl@0
   768
 *	Description:	Entry point for applications.
sl@0
   769
 *
sl@0
   770
 ******************************************************************************/
sl@0
   771
sl@0
   772
enum TDllReason {};
sl@0
   773
EXPORT_C TInt E32Dll(TDllReason /*aReason*/)
sl@0
   774
	{
sl@0
   775
	return KErrNone;
sl@0
   776
	}
sl@0
   777
sl@0
   778
// CMMFDevSoundEventHandler::NewL() has been declared in export table
sl@0
   779
// but since it is the only class method to be so, and .h is in source
sl@0
   780
// it is not actually usable. Just declare the following to keep linker happy
sl@0
   781
sl@0
   782
// Need dummy abstract type - this is not the real class
sl@0
   783
class RMMFAudioPolicyProxy;
sl@0
   784
sl@0
   785
class CMMFDevSoundEventHandler : public CActive
sl@0
   786
	{
sl@0
   787
public:
sl@0
   788
	IMPORT_C static CMMFDevSoundEventHandler* NewL(RMMFAudioPolicyProxy*);
sl@0
   789
private:
sl@0
   790
	CMMFDevSoundEventHandler();
sl@0
   791
	};
sl@0
   792
	
sl@0
   793
EXPORT_C CMMFDevSoundEventHandler* CMMFDevSoundEventHandler::NewL(RMMFAudioPolicyProxy*)
sl@0
   794
	{
sl@0
   795
	_LIT(KModule, "DevSound");
sl@0
   796
	User::Panic(KModule, 1000);
sl@0
   797
	return NULL;
sl@0
   798
	}
sl@0
   799
sl@0
   800
// default constructor - keep compilers happy
sl@0
   801
CMMFDevSoundEventHandler::CMMFDevSoundEventHandler():
sl@0
   802
	CActive(0)
sl@0
   803
	{
sl@0
   804
	}