1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/devsound/devsoundpluginsupport/src/sounddevice/SoundDevice.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,804 @@
1.4 +// Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +#include <mmf/server/sounddevice.h>
1.20 +#include "SoundDeviceBody.h"
1.21 +
1.22 +/*
1.23 + *
1.24 + * Default Constructor.
1.25 + *
1.26 + *
1.27 + */
1.28 +CMMFDevSound::CMMFDevSound()
1.29 + {
1.30 + }
1.31 +
1.32 +/*
1.33 + * -doxygen comments moved to header-
1.34 + *
1.35 + * Destructor.
1.36 + *
1.37 + * Deletes all objects and releases all resource owned by this
1.38 + * instance.
1.39 + *
1.40 + */
1.41 +EXPORT_C CMMFDevSound::~CMMFDevSound()
1.42 + {
1.43 + delete iBody;
1.44 + }
1.45 +
1.46 +/*
1.47 + * -doxygen comments moved to header-
1.48 + *
1.49 + * Constructs, and returns a pointer to, a new CMMFDevSound object.
1.50 + *
1.51 + * Leaves on failure.
1.52 + *
1.53 + */
1.54 +EXPORT_C CMMFDevSound* CMMFDevSound::NewL()
1.55 + {
1.56 + CMMFDevSound* self = new (ELeave) CMMFDevSound;
1.57 + CleanupStack::PushL(self);
1.58 + self->ConstructL();
1.59 + CleanupStack::Pop();
1.60 + return self;
1.61 + }
1.62 +
1.63 +/*
1.64 + * -doxygen comments moved to header-
1.65 + *
1.66 + * Second phase constructor.
1.67 + *
1.68 + */
1.69 +void CMMFDevSound::ConstructL()
1.70 + {
1.71 + iBody = CBody::NewL();
1.72 + }
1.73 +
1.74 +/*
1.75 + * -doxygen comments moved to header-
1.76 + *
1.77 + * Initializes CMMFDevSound object to play and record PCM16 raw audio data
1.78 + * with sampling rate of 8 KHz.
1.79 + *
1.80 + * On completion of Initialization, calls InitializeComplete() on
1.81 + * aDevSoundObserver.
1.82 + *
1.83 + * Leaves on failure.
1.84 + *
1.85 + * @param "aDevSoundObserver"
1.86 + * A reference to DevSound Observer instance.
1.87 + *
1.88 + * @param "aMode"
1.89 + * Mode for which this object will be used.
1.90 + *
1.91 + */
1.92 +EXPORT_C void CMMFDevSound::InitializeL(MDevSoundObserver& aDevSoundObserver, TMMFState aMode)
1.93 +
1.94 + {
1.95 + iBody->InitializeL(aDevSoundObserver,aMode);
1.96 + }
1.97 +
1.98 +/*
1.99 + * -doxygen comments moved to header-
1.100 + *
1.101 + * Initializes DevSound object for the mode aMode for processing audio data
1.102 + * with hardware device aHWDev.
1.103 + *
1.104 + * On completion of Initialization, the observer will be notified via call back
1.105 + * InitializeComplete().
1.106 + *
1.107 + * Leaves on failure.
1.108 + *
1.109 + * @param "aDevSoundObserver"
1.110 + * A reference to DevSound Observer instance.
1.111 + *
1.112 + * @param "aHWDev"
1.113 + * CMMFHwDevice implementation identifier.
1.114 + *
1.115 + * @param "aMode"
1.116 + * Mode for which this object will be used.
1.117 + *
1.118 + */
1.119 +EXPORT_C void CMMFDevSound::InitializeL(MDevSoundObserver& aDevSoundObserver, TUid aHWDev, TMMFState aMode)
1.120 + {
1.121 + iBody->InitializeL(aDevSoundObserver, aHWDev, aMode);
1.122 + }
1.123 +
1.124 +/*
1.125 + * -doxygen comments moved to header-
1.126 + *
1.127 + * Initializes DevSound object for the mode aMode for processing audio data
1.128 + * with hardware device supporting FourCC aDesiredFourCC.
1.129 + *
1.130 + * On completion of Initialization, the observer will be notified via call back
1.131 + * InitializeComplete().
1.132 + *
1.133 + * Leaves on failure.
1.134 + *
1.135 + * @param "aDevSoundObserver"
1.136 + * A reference to DevSound Observer instance.
1.137 + *
1.138 + * @param "aDesiredFourCC"
1.139 + * CMMFHwDevice implementation FourCC.
1.140 + *
1.141 + * @param "aMode"
1.142 + * Mode for which this object will be used.
1.143 + *
1.144 + */
1.145 +EXPORT_C void CMMFDevSound::InitializeL(MDevSoundObserver& aDevSoundObserver,
1.146 + TFourCC aDesiredFourCC, TMMFState aMode)
1.147 + {
1.148 + iBody->InitializeL(aDevSoundObserver, aDesiredFourCC, aMode);
1.149 + }
1.150 +
1.151 +/*
1.152 + * -doxygen comments moved to header-
1.153 + *
1.154 + * Returns the supported Audio settings.
1.155 + *
1.156 + * @return "TMMFCapabilities"
1.157 + * Device settings.
1.158 + *
1.159 + */
1.160 +EXPORT_C TMMFCapabilities CMMFDevSound::Capabilities()
1.161 + {
1.162 + return iBody->Capabilities();
1.163 + }
1.164 +
1.165 +/*
1.166 + * -doxygen comments moved to header-
1.167 + *
1.168 + * Returns the current audio settings.
1.169 + *
1.170 + * @return "TMMFCapabilities"
1.171 + * Device settings.
1.172 + *
1.173 + */
1.174 +EXPORT_C TMMFCapabilities CMMFDevSound::Config() const
1.175 + {
1.176 + return iBody->Config();
1.177 + }
1.178 +
1.179 +/*
1.180 + * -doxygen comments moved to header-
1.181 + *
1.182 + * Configure CMMFDevSound object for the settings in aConfig.
1.183 + *
1.184 + * Use this to set sampling rate, Encoding and Mono/Stereo.
1.185 + *
1.186 + * @param "aConfig"
1.187 + * Attribute values to which CMMFDevSound object will be configured to.
1.188 + *
1.189 + */
1.190 +EXPORT_C void CMMFDevSound::SetConfigL(const TMMFCapabilities& aConfig)
1.191 + {
1.192 + iBody->SetConfigL(aConfig);
1.193 + }
1.194 +
1.195 +/*
1.196 + * -doxygen comments moved to header-
1.197 + *
1.198 + * Returns an integer representing the maximum volume.
1.199 + *
1.200 + * This is the maximum value which can be passed to CMMFDevSound::SetVolume.
1.201 + *
1.202 + * @return "TInt"
1.203 + * The maximum volume. This value is platform dependent but is always
1.204 + * greater than or equal to one.
1.205 + *
1.206 + */
1.207 +EXPORT_C TInt CMMFDevSound::MaxVolume()
1.208 + {
1.209 + return iBody->MaxVolume();
1.210 + }
1.211 +
1.212 +/*
1.213 + * -doxygen comments moved to header-
1.214 + *
1.215 + * Returns an integer representing the current volume.
1.216 + *
1.217 + * @return "TInt"
1.218 + * The current volume level.
1.219 + *
1.220 + */
1.221 +EXPORT_C TInt CMMFDevSound::Volume()
1.222 + {
1.223 + return iBody->Volume();
1.224 + }
1.225 +
1.226 +/*
1.227 + * -doxygen comments moved to header-
1.228 + *
1.229 + * Changes the current playback volume to a specified value.
1.230 + *
1.231 + * The volume can be changed before or during playback and is effective
1.232 + * immediately.
1.233 + *
1.234 + * @param "aVolume"
1.235 + * The volume setting. This can be any value from zero to the value
1.236 + * returned by a call to CMMFDevSound::MaxVolume(). If the
1.237 + * volume is not within this range, the volume is automatically set to
1.238 + * minimum or maximum value based on the value that is being passed.
1.239 + * Setting a zero value mutes the sound. Setting the maximum value
1.240 + * results in the loudest possible sound.
1.241 + *
1.242 + */
1.243 +EXPORT_C void CMMFDevSound::SetVolume(TInt aVolume)
1.244 + {
1.245 + iBody->SetVolume(aVolume);
1.246 + }
1.247 +
1.248 +/*
1.249 + * -doxygen comments moved to header-
1.250 + *
1.251 + * Returns an integer representing the maximum gain.
1.252 + *
1.253 + * This is the maximum value which can be passed to CMMFDevSound::SetGain.
1.254 + *
1.255 + * @return "TInt"
1.256 + * The maximum gain. This value is platform dependent but is always
1.257 + * greater than or equal to one.
1.258 + *
1.259 + */
1.260 +EXPORT_C TInt CMMFDevSound::MaxGain()
1.261 + {
1.262 + return iBody->MaxGain();
1.263 + }
1.264 +
1.265 +/*
1.266 + * -doxygen comments moved to header-
1.267 + *
1.268 + * Returns an integer representing the current gain.
1.269 + *
1.270 + * @return "TInt"
1.271 + * The current gain level.
1.272 + *
1.273 + */
1.274 +EXPORT_C TInt CMMFDevSound::Gain()
1.275 + {
1.276 + return iBody->Gain();
1.277 + }
1.278 +
1.279 +/*
1.280 + * -doxygen comments moved to header-
1.281 + *
1.282 + * Changes the current recording gain to a specified value.
1.283 + *
1.284 + * The gain can be changed before or during recording and is effective
1.285 + * immediately.
1.286 + *
1.287 + * @param "TInt aGain"
1.288 + * The gain setting. This can be any value from zero to the value
1.289 + * returned by a call to CMMFDevSound::MaxGain(). If the
1.290 + * volume is not within this range, the gain is automatically set to
1.291 + * minimum or maximum value based on the value that is being passed.
1.292 + * Setting a zero value mutes the sound. Setting the maximum value
1.293 + * results in the loudest possible sound.
1.294 + *
1.295 + */
1.296 +EXPORT_C void CMMFDevSound::SetGain(TInt aGain)
1.297 + {
1.298 + iBody->SetGain(aGain);
1.299 + }
1.300 +
1.301 +/*
1.302 + * -doxygen comments moved to header-
1.303 + *
1.304 + * Returns the speaker balance set for playing.
1.305 + *
1.306 + * Leaves on failure.
1.307 + *
1.308 + * @param "aLeftPrecentage"
1.309 + * On return contains the left speaker volume percentage.
1.310 + *
1.311 + * @param "aRightPercentage"
1.312 + * On return contains the right speaker volume percentage.
1.313 + *
1.314 + */
1.315 +EXPORT_C void CMMFDevSound::GetPlayBalanceL(TInt& aLeftPercentage, TInt& aRightPercentage)
1.316 + {
1.317 + iBody->GetPlayBalanceL(aLeftPercentage, aRightPercentage);
1.318 + }
1.319 +
1.320 +/*
1.321 + * -doxygen comments moved to header-
1.322 + *
1.323 + * Sets the speaker balance for playing.
1.324 + *
1.325 + * The speaker balance can be changed before or during playback and is
1.326 + * effective immediately.
1.327 + *
1.328 + * @param "aLeftPercentage"
1.329 + * On return contains left speaker volume perecentage. This can be any
1.330 + * value from zero to 100. Setting a zero value mutes the sound on left
1.331 + * speaker.
1.332 + *
1.333 + * @param "aRightPercentage"
1.334 + * On return contains right speaker volume perecentage. This can be any
1.335 + * value from zero to 100. Setting a zero value mutes the sound on
1.336 + * right speaker.
1.337 + *
1.338 + */
1.339 +EXPORT_C void CMMFDevSound::SetPlayBalanceL(TInt aLeftPercentage, TInt aRightPercentage)
1.340 + {
1.341 + iBody->SetPlayBalanceL(aLeftPercentage, aRightPercentage);
1.342 + }
1.343 +
1.344 +/*
1.345 + * -doxygen comments moved to header-
1.346 + *
1.347 + * Returns the microphone gain balance set for recording.
1.348 + *
1.349 + * Leaves on failure.
1.350 + *
1.351 + * @param "aLeftPercentage"
1.352 + * On return contains the left microphone gain percentage.
1.353 + *
1.354 + * @param "aRightPercentage"
1.355 + * On return contains the right microphone gain percentage.
1.356 + *
1.357 + */
1.358 +EXPORT_C void CMMFDevSound::GetRecordBalanceL(TInt& aLeftPercentage, TInt& aRightPercentage)
1.359 + {
1.360 + iBody->GetRecordBalanceL(aLeftPercentage, aRightPercentage);
1.361 + }
1.362 +
1.363 +/*
1.364 + * -doxygen comments moved to header-
1.365 + *
1.366 + * Sets the microphone gain balance for recording.
1.367 + *
1.368 + * The microphone gain balance can be changed before or during recording and
1.369 + * is effective immediately.
1.370 + *
1.371 + * @param "aLeftPercentage"
1.372 + * Left microphone gain precentage. This can be any value from zero to
1.373 + * 100. Setting a zero value mutes the gain on left microphone.
1.374 + *
1.375 + * @param "aRightPercentage"
1.376 + * Right microphone gain precentage. This can be any value from zero to
1.377 + * 100. Setting a zero value mutes the gain on right microphone.
1.378 + *
1.379 + */
1.380 +EXPORT_C void CMMFDevSound::SetRecordBalanceL(TInt aLeftPercentage, TInt aRightPercentage)
1.381 + {
1.382 + iBody->SetRecordBalanceL(aLeftPercentage, aRightPercentage);
1.383 + }
1.384 +
1.385 +/*
1.386 + * -doxygen comments moved to header-
1.387 + *
1.388 + * Initializes audio device and start play process. This method queries and
1.389 + * acquires the audio policy before initializing audio device. If there was an
1.390 + * error during policy initialization, PlayError() method will be called on
1.391 + * the observer with error code KErrAccessDenied, otherwise BufferToBeFilled()
1.392 + * method will be called with a buffer reference. After reading data into the
1.393 + * buffer reference passed, the client should call PlayData() to play data.
1.394 + *
1.395 + * The amount of data that can be played is specified in
1.396 + * CMMFBuffer::RequestSize(). Any data that is read into buffer beyond this
1.397 + * size will be ignored.
1.398 + *
1.399 + * Leaves on failure.
1.400 + *
1.401 + */
1.402 +EXPORT_C void CMMFDevSound::PlayInitL()
1.403 + {
1.404 + iBody->PlayInitL();
1.405 + }
1.406 +
1.407 +/*
1.408 + * -doxygen comments moved to header-
1.409 + *
1.410 + * Initializes audio device and start record process. This method queries and
1.411 + * acquires the audio policy before initializing audio device. If there was an
1.412 + * error during policy initialization, RecordError() method will be called on
1.413 + * the observer with error code KErrAccessDenied, otherwise BufferToBeEmptied()
1.414 + * method will be called with a buffer reference. This buffer contains recorded
1.415 + * or encoded data. After processing data in the buffer reference passed, the
1.416 + * client should call RecordData() to continue recording process.
1.417 + *
1.418 + * The amount of data that is available is specified in
1.419 + * CMMFBuffer::RequestSize().
1.420 + *
1.421 + * Leaves on failure.
1.422 + *
1.423 + */
1.424 +EXPORT_C void CMMFDevSound::RecordInitL()
1.425 + {
1.426 + iBody->RecordInitL();
1.427 + }
1.428 +
1.429 +/*
1.430 + * -doxygen comments moved to header-
1.431 + *
1.432 + * Plays data in the buffer at the current volume. The client should fill
1.433 + * the buffer with audio data before calling this method. The Observer gets
1.434 + * reference to buffer along with callback BufferToBeFilled(). When playing of
1.435 + * the audio sample is complete, successfully or otherwise, the method
1.436 + * PlayError() on observer is called.
1.437 + *
1.438 + */
1.439 +EXPORT_C void CMMFDevSound::PlayData()
1.440 + {
1.441 + iBody->PlayData();
1.442 + }
1.443 +
1.444 +/*
1.445 + * -doxygen comments moved to header-
1.446 + *
1.447 + * Contine the process of recording. Once the buffer is filled with recorded
1.448 + * data, the Observer gets reference to buffer along with callback
1.449 + * BufferToBeEmptied(). After processing the buffer (copying over to a
1.450 + * different buffer or writing to file) the client should call this
1.451 + * method to continue recording process.
1.452 + *
1.453 + */
1.454 +EXPORT_C void CMMFDevSound::RecordData()
1.455 + {
1.456 + iBody->RecordData();
1.457 + }
1.458 +
1.459 +/*
1.460 + * -doxygen comments moved to header-
1.461 + *
1.462 + * Stops the ongoing operation (Play, Record, TonePlay, Convert)
1.463 + *
1.464 + */
1.465 +EXPORT_C void CMMFDevSound::Stop()
1.466 + {
1.467 + iBody->Stop();
1.468 + }
1.469 +
1.470 +/*
1.471 + * -doxygen comments moved to header-
1.472 + *
1.473 + * Temporarily Stops the ongoing operation (Play, Record, TonePlay, Convert)
1.474 + *
1.475 + */
1.476 +EXPORT_C void CMMFDevSound::Pause()
1.477 + {
1.478 + iBody->Pause();
1.479 + }
1.480 +
1.481 +/*
1.482 + * -doxygen comments moved to header-
1.483 + *
1.484 + * Returns the sample recorded so far.
1.485 + *
1.486 + * @return "TInt"
1.487 + * Returns the samples recorded.
1.488 + *
1.489 + */
1.490 +EXPORT_C TInt CMMFDevSound::SamplesRecorded()
1.491 + {
1.492 + return iBody->SamplesRecorded();
1.493 + }
1.494 +
1.495 +/*
1.496 + * -doxygen comments moved to header-
1.497 + *
1.498 + * Returns the sample played so far.
1.499 + *
1.500 + * @return "TInt"
1.501 + * Returns the samples recorded.
1.502 + *
1.503 + */
1.504 +EXPORT_C TInt CMMFDevSound::SamplesPlayed()
1.505 + {
1.506 + return iBody->SamplesPlayed();
1.507 + }
1.508 +
1.509 +
1.510 +/*
1.511 + * -doxygen comments moved to header-
1.512 + *
1.513 + * Initializes audio device and start playing tone. Tone is played with
1.514 + * frequency and for duration specified.
1.515 + *
1.516 + * Leaves on failure.
1.517 + *
1.518 + * @param "aFrequency"
1.519 + * Frequency at with the tone will be played.
1.520 + *
1.521 + * @param "aDuration"
1.522 + * The period over which the tone will be played. A zero value causes
1.523 + * the no tone to be played (Verify this with test app).
1.524 + *
1.525 + */
1.526 +EXPORT_C void CMMFDevSound::PlayToneL(TInt aFrequency, const TTimeIntervalMicroSeconds& aDuration)
1.527 + {
1.528 + iBody->PlayToneL(aFrequency, aDuration);
1.529 + }
1.530 +
1.531 +/*
1.532 + * -doxygen comments moved to header-
1.533 + *
1.534 + * Initializes audio device and start playing a dual tone.
1.535 + * The tone consists of two sine waves of different frequencies summed together
1.536 + * Dual Tone is played with specified frequencies and for specified duration.
1.537 + *
1.538 + * @param "aFrequencyOne"
1.539 + * First frequency of dual tone
1.540 + *
1.541 + * @param "aFrequencyTwo"
1.542 + * Second frequency of dual tone
1.543 + *
1.544 + * @param "aDuration"
1.545 + * The period over which the tone will be played. A zero value causes
1.546 + * the no tone to be played (Verify this with test app).
1.547 + */
1.548 +EXPORT_C void CMMFDevSound::PlayDualToneL(TInt aFrequencyOne, TInt aFrequencyTwo, const TTimeIntervalMicroSeconds& aDuration)
1.549 + {
1.550 + iBody->PlayDualToneL(aFrequencyOne, aFrequencyTwo, aDuration);
1.551 + }
1.552 +
1.553 +/*
1.554 + * -doxygen comments moved to header-
1.555 + *
1.556 + * Initializes audio device and start playing DTMF string aDTMFString.
1.557 + *
1.558 + * Leaves on failure.
1.559 + *
1.560 + * @param "aDTMFString"
1.561 + * DTMF sequence in a descriptor.
1.562 + *
1.563 + */
1.564 +EXPORT_C void CMMFDevSound::PlayDTMFStringL(const TDesC& aDTMFString)
1.565 + {
1.566 + iBody->PlayDTMFStringL(aDTMFString);
1.567 + }
1.568 +
1.569 +/*
1.570 + * -doxygen comments moved to header-
1.571 + *
1.572 + * Initializes audio device and start playing tone sequence.
1.573 + *
1.574 + * Leaves on failure.
1.575 + *
1.576 + * @param "TDesC8& aData"
1.577 + * Tone sequence in a descriptor.
1.578 + *
1.579 + */
1.580 +EXPORT_C void CMMFDevSound::PlayToneSequenceL(const TDesC8& aData)
1.581 + {
1.582 + iBody->PlayToneSequenceL(aData);
1.583 + }
1.584 +
1.585 +/*
1.586 + * -doxygen comments moved to header-
1.587 + *
1.588 + * Initializes audio device and start playing the specified pre-defined tone
1.589 + * sequence.
1.590 + *
1.591 + * Leaves on failure.
1.592 + *
1.593 + * @param "aSequenceNumber"
1.594 + * The index identifying the specific pre-defined tone sequence. Index
1.595 + * values are relative to zero.
1.596 + * This can be any value from zero to the value returned by a call to
1.597 + * FixedSequenceCount() - 1.
1.598 + * The function raises a panic if sequence number is not within this
1.599 + * range.
1.600 + * @see FixedSequenceCount()
1.601 + *
1.602 + */
1.603 +EXPORT_C void CMMFDevSound::PlayFixedSequenceL(TInt aSequenceNumber)
1.604 + {
1.605 + iBody->PlayFixedSequenceL(aSequenceNumber);
1.606 + }
1.607 +
1.608 +/*
1.609 + * -doxygen comments moved to header-
1.610 + *
1.611 + * Defines the number of times the audio is to be repeated during the tone
1.612 + * playback operation.
1.613 + *
1.614 + * A period of silence can follow each playing of tone. The tone playing can
1.615 + * be repeated indefinitely.
1.616 + *
1.617 + * @param " aRepeatCount"
1.618 + * The number of times the tone, together with the trailing silence,
1.619 + * is to be repeated. If this is set to KMdaRepeatForever, then the
1.620 + * tone, together with the trailing silence, is repeated indefinitely
1.621 + * or until Stop() is called. If this is set to zero, then the tone is
1.622 + * not repeated.
1.623 + *
1.624 + * Supported only during tone playing.
1.625 + *
1.626 + */
1.627 +EXPORT_C void CMMFDevSound::SetToneRepeats(TInt aRepeatCount,
1.628 + const TTimeIntervalMicroSeconds& aRepeatTrailingSilence)
1.629 + {
1.630 + iBody->SetToneRepeats(aRepeatCount, aRepeatTrailingSilence);
1.631 + }
1.632 +
1.633 +/*
1.634 + * -doxygen comments moved to header-
1.635 + *
1.636 + * Defines the duration of tone on, tone off and tone pause to be used during the
1.637 + * DTMF tone playback operation.
1.638 + *
1.639 + * Supported only during tone playing.
1.640 + *
1.641 + * @param "aToneOnLength"
1.642 + * The period over which the tone will be played. If this is set to
1.643 + * zero, then the tone is not played.
1.644 + *
1.645 + * @param "aToneOffLength"
1.646 + * The period over which the no tone will be played.
1.647 + *
1.648 + * @param "aPauseLength"
1.649 + * The period over which the tone playing will be paused.
1.650 + *
1.651 + */
1.652 +EXPORT_C void CMMFDevSound::SetDTMFLengths(TTimeIntervalMicroSeconds32& aToneOnLength,
1.653 + TTimeIntervalMicroSeconds32& aToneOffLength,
1.654 + TTimeIntervalMicroSeconds32& aPauseLength)
1.655 + {
1.656 + iBody->SetDTMFLengths(aToneOnLength, aToneOffLength, aPauseLength);
1.657 + }
1.658 +
1.659 +/*
1.660 + * -doxygen comments moved to header-
1.661 + *
1.662 + * Defines the period over which the volume level is to rise smoothly from
1.663 + * nothing to the normal volume level.
1.664 + *
1.665 + * @param "aRampDuration"
1.666 + * The period over which the volume is to rise. A zero value causes
1.667 + * the tone sample to be played at the normal level for the full
1.668 + * duration of the playback. A value, which is longer than the duration
1.669 + * of the tone sample, that the sample never reaches its normal
1.670 + * volume level.
1.671 + *
1.672 + *
1.673 + */
1.674 +EXPORT_C void CMMFDevSound::SetVolumeRamp(const TTimeIntervalMicroSeconds& aRampDuration)
1.675 + {
1.676 + iBody->SetVolumeRamp(aRampDuration);
1.677 + }
1.678 +
1.679 +/*
1.680 + * -doxygen comments moved to header-
1.681 + *
1.682 + * Defines the priority settings that should be used for this instance.
1.683 + *
1.684 + * @param "aPrioritySettings"
1.685 + * An class type representing the client's priority, priority
1.686 + * preference and state.
1.687 + *
1.688 + */
1.689 +EXPORT_C void CMMFDevSound::SetPrioritySettings(const TMMFPrioritySettings& aPrioritySettings)
1.690 + {
1.691 + iBody->SetPrioritySettings(aPrioritySettings);
1.692 + }
1.693 +
1.694 +EXPORT_C TAny* CMMFDevSound::CustomInterface(TUid aInterface)
1.695 + {
1.696 + return iBody->CustomInterface(aInterface);
1.697 + }
1.698 +
1.699 +/*
1.700 + * -doxygen comments moved to header-
1.701 + *
1.702 + * Returns the number of available pre-defined tone sequences.
1.703 + *
1.704 + * This is the number of fixed sequence supported by DevSound by default.
1.705 + *
1.706 + * @return "TInt"
1.707 + * The fixed sequence count. This value is implementation dependent
1.708 + * but is always greater than or equal to zero.
1.709 + *
1.710 + */
1.711 +EXPORT_C TInt CMMFDevSound::FixedSequenceCount()
1.712 + {
1.713 + return iBody->FixedSequenceCount();
1.714 + }
1.715 +
1.716 +/*
1.717 + * -doxygen comments moved to header-
1.718 + *
1.719 + * Returns the name assigned to a specific pre-defined tone sequence.
1.720 + *
1.721 + * This is the number of fixed sequence supported by DevSound by default.
1.722 + *
1.723 + * The function raises a panic if sequence number specified invalid.
1.724 + *
1.725 + * @return "TDesC&"
1.726 + * A reference to a Descriptor containing the fixed sequence
1.727 + * name indexed by aSequenceNumber.
1.728 + *
1.729 + * @param "aSequenceNumber"
1.730 + * The index identifying the specific pre-defined tone sequence. Index
1.731 + * values are relative to zero.
1.732 + * This can be any value from zero to the value returned by a call to
1.733 + * FixedSequenceCount() - 1.
1.734 + * The function raises a panic if sequence number is not within this
1.735 + * range.
1.736 + *
1.737 + * @see FixedSequenceCount()
1.738 + *
1.739 + */
1.740 +EXPORT_C const TDesC& CMMFDevSound::FixedSequenceName(TInt aSequenceNumber)
1.741 + {
1.742 + return iBody->FixedSequenceName(aSequenceNumber);
1.743 + }
1.744 +
1.745 +
1.746 +/*
1.747 + * -doxygen comments in header-
1.748 + */
1.749 +EXPORT_C void CMMFDevSound::GetSupportedInputDataTypesL(RArray<TFourCC>& aSupportedDataTypes,const TMMFPrioritySettings& aPrioritySettings) const
1.750 + {
1.751 + iBody->GetSupportedInputDataTypesL(aSupportedDataTypes, aPrioritySettings);
1.752 + }
1.753 +
1.754 +
1.755 +/*
1.756 + * -doxygen comments in header-
1.757 + */
1.758 +EXPORT_C void CMMFDevSound::GetSupportedOutputDataTypesL(RArray<TFourCC>& aSupportedDataTypes, const TMMFPrioritySettings& aPrioritySettings) const
1.759 + {
1.760 + iBody->GetSupportedOutputDataTypesL(aSupportedDataTypes, aPrioritySettings);
1.761 + }
1.762 +
1.763 +
1.764 +/********************************************************************************
1.765 + * Non Exported public functions ends here *
1.766 + ********************************************************************************/
1.767 +
1.768 +/******************************************************************************
1.769 + * Function Name: E32Dll
1.770 + *
1.771 + * Description: Entry point for applications.
1.772 + *
1.773 + ******************************************************************************/
1.774 +
1.775 +enum TDllReason {};
1.776 +EXPORT_C TInt E32Dll(TDllReason /*aReason*/)
1.777 + {
1.778 + return KErrNone;
1.779 + }
1.780 +
1.781 +// CMMFDevSoundEventHandler::NewL() has been declared in export table
1.782 +// but since it is the only class method to be so, and .h is in source
1.783 +// it is not actually usable. Just declare the following to keep linker happy
1.784 +
1.785 +// Need dummy abstract type - this is not the real class
1.786 +class RMMFAudioPolicyProxy;
1.787 +
1.788 +class CMMFDevSoundEventHandler : public CActive
1.789 + {
1.790 +public:
1.791 + IMPORT_C static CMMFDevSoundEventHandler* NewL(RMMFAudioPolicyProxy*);
1.792 +private:
1.793 + CMMFDevSoundEventHandler();
1.794 + };
1.795 +
1.796 +EXPORT_C CMMFDevSoundEventHandler* CMMFDevSoundEventHandler::NewL(RMMFAudioPolicyProxy*)
1.797 + {
1.798 + _LIT(KModule, "DevSound");
1.799 + User::Panic(KModule, 1000);
1.800 + return NULL;
1.801 + }
1.802 +
1.803 +// default constructor - keep compilers happy
1.804 +CMMFDevSoundEventHandler::CMMFDevSoundEventHandler():
1.805 + CActive(0)
1.806 + {
1.807 + }