1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/devsound/devsoundapi/inc/SoundDevice.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,1120 @@
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 +#ifndef __SOUNDDEVICE_H__
1.20 +#define __SOUNDDEVICE_H__
1.21 +
1.22 +#include <e32base.h>
1.23 +#include <f32file.h>
1.24 +#include <mmf/common/mmfbase.h>
1.25 +#include <mmf/common/mmfutilities.h>
1.26 +#include <mmf/common/mmfcontroller.h>
1.27 +
1.28 +
1.29 +//Debugging info
1.30 +
1.31 +/*
1.32 +Notes:
1.33 +This file defines the DevSound class which acts as an interface to
1.34 +the hardware and is intended to invoke VCR functionality via the plug-ins.
1.35 +The DevSound also contains a product specific policy.
1.36 +*/
1.37 +
1.38 +//UIDs for buffers: According to Symbian: Not used
1.39 +
1.40 +// Public Media Server includes
1.41 +
1.42 +/**
1.43 +@publishedAll
1.44 +@released
1.45 +
1.46 +Sampling rates available.
1.47 +
1.48 +When queried from DevSound by calling the function Capabilities(), iRate indicates
1.49 +the sampling rates supported by the audio device.
1.50 +
1.51 +DevSound by default is configured to 8KHz sampling rate.
1.52 +So to configure DevSound to play/record audio at 16 KHz sampling rate:
1.53 +
1.54 +The mode should not be OR'ed with each other, only single values are accepted.
1.55 +*/
1.56 +enum TMMFSampleRate
1.57 + {
1.58 + /** 8000 Hz Sampling Rate
1.59 + */
1.60 + EMMFSampleRate8000Hz = 0x00000001,
1.61 + /** 11025 Hz Sampling Rate
1.62 + */
1.63 + EMMFSampleRate11025Hz = 0x00000002,
1.64 + /** 16000 Hz Sampling Rate
1.65 + */
1.66 + EMMFSampleRate16000Hz = 0x00000004,
1.67 + /** 22050 Hz Sampling Rate
1.68 + */
1.69 + EMMFSampleRate22050Hz = 0x00000008,
1.70 + /** 32000 Hz Sampling Rate
1.71 + */
1.72 + EMMFSampleRate32000Hz = 0x00000010,
1.73 + /** 44100 Hz Sampling Rate
1.74 + */
1.75 + EMMFSampleRate44100Hz = 0x00000020,
1.76 + /** 48000 Hz Sampling Rate
1.77 + */
1.78 + EMMFSampleRate48000Hz = 0x00000040,
1.79 + /** 88200 Hz Sampling Rate
1.80 + */
1.81 + EMMFSampleRate88200Hz = 0x00000080,
1.82 + /** 96000 Hz Sampling Rate
1.83 + */
1.84 + EMMFSampleRate96000Hz = 0x00000100,
1.85 + /** 12000 Hz Sampling Rate
1.86 + */
1.87 + EMMFSampleRate12000Hz = 0x00000200,
1.88 + /** 24000 Hz Sampling Rate
1.89 + */
1.90 + EMMFSampleRate24000Hz = 0x00000400,
1.91 + /** 64000 Hz Sampling Rate
1.92 + */
1.93 + EMMFSampleRate64000Hz = 0x00000800
1.94 + };
1.95 +
1.96 +/**
1.97 +@publishedAll
1.98 +@released
1.99 +
1.100 +Mono Stereo playback and record modes available.
1.101 +
1.102 +When queried from DevSound by calling the function Capabilities(), iChannels
1.103 +indicates whether the underlying audio device supports playing back stereo
1.104 +audio samples and recording audio samples in stereo mode or not.
1.105 +
1.106 +DevSound by default is configured to Mono mode.
1.107 +So to configure DevSound to play/record audio sample in stereo mode:
1.108 +
1.109 +The mode should not be OR'ed with each other, only single values are accepted.
1.110 +*/
1.111 +enum TMMFMonoStereo
1.112 + {
1.113 + /** Mono mode
1.114 + */
1.115 + EMMFMono = 0x00000001,
1.116 + /** Stereo mode
1.117 + */
1.118 + EMMFStereo = 0x00000002
1.119 + };
1.120 +
1.121 +/**
1.122 +@publishedAll
1.123 +@released
1.124 +
1.125 +Encoding modes available.
1.126 +
1.127 +When queried from DevSound by calling the function Capabilities(), iEncoding
1.128 +provides information about different encoding supported by audio device.
1.129 +
1.130 +DevSound by default is configured to play PCM16 Bit audio data.
1.131 +Setting encoding mode is not supported yet:
1.132 +*/
1.133 +enum TMMFSoundEncoding
1.134 + {
1.135 + /** Signed 8 Bit PCM
1.136 + */
1.137 + EMMFSoundEncoding8BitPCM = 0x00000001,
1.138 + /** Signed 16 Bit PCM
1.139 + */
1.140 + EMMFSoundEncoding16BitPCM = 0x00000002,
1.141 + /** Signed 8 Bit ALaw
1.142 + */
1.143 + EMMFSoundEncoding8BitALaw = 0x00000004,
1.144 + /** Signed 8 Bit MuLaw
1.145 + */
1.146 + EMMFSoundEncoding8BitMuLaw = 0x00000008,
1.147 + };
1.148 +
1.149 +/**
1.150 +@publishedAll
1.151 +@released
1.152 +
1.153 +Stereo support enum.
1.154 +*/
1.155 +enum TMMFStereoSupport
1.156 + {
1.157 + /** No stereo support
1.158 + */
1.159 + EMMFNone = 0x00000000,
1.160 + /** Interleaved stereo support
1.161 + */
1.162 + EMMFInterleavedOnly = 0x00000001,
1.163 + /** Non Interleaved stereo support
1.164 + */
1.165 + EMMFNonInterleavedOnly = 0x00000002,
1.166 + /** Interleaved and Non Interleaved stereo support
1.167 + */
1.168 + EMMFBothNonAndInterleaved = 0x00000003,
1.169 + /** Joint stereo support
1.170 + */
1.171 + EMMFJoint = 0x00000004
1.172 + };
1.173 +
1.174 +/**
1.175 +@publishedAll
1.176 +@released
1.177 +
1.178 +Type class for DevSound implementation device capabilities.
1.179 +
1.180 +CMMFDevSound will return Sampling Rates, Encoding and Stereo feature
1.181 +supported in this structure when queried for capabilities. DevSound can
1.182 +also be configured by setting parameters in this structure and passing the
1.183 +structure to it.
1.184 +*/
1.185 +class TMMFCapabilities
1.186 + {
1.187 +public:
1.188 + /** Sampling Rates supported
1.189 + */
1.190 + TUint iRate;
1.191 + /** Encodings supported
1.192 + */
1.193 + TUint iEncoding;
1.194 + /** Mono/Stereo support
1.195 + */
1.196 + TUint iChannels;
1.197 + /** Buffer size supported
1.198 + */
1.199 + TInt iBufferSize;
1.200 + };
1.201 +
1.202 +/**
1.203 +@publishedAll
1.204 +@released
1.205 +
1.206 +An interface to a set of DevSound callback functions.
1.207 +
1.208 +
1.209 +This serves as the method of communication between the client and the
1.210 +DevSound.
1.211 +
1.212 +The class is a mixin and is intended to be inherited by the client class
1.213 +that is interested in observing the DevSound operation. The functions
1.214 +encapsulated by this class are called when specific events occur in the
1.215 +process of initializing and playing/recording an audio sample or playing
1.216 +tones.
1.217 +*/
1.218 +class MDevSoundObserver
1.219 + {
1.220 +public:
1.221 + /**
1.222 + Handles initialization completion event.
1.223 +
1.224 + A derived class must provide an implementation to handle the initialization
1.225 + request.
1.226 +
1.227 + CMMFDevSound object calls this function when its InitializeL() function
1.228 + completes.
1.229 +
1.230 + @param aError
1.231 + Error code. KErrNone if successful. Other values are possible
1.232 + indicating a problem initializing CMMFDevSound object.
1.233 + */
1.234 + virtual void InitializeComplete(TInt aError)=0;
1.235 +
1.236 + /**
1.237 + Handles tone play completion event.
1.238 +
1.239 + A derived class must provide an implementation to handle the tone play
1.240 + completion request.
1.241 +
1.242 + CMMFDevSound object calls this function when an attempt to play tone has
1.243 + completed, successfully or otherwise.
1.244 +
1.245 + The following are the play tone functions; PlayToneL(), PlayDMTFStringL(),
1.246 + PlayToneSequenceL(), and PlayFixedSequenceL().
1.247 +
1.248 + @param aError
1.249 + Error code. The status of tone playback. KErrUnderflow playing of
1.250 + the tone is complete. KErrAccessDenied the sound device is in use by
1.251 + another higher priority client. KErrCancel playing of the audio
1.252 + sample is stopped by DevSound client another higher priority client.
1.253 + */
1.254 + virtual void ToneFinished(TInt aError)=0;
1.255 +
1.256 + /**
1.257 + Handles CMMFDevSound object's data request event.
1.258 +
1.259 + A derived class must provide an implementation to supply CMMFDevSound
1.260 + object the data that it needs to play or convert.
1.261 +
1.262 + CMMFDevSound object calls this function when and where it needs data for
1.263 + playing or converting. The observer should notify CMMFDevSound object as
1.264 + quickly as possible after the data is read into buffer, aBuffer by calling
1.265 + PlayData(), otherwise the implementation might callback function PlayError()
1.266 + on derived class object with error code KErrUnderflow.
1.267 + This does not apply to the very first call to PlayData(), however.
1.268 + It is possible for a user of DevSound to hold the first buffer sent in
1.269 + BufferToBeFilled() until ready to play.
1.270 + The use case for this is if a low latency audio response
1.271 + is required, as at this point all the resources used to play audio are open.
1.272 + If used in this way then it is important to be aware that when when the
1.273 + resources for audio are ready at the BufferToBeFilled() callback, a Devsound
1.274 + on a real device will be running at increased power consumption as the audio
1.275 + hw and any required DSPs will be powered up etc.
1.276 +
1.277 + @param aBuffer
1.278 + Buffer into which data should be read. The amount of data that is
1.279 + needed is specified in CMMFBuffer::RequestSize().
1.280 + */
1.281 + virtual void BufferToBeFilled(CMMFBuffer* aBuffer)=0;
1.282 +
1.283 + /**
1.284 + Handles play completion or cancel event.
1.285 +
1.286 + A derived class must provide an implementation to handle the play
1.287 + completion or cancel request.
1.288 +
1.289 + CMMFDevSound object calls this function when an attempt to play audio sample
1.290 + has completed, successfully or otherwise.
1.291 +
1.292 + @param aError
1.293 + Error code. The status of playback. KErrUnderflow playing of the
1.294 + audio sample is complete. KErrAccessDenied the sound device is in
1.295 + use by another higher priority client.
1.296 + */
1.297 + virtual void PlayError(TInt aError)=0;
1.298 +
1.299 + /**
1.300 + Handles CMMFDevSound object's data request event.
1.301 +
1.302 + A derived class must provide an implementation to process the data
1.303 + supplied by CMMFDevSound object while recording or converting.
1.304 +
1.305 + CMMFDevSound object calls this function when the buffer, aBuffer gets filled
1.306 + while recording or converting. The observer should notify CMMFDevSound
1.307 + object as quickly as possible after data in the buffer is processed by
1.308 + calling RecordData(), otherwise the implementation might callback
1.309 + the function RecordError() on derived class object with error code KErrOverflow.
1.310 +
1.311 + @param aBuffer
1.312 + Buffer containing processed (recorded or converted) data. The amount
1.313 + of data that is available is specified in CMMFBuffer::RequestSize().
1.314 + */
1.315 + virtual void BufferToBeEmptied(CMMFBuffer* aBuffer)=0;
1.316 +
1.317 + /**
1.318 + Handles record completion or cancel event.
1.319 +
1.320 + A derived class must provide an implementation to handle the record
1.321 + completion or cancel request.
1.322 +
1.323 + CMMFDevSound object calls this function when an attempt to record audio sample
1.324 + has completed, successfully or otherwise.
1.325 +
1.326 + @param aError
1.327 + Error code. The status of recording. KErrOverflow audio devices
1.328 + runs out of internal buffer. KErrAccessDenied the sound device is
1.329 + in use by another higher priority client.
1.330 + */
1.331 + virtual void RecordError(TInt aError)=0;
1.332 +
1.333 + /**
1.334 + Handles conversion completion or cancel event.
1.335 +
1.336 + A derived class must provide an implementation to handle the conversion
1.337 + completion or cancel request.
1.338 +
1.339 + CMMFDevSound object calls this function when an attempt to convert data from
1.340 + source format to destination format has completed, successfully or otherwise.
1.341 +
1.342 + @param aError
1.343 + Error code. KErrCancel conversion operation is cancelled. KErrNone
1.344 + conversion is complete. Other values are possible indicating a
1.345 + problem converting data.
1.346 + */
1.347 + virtual void ConvertError(TInt aError)=0;
1.348 +
1.349 + /**
1.350 + Handles device event.
1.351 +
1.352 + A derived class must provide an implementtion to handle the messages from
1.353 + audio hardware device.
1.354 +
1.355 + CMMFDevSound object calls this function when a message is received from the
1.356 + audio hardware device.
1.357 +
1.358 + @param aMessageType
1.359 + Defines the type of message. Used to determine how to
1.360 + interpret the contents of aMsg.
1.361 + @param aMsg
1.362 + Message that is packed in the Descriptor format.
1.363 + */
1.364 + virtual void DeviceMessage(TUid aMessageType, const TDesC8& aMsg)=0;
1.365 +
1.366 +
1.367 + /**
1.368 + Handles policy request completion event.
1.369 +
1.370 + A derived class must provide an implementation to handle the policy request
1.371 + completion event.
1.372 +
1.373 + CMMFDevSound object calls this function when an attempt to acquire sound
1.374 + device is rejected by audio policy server.
1.375 +
1.376 + @param aEvent
1.377 + Not used
1.378 + */
1.379 + inline virtual void SendEventToClient(const TMMFEvent& aEvent);
1.380 +
1.381 + };
1.382 +
1.383 +
1.384 +/**
1.385 +@publishedAll
1.386 +@released
1.387 +
1.388 +This is the interface from Symbian OS to the raw audio functions on the
1.389 +device hardware.
1.390 +
1.391 +DevSound is currently loaded as a DLL, and implements the VCR-type
1.392 +functions to be expected for such an interface.
1.393 +
1.394 +The audio functions include the following functionality:
1.395 +- Initialisation and configuration of hardware devices, for example, setting microphone gain,
1.396 +setting setero balance and so on.
1.397 +- The playing and recording of raw audio data.
1.398 +- The playing and dynamic control of tones with user specified frequencies.
1.399 +- The playing of DTMF strings.
1.400 +*/
1.401 +class CMMFDevSound : public CBase
1.402 + {
1.403 +public:
1.404 +
1.405 + /**
1.406 + Constructs, and returns a pointer to, a new CMMFDevSound object.
1.407 +
1.408 + Leaves on failure.
1.409 + */
1.410 + IMPORT_C static CMMFDevSound* NewL();
1.411 +
1.412 + /**
1.413 + Destructor.
1.414 +
1.415 + Deletes all objects and releases all resource owned by this
1.416 + instance.
1.417 + */
1.418 + IMPORT_C ~CMMFDevSound();
1.419 +
1.420 + /**
1.421 + Initializes CMMFDevSound object to play and record PCM16 raw audio data
1.422 + with sampling rate of 8 KHz.
1.423 +
1.424 + On completion of Initialization, calls InitializeComplete() on
1.425 + aDevSoundObserver.
1.426 +
1.427 + Leaves on failure.
1.428 +
1.429 + @param aDevSoundObserver
1.430 + A reference to DevSound Observer instance.
1.431 + @param aMode
1.432 + The mode for which this object will be used. Any value other than EMMFStatePlaying, EMMFStateRecording or EMMFStateTonePlaying is unsupported.
1.433 +
1.434 +
1.435 + */
1.436 + IMPORT_C void InitializeL(MDevSoundObserver& aDevSoundObserver, TMMFState aMode);
1.437 +
1.438 +
1.439 + /**
1.440 + Initializes DevSound object for the mode aMode for processing audio data
1.441 + with hardware device aHWDev.
1.442 +
1.443 + On completion of Initialization, the observer will be notified via call back
1.444 + InitializeComplete().
1.445 +
1.446 + Leaves on failure.
1.447 +
1.448 + @param aDevSoundObserver
1.449 + A reference to DevSound Observer instance.
1.450 + @param aHWDev
1.451 + The CMMFHwDevice implementation identifier.
1.452 + @param aMode
1.453 + The mode for which this object will be used. Any value other than EMMFStatePlaying, EMMFStateRecording or EMMFStateTonePlaying is unsupported.
1.454 +
1.455 + */
1.456 + IMPORT_C void InitializeL(MDevSoundObserver& aDevSoundObserver, TUid aHWDev, TMMFState aMode);
1.457 +
1.458 + /**
1.459 + Initializes DevSound object for the mode aMode for processing audio data
1.460 + with hardware device supporting FourCC aDesiredFourCC.
1.461 +
1.462 + On completion of Initialization, the observer will be notified via call back
1.463 + InitializeComplete().
1.464 +
1.465 + Leaves on failure.
1.466 +
1.467 + @param aDevSoundObserver
1.468 + A reference to DevSound Observer instance.
1.469 + @param aDesiredFourCC
1.470 + The CMMFHwDevice implementation FourCC code.
1.471 + @param aMode
1.472 + The mode for which this object will be used. Any value other than EMMFStatePlaying, EMMFStateRecording or EMMFStateTonePlaying is unsupported.
1.473 +
1.474 + */
1.475 + IMPORT_C void InitializeL(MDevSoundObserver& aDevSoundObserver, TFourCC aDesiredFourCC, TMMFState aMode);
1.476 +
1.477 + /**
1.478 + Returns the supported Audio settings ie. encoding, sample rates, mono/stereo operation, buffer
1.479 + size etc.
1.480 +
1.481 + @return The device settings.
1.482 + */
1.483 + IMPORT_C TMMFCapabilities Capabilities();
1.484 +
1.485 + /**
1.486 + Returns the current device configuration.
1.487 +
1.488 + @return The device settings.
1.489 + */
1.490 + IMPORT_C TMMFCapabilities Config() const;
1.491 +
1.492 + /**
1.493 + Configure CMMFDevSound object with the settings in aConfig.
1.494 +
1.495 + Use this to set sampling rate, encoding and mono/stereo.
1.496 +
1.497 + @param aCaps
1.498 + The attribute values to which CMMFDevSound object will be configured to.
1.499 + */
1.500 + IMPORT_C void SetConfigL(const TMMFCapabilities& aCaps);
1.501 +
1.502 + /**
1.503 + Returns an integer representing the maximum volume device supports.
1.504 +
1.505 + This is the maximum value which can be passed to CMMFDevSound::SetVolume.
1.506 +
1.507 + @return The maximum volume. This value is platform dependent but is always greater than or equal
1.508 + to one.
1.509 + */
1.510 + IMPORT_C TInt MaxVolume();
1.511 +
1.512 + /**
1.513 + Returns an integer representing the current volume.
1.514 +
1.515 + @return The current volume level.
1.516 + */
1.517 + IMPORT_C TInt Volume();
1.518 +
1.519 + /**
1.520 + Changes the current playback volume to a specified value.
1.521 +
1.522 + The volume can be changed before or during playback and is effective
1.523 + immediately.
1.524 +
1.525 + @param aVolume
1.526 + The volume setting. This can be any value from 0 to the value
1.527 + returned by a call to CMMFDevSound::MaxVolume(). If the
1.528 + volume is not within this range, the volume is automatically set to
1.529 + minimum or maximum value based on the value that is being passed.
1.530 + Setting a zero value mutes the sound. Setting the maximum value
1.531 + results in the loudest possible sound.
1.532 + */
1.533 + IMPORT_C void SetVolume(TInt aVolume);
1.534 +
1.535 + /**
1.536 + Returns an integer representing the maximum gain the device supports.
1.537 +
1.538 + This is the maximum value which can be passed to CMMFDevSound::SetGain.
1.539 +
1.540 + @return The maximum gain. This value is platform dependent but is always greater than or equal
1.541 + to one.
1.542 + */
1.543 + IMPORT_C TInt MaxGain();
1.544 +
1.545 + /**
1.546 + Returns an integer representing the current gain.
1.547 +
1.548 + @return The current gain level.
1.549 + */
1.550 + IMPORT_C TInt Gain();
1.551 +
1.552 + /**
1.553 + Changes the current recording gain to a specified value.
1.554 +
1.555 + The gain can be changed before or during recording and is effective
1.556 + immediately.
1.557 +
1.558 + @param aGain
1.559 + The gain setting. This can be any value from zero to the value
1.560 + returned by a call to CMMFDevSound::MaxGain(). If the
1.561 + volume is not within this range, the gain is automatically set to
1.562 + minimum or maximum value based on the value that is being passed.
1.563 + Setting a zero value mutes the sound. Setting the maximum value
1.564 + results in the loudest possible sound.
1.565 + */
1.566 + IMPORT_C void SetGain(TInt aGain);
1.567 +
1.568 + /**
1.569 + Returns the speaker balance set for playing.
1.570 +
1.571 + Leaves on failure.
1.572 +
1.573 + @param aLeftPercentage
1.574 + On return contains the left speaker volume percentage.
1.575 + @param aRightPercentage
1.576 + On return contains the right speaker volume percentage.
1.577 + */
1.578 + IMPORT_C void GetPlayBalanceL(TInt& aLeftPercentage, TInt& aRightPercentage);
1.579 +
1.580 + /**
1.581 + Sets the speaker balance for playing.
1.582 +
1.583 + The speaker balance can be changed before or during playback and is
1.584 + effective immediately.
1.585 +
1.586 + @param aLeftPercentage
1.587 + On return contains left speaker volume perecentage. This can be any
1.588 + value from zero to 100. Setting a zero value mutes the sound on left
1.589 + speaker.
1.590 + @param aRightPercentage
1.591 + On return contains right speaker volume perecentage. This can be any
1.592 + value from zero to 100. Setting a zero value mutes the sound on
1.593 + right speaker.
1.594 + */
1.595 + IMPORT_C void SetPlayBalanceL(TInt aLeftPercentage, TInt aRightPercentage);
1.596 +
1.597 + /**
1.598 + Returns the microphone gain balance set for recording.
1.599 +
1.600 + Leaves on failure.
1.601 +
1.602 + @param aLeftPercentage
1.603 + On return contains the left microphone gain percentage.
1.604 + @param aRightPercentage
1.605 + On return contains the right microphone gain percentage.
1.606 + */
1.607 + IMPORT_C void GetRecordBalanceL(TInt& aLeftPercentage, TInt& aRightPercentage);
1.608 +
1.609 + /**
1.610 + Sets the microphone gain balance for recording.
1.611 +
1.612 + The microphone gain balance can be changed before or during recording and
1.613 + is effective immediately.
1.614 +
1.615 + @param aLeftPercentage
1.616 + The left microphone gain precentage. This can be any value from zero to
1.617 + 100. Setting a zero value mutes the gain on left microphone.
1.618 + @param aRightPercentage
1.619 + The right microphone gain precentage. This can be any value from zero to
1.620 + 100. Setting a zero value mutes the gain on right microphone.
1.621 + */
1.622 + IMPORT_C void SetRecordBalanceL(TInt aLeftPercentage, TInt aRightPercentage);
1.623 +
1.624 + /**
1.625 + Initializes the audio device and starts the play process.
1.626 +
1.627 + This function queries and acquires the audio policy before initializing audio device. If there was
1.628 + an error during policy initialization, PlayError() function will be called on the observer with
1.629 + error code KErrAccessDenied, otherwise BufferToBeFilled() function will be called with a buffer
1.630 + reference. After reading data into the buffer reference passed, the client should call
1.631 + PlayData() to play data.
1.632 +
1.633 + The amount of data that can be played is specified in
1.634 + CMMFBuffer::RequestSize(). Any data that is read into buffer beyond this
1.635 + size will be ignored.
1.636 +
1.637 + Leaves on failure.
1.638 +
1.639 + @see MDevSoundObserver::PlayError()
1.640 + @see MDevSoundObserver::BufferToBeFilled()
1.641 + */
1.642 + IMPORT_C void PlayInitL();
1.643 +
1.644 + /**
1.645 + Initializes audio device and starts the recording process.
1.646 +
1.647 + This function queries and acquires the audio policy before initializing audio device. If there
1.648 + was an error during policy initialization, RecordError() function will be called on the observer
1.649 + with error code KErrAccessDenied, otherwise BufferToBeEmptied() function will be called with a
1.650 + buffer reference. This buffer contains recorded or encoded data. After processing data in the
1.651 + buffer reference passed, the client should call RecordData() to continue recording process.
1.652 +
1.653 + The amount of data that is available is specified in CMMFBuffer::RequestSize().
1.654 +
1.655 + Leaves on failure.
1.656 +
1.657 + @see MDevSoundObserver::RecordError()
1.658 + @see MDevSoundObserver::BufferToBeEmptied()
1.659 +
1.660 + @capability UserEnvironment
1.661 + For recording - the requesting client process must have the
1.662 + UserEnvironment capability.
1.663 + */
1.664 + IMPORT_C void RecordInitL();
1.665 +
1.666 + /**
1.667 + Plays data in the buffer at the current volume.
1.668 +
1.669 + The client should fill the buffer with audio data before calling this function. The observer gets
1.670 + a reference to the buffer along with the callback function BufferToBeFilled(). When playing of
1.671 + the audio sample is complete, successfully or otherwise, the function PlayError() on the
1.672 + observer is called.
1.673 +
1.674 + The last buffer of the audio stream being played should have the last buffer flag set using
1.675 + CMMFBuffer::SetLastBuffer(TBool). If a subsequent attempt to play the clip is made, this flag
1.676 + will need resetting by the client.
1.677 +
1.678 + @see MDevSoundObserver::PlayError()
1.679 + */
1.680 + IMPORT_C void PlayData();
1.681 +
1.682 + /**
1.683 + Contine the process of recording.
1.684 +
1.685 + Once the buffer is filled with recorded data, the Observer gets a reference to the buffer along
1.686 + with the callback function BufferToBeEmptied(). After processing the buffer (copying over to a
1.687 + different buffer or writing to file) the client should call this function to continue the
1.688 + recording process.
1.689 +
1.690 + @capability UserEnvironment
1.691 + For recording - the requesting client process must have the
1.692 + UserEnvironment capability.
1.693 + */
1.694 + IMPORT_C void RecordData();
1.695 +
1.696 + /**
1.697 + Stops the ongoing operation (Play, Record, TonePlay, Convert).
1.698 +
1.699 + This function should be synchronous and invoke no callbacks through MDevSoundObserver.
1.700 + */
1.701 + IMPORT_C void Stop();
1.702 +
1.703 + /**
1.704 + Temporarily Stops the ongoing operation (Play, Record, TonePlay, Convert).
1.705 +
1.706 + The behaviour of Pause() is currently undefined when the initialisation mode
1.707 + is not EMMFStateRecording, consequently different DevSound implementations exhibit
1.708 + different behaviour for pause during play. For this reason, it is recommended that
1.709 + when pausing of audio during playing is required, Stop() is used instead of the call
1.710 + to Pause(). To resume audio playing after Stop(), call PlayInitL(). Among other things,
1.711 + this will internally reset the SamplesPlayed() result and the calling code may need to
1.712 + remember the previous result to give the correct "samples played from start" value.
1.713 +
1.714 + In the case of record, Pause is taken to mean halt any further recording
1.715 + but continue to call the MDevSoundObserver::BufferToBeEmptied() passing
1.716 + already recorded buffers. The last buffer flag should be set when
1.717 + all recorded buffers have been flushed.
1.718 +
1.719 + @see CMMFDevSound::Stop()
1.720 + @see CMMFDevSound::PlayInitL()
1.721 + @see CMMFDevSound::SamplesPlayed()
1.722 + */
1.723 + IMPORT_C void Pause();
1.724 +
1.725 + /**
1.726 + Returns the number samples recorded so far.
1.727 +
1.728 + @return The samples recorded.
1.729 + */
1.730 + IMPORT_C TInt SamplesRecorded();
1.731 +
1.732 + /**
1.733 + Returns the number of samples played so far.
1.734 +
1.735 + @return The samples played.
1.736 + */
1.737 + IMPORT_C TInt SamplesPlayed();
1.738 +
1.739 + /**
1.740 + Initializes the audio device and starts playing a tone. The tone is played with the
1.741 + frequency and duration specified.
1.742 +
1.743 + Leaves on failure.
1.744 +
1.745 + @param aFrequency
1.746 + The frequency at which the tone will be played.
1.747 + @param aDuration
1.748 + The period over which the tone will be played. A zero value causes
1.749 + the no tone to be played.
1.750 + */
1.751 + IMPORT_C void PlayToneL(TInt aFrequency, const TTimeIntervalMicroSeconds& aDuration);
1.752 +
1.753 + /**
1.754 + Initializes audio device and starts playing a dual tone.
1.755 +
1.756 + The generated tone consists of two sine waves of different frequencies
1.757 + summed together.
1.758 +
1.759 + Dual Tone is played with the specified frequencies and for the specified duration.
1.760 +
1.761 + @param aFrequencyOne
1.762 + The first frequency of dual tone.
1.763 + @param aFrequencyTwo
1.764 + The second frequency of dual tone
1.765 + @param aDuration
1.766 + The period over which the tone will be played. A zero value causes
1.767 + the no tone to be played (Verify this with test app).
1.768 + */
1.769 + IMPORT_C void PlayDualToneL(TInt aFrequencyOne, TInt aFrequencyTwo, const TTimeIntervalMicroSeconds& aDuration);
1.770 +
1.771 + /**
1.772 + Initializes the audio device and starts playing the DTMF string aDTMFString.
1.773 +
1.774 + Leaves on failure.
1.775 +
1.776 + @param aDTMFString
1.777 + The DTMF sequence in a descriptor.
1.778 + */
1.779 + IMPORT_C void PlayDTMFStringL(const TDesC& aDTMFString);
1.780 +
1.781 + /**
1.782 + Initializes the audio device and starts playing a tone sequence.
1.783 +
1.784 + Leaves on failure.
1.785 +
1.786 + @param aData
1.787 + The tone sequence in a descriptor.
1.788 + */
1.789 + IMPORT_C void PlayToneSequenceL(const TDesC8& aData);
1.790 +
1.791 + /**
1.792 + Initializes the audio device and starts playing the specified pre-defined tone
1.793 + sequence.
1.794 +
1.795 + Leaves on failure.
1.796 +
1.797 + @param aSequenceNumber
1.798 + The index identifying the specific pre-defined tone sequence. Index
1.799 + values are relative to zero.
1.800 + This can be any value from zero to the value returned by a call to
1.801 + FixedSequenceCount() - 1.
1.802 + The function raises a panic if the sequence number is not within this
1.803 + range.
1.804 + @see FixedSequenceCount()
1.805 + */
1.806 + IMPORT_C void PlayFixedSequenceL(TInt aSequenceNumber);
1.807 +
1.808 + /**
1.809 + Defines the number of times the audio is to be repeated during the tone
1.810 + playback operation.
1.811 +
1.812 + A period of silence can follow each playing of a tone. The tone playing can
1.813 + be repeated indefinitely.
1.814 +
1.815 + @param aRepeatCount
1.816 + The number of times the tone, together with the trailing silence,
1.817 + is to be repeated. If this is set to KMdaRepeatForever, then the
1.818 + tone, together with the trailing silence, is repeated indefinitely
1.819 + or until Stop() is called. If this is set to zero, then the tone is
1.820 + not repeated.
1.821 + @param aRepeatTrailingSilence
1.822 + An interval of silence which will be played after each tone.
1.823 + Supported only during tone playing.
1.824 + */
1.825 + IMPORT_C void SetToneRepeats(TInt aRepeatCount,
1.826 + const TTimeIntervalMicroSeconds& aRepeatTrailingSilence);
1.827 +
1.828 + /**
1.829 + Defines the duration of tone on, tone off and tone pause to be used during the
1.830 + DTMF tone playback operation.
1.831 +
1.832 + Supported only during tone playing.
1.833 +
1.834 + @param aToneOnLength
1.835 + The period over which the tone will be played. If this is set to
1.836 + zero, then the tone is not played.
1.837 + @param aToneOffLength
1.838 + The period over which the no tone will be played.
1.839 + @param aPauseLength
1.840 + The period over which the tone playing will be paused.
1.841 + */
1.842 + IMPORT_C void SetDTMFLengths(TTimeIntervalMicroSeconds32& aToneOnLength,
1.843 + TTimeIntervalMicroSeconds32& aToneOffLength,
1.844 + TTimeIntervalMicroSeconds32& aPauseLength);
1.845 +
1.846 + /**
1.847 + Defines the period over which the volume level is to rise smoothly from
1.848 + nothing to the normal volume level.
1.849 +
1.850 + The function is only available while the tone is playing.
1.851 +
1.852 + @param aRampDuration
1.853 + The period over which the volume is to rise. A zero value causes
1.854 + the tone sample to be played at the normal level for the full
1.855 + duration of the playback. A value, which is longer than the duration
1.856 + of the tone sample means that the sample never reaches its normal
1.857 + volume level.
1.858 + */
1.859 + IMPORT_C void SetVolumeRamp(const TTimeIntervalMicroSeconds& aRampDuration);
1.860 +
1.861 + /**
1.862 + Defines the priority settings that should be used for this instance.
1.863 +
1.864 + @param aPrioritySettings
1.865 + A class type representing the client's priority, priority preference and state.
1.866 + */
1.867 + IMPORT_C void SetPrioritySettings(const TMMFPrioritySettings& aPrioritySettings);
1.868 +
1.869 + /**
1.870 + Retrieves a custom interface to the device.
1.871 +
1.872 + @param aInterfaceId
1.873 + The interface UID, defined with the custom interface.
1.874 +
1.875 + @return A pointer to the interface implementation, or NULL if the device does not
1.876 + implement the interface requested. The return value must be cast to the
1.877 + correct type by the user.The user should be careful while caching the custom interface pointer,
1.878 + as in some situations the lower level custom interface pointer may become NULL.
1.879 + */
1.880 + IMPORT_C TAny* CustomInterface(TUid aInterfaceId);
1.881 +
1.882 + /**
1.883 + Returns the number of available pre-defined tone sequences.
1.884 +
1.885 + This is the number of fixed sequence supported by DevSound by default.
1.886 +
1.887 + @return The fixed sequence count. This value is implementation dependent but is always greater
1.888 + than or equal to zero.
1.889 + */
1.890 + IMPORT_C TInt FixedSequenceCount();
1.891 +
1.892 + /**
1.893 + Returns the name assigned to a specific pre-defined tone sequence.
1.894 +
1.895 + This is the number of the fixed sequence supported by DevSound by default.
1.896 +
1.897 + The function raises a panic if sequence number specified is invalid.
1.898 +
1.899 + @param aSequenceNumber
1.900 + The index identifying the specific pre-defined tone sequence. Index values are relative
1.901 + to zero. This can be any value from zero to the value returned by a call to
1.902 + FixedSequenceCount() - 1.
1.903 + The function raises a panic if sequence number is not within this
1.904 + range.
1.905 +
1.906 + @return A reference to a Descriptor containing the fixed sequence name indexed by
1.907 + aSequenceNumber.
1.908 +
1.909 + @see FixedSequenceCount()
1.910 + */
1.911 + IMPORT_C const TDesC& FixedSequenceName(TInt aSequenceNumber);
1.912 +
1.913 + /**
1.914 + Returns a list of the supported input datatypes that can be sent to DevSound for playing audio.
1.915 + The datatypes returned are those that the DevSound supports given the priority settings passed
1.916 + in aPrioritySettings.
1.917 +
1.918 + Note that if no supported data types are found this does not constitute failure, the function will
1.919 + return normally with no entries in aSupportedDataTypes.
1.920 +
1.921 + @param aSupportedDataTypes
1.922 + The array of supported data types that will be filled in by this function.
1.923 + The supported data types of the DevSound are in the form of an array
1.924 + of TFourCC codes. Any existing entries in the array will be overwritten on
1.925 + calling this function. If no supported data types are found given the priority
1.926 + settings, then the aSupportedDatatypes array will have zero entries.
1.927 + @param aPrioritySettings
1.928 + The priority settings used to determine the supported datatypes. Note this
1.929 + does not set the priority settings. For input datatypes the iState member
1.930 + of the priority settings would be expected to be either
1.931 + EMMFStatePlaying or EMMFStatePlayingRecording. The priority settings may
1.932 + effect the supported datatypes depending on the audio routing.
1.933 + */
1.934 + IMPORT_C void GetSupportedInputDataTypesL(RArray<TFourCC>& aSupportedDataTypes, const TMMFPrioritySettings& aPrioritySettings) const;
1.935 +
1.936 + /**
1.937 + Returns a list of the supported output dataypes that can be received from DevSound for
1.938 + recording audio. The datatypes returned are those that the DevSound supports given the priority
1.939 + settings passed in aPrioritySettings.
1.940 +
1.941 + Note that if no supported data types are found this does not constitute failure, the function will
1.942 + return normally with no entries in aSupportedDataTypes.
1.943 +
1.944 + @param aSupportedDataTypes
1.945 + The array of supported data types that will be filled in by this function.
1.946 + The supported datatypes of the DevSound are in the form of an array
1.947 + of TFourCC codes.
1.948 + Any existing entries in the array will be overwritten on calling this function.
1.949 + If no supported datatypes are found given the priority settings, then
1.950 + the aSupportedDatatypes array will have zero entries.
1.951 + @param aPrioritySettings
1.952 + The priority settings used to determine the supported data types. Note this
1.953 + does not set the priority settings. For output data types the iState member
1.954 + of the priority settings would expected to be either
1.955 + EMMFStateRecording or EMMFStatePlayingRecording. The priority settings may
1.956 + effect the supported datatypes depending on the audio routing.
1.957 + */
1.958 + IMPORT_C void GetSupportedOutputDataTypesL(RArray<TFourCC>& aSupportedDataTypes, const TMMFPrioritySettings& aPrioritySettings) const;
1.959 +
1.960 + /**
1.961 + Registers the client for notification of resource avalibility.
1.962 +
1.963 + @param aEventType
1.964 + The Notification event type for which the client needs notification.
1.965 + @param aNotificationRegistrationData
1.966 + The Notification Registration data has been reserved for future use and its value should be always NULL
1.967 + @return An error code indicating if the function call was successful. KErrNone on success,
1.968 + KErrNotSupported if the event type is not supported, KErrArgument if the notification data
1.969 + is not null otherwise another of the system-wide error codes.
1.970 + */
1.971 + inline TInt RegisterAsClient(TUid aEventType, const TDesC8& aNotificationRegistrationData = KNullDesC8);
1.972 +
1.973 + /**
1.974 + Cancels the Registered Notification.
1.975 +
1.976 + @param aEventType
1.977 + The Event type need to cancel
1.978 + @return An error code indicating if the function call was successful. KErrNone on success, KErrNotSupported
1.979 + if the event type is not supported otherwise another of the system-wide error codes.
1.980 + */
1.981 + inline TInt CancelRegisterAsClient(TUid aEventType);
1.982 +
1.983 + /**
1.984 + Returns the Notification data which the client needs to resume playing.
1.985 +
1.986 + @param aEventType
1.987 + The Event type for which to get notification data
1.988 + @param aNotificationData
1.989 + The reference data for which the client needs to resume the play. The actual data depends on the event type.
1.990 + Note that for the event type 'KMMFEventCategoryAudioResourceAvailable' the package buffer returned
1.991 + is TMMFTimeIntervalMicroSecondsPckg,but the contents should be converted to an integer and
1.992 + interpreted as the data returned is samples played ,but not as a microsecond value.
1.993 + @return An error code indicating if the function call was successful. KErrNone on success, otherwise
1.994 + another of the system-wide error codes.
1.995 + */
1.996 + inline TInt GetResourceNotificationData(TUid aEventType,TDes8& aNotificationData);
1.997 +
1.998 + /**
1.999 + Wait for the clients to resume play back even after the default timeout expires.
1.1000 + Unless the client cancels the notification request or completes no other client gets
1.1001 + notification.
1.1002 +
1.1003 + @return An error code indicating if the function call was successful. KErrNone on success,
1.1004 + KErrPermissionDenied if the client does not have MultimediaDD capaility, otherwise
1.1005 + another of the system-wide error codes.
1.1006 + */
1.1007 + inline TInt WillResumePlay();
1.1008 +
1.1009 + /**
1.1010 +
1.1011 + Empties the play buffers below DevSound without causing the codec to be deleted.
1.1012 +
1.1013 + @return An error code indicating if the function call was successful. KErrNone on success,
1.1014 + KErrNotSupported if called in a mode other than EMMFStatePlaying or if the function is otherwise not supported,
1.1015 + KErrNotReady if this is called before playing,
1.1016 + otherwise another of the system-wide error codes.
1.1017 + If this function is not supported, it is advised to use Stop().
1.1018 + */
1.1019 + inline TInt EmptyBuffers();
1.1020 +
1.1021 + /** Cancels the initialization process of a CMMFDevSound object
1.1022 +
1.1023 + @return An error code indicating if the function call was successful.
1.1024 + KErrNone on success,
1.1025 + KerrNotReady if this is called before InitializeL() call or after
1.1026 + the object has been initialized,
1.1027 + */
1.1028 + inline TInt CancelInitialize();
1.1029 +
1.1030 + /**
1.1031 + Sets client thread info for devsound to make proper policy and routing decisions
1.1032 +
1.1033 + @param aTid
1.1034 + The thread Id of real client.
1.1035 +
1.1036 + @capability MultimediaDD
1.1037 + A process requires MultimediaDD capability to make this call.
1.1038 + */
1.1039 + inline TInt SetClientThreadInfo(TThreadId aTid);
1.1040 +
1.1041 + /**
1.1042 + Retrieves the current play time from the audio renderer
1.1043 +
1.1044 + @param aTime
1.1045 + A reference to TTimeIntervalMicroSeconds object which will be filled with the current play time by this function.
1.1046 + @return An error code indicating if the function call was successful.
1.1047 + KErrNone on success,
1.1048 + KErrNotSupported if the underlying devsound implementation or the HwDevice does not support this API,
1.1049 + otherwise any of the system-wide error codes.
1.1050 + If this function is not supported, SamplesPlayed() needs to be used instead.
1.1051 +
1.1052 + @see IsGetTimePlayedSupported()
1.1053 + */
1.1054 + inline TInt GetTimePlayed(TTimeIntervalMicroSeconds& aTime);
1.1055 +
1.1056 + /**
1.1057 + This method can be used by devsound clients to check if the devsound implementation supports
1.1058 + GetTimePlayed API. If this method returns EFalse, SamplesPlayed needs to be used.
1.1059 +
1.1060 + @return ETrue if the underlying devsound implementation supports GetTimePlayed API,
1.1061 + EFalse if the the underlying devsound implementation does not support GetTimePlayed API
1.1062 +
1.1063 + @see GetTimePlayed()
1.1064 + */
1.1065 + inline TBool IsGetTimePlayedSupported();
1.1066 +
1.1067 + /**
1.1068 + This method can be used by devsound clients to check if the devsound implementation ignores the underflow
1.1069 + errors from the sound driver and does not propagate them to its clients.
1.1070 +
1.1071 + @return ETrue if devsound ignores all the underflow errors from the sound driver except for the last buffer
1.1072 + That means DevSound propagates the underflow error from sound driver to its clients only when
1.1073 + client sets the last buffer flag on the CMMFBuffer type buffer.
1.1074 + EFalse if devsound propagates the underflow errors from the sound driver in all the cases
1.1075 +
1.1076 + */
1.1077 + inline TBool QueryIgnoresUnderflow();
1.1078 +
1.1079 + /**
1.1080 + This method can be used by devsound clients to check if current configuration supports resume
1.1081 + This call is only valid when DevSound is initialized
1.1082 + @return ETrue if current format does supports resume
1.1083 + EFalse otherwise
1.1084 + */
1.1085 + inline TBool IsResumeSupported();
1.1086 +
1.1087 + /**
1.1088 + Resume play back, recording or tone playing after this has been paused
1.1089 + @return An error code indicating if the function call was successful.
1.1090 + KErrNone on success,
1.1091 + KErrNotSupported if current format configuration does not support this functionality
1.1092 + KErrNotReady if DevSound is not paused
1.1093 + */
1.1094 + inline TInt Resume();
1.1095 +
1.1096 +protected:
1.1097 +
1.1098 + /**
1.1099 + Default Constructor.
1.1100 + */
1.1101 + //So that nobody can extend derive from CMMFDevSound.
1.1102 + CMMFDevSound();
1.1103 +
1.1104 + /**
1.1105 + Second phase constructor.
1.1106 + */
1.1107 + void ConstructL();
1.1108 +
1.1109 + class CBody;
1.1110 +
1.1111 + /**
1.1112 + DevSound body
1.1113 + */
1.1114 + CBody* iBody;
1.1115 + };
1.1116 +
1.1117 +inline void MDevSoundObserver::SendEventToClient(const TMMFEvent& /*aEvent*/)
1.1118 + {
1.1119 + }
1.1120 +
1.1121 +#include <mmf/server/sounddevice.inl>
1.1122 +
1.1123 +#endif // __SOUNDDEVICE_H__