1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/mm_plat/audio_visualization_api/inc/Visualization.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,199 @@
1.4 +/*
1.5 +* Copyright (c) 2004 Nokia Corporation and/or its subsidiary(-ies).
1.6 +* All rights reserved.
1.7 +* This component and the accompanying materials are made available
1.8 +* under the terms of "Eclipse Public License v1.0"
1.9 +* which accompanies this distribution, and is available
1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +*
1.12 +* Initial Contributors:
1.13 +* Nokia Corporation - initial contribution.
1.14 +*
1.15 +* Contributors:
1.16 +*
1.17 +* Description: This is the definition of the audio visualization base class.
1.18 +*
1.19 +*
1.20 +*/
1.21 +
1.22 +
1.23 +#ifndef CVISUALIZATION_H
1.24 +#define CVISUALIZATION_H
1.25 +
1.26 +// INCLUDES
1.27 +#include <e32base.h>
1.28 +
1.29 +// FORWARD DECLARATION
1.30 +class MVisualizationObserver;
1.31 +
1.32 +// CLASS DECLARATION
1.33 +
1.34 +/**
1.35 +* This is the base class for audio visualization.
1.36 +*
1.37 +* @lib Visualization.lib
1.38 +* @since 3.0
1.39 +*/
1.40 +
1.41 +class CVisualization : public CBase
1.42 + {
1.43 +
1.44 + public: // Constructors and destructor
1.45 +
1.46 + /**
1.47 + * Factory function for creating the volume object.
1.48 + * @since 3.0
1.49 + * @param aObserver A visualization observer.
1.50 + * @return pointer to CVisualization object
1.51 + */
1.52 + IMPORT_C static CVisualization* NewL( MVisualizationObserver& aObserver );
1.53 +
1.54 + /**
1.55 + * Destructor
1.56 + */
1.57 + virtual ~CVisualization();
1.58 +
1.59 + public: // New functions
1.60 +
1.61 + /**
1.62 + * Get the data rate.
1.63 + * @since 3.0
1.64 + * @return data rate in Hz.
1.65 + */
1.66 + IMPORT_C TUint32 DataRate() const;
1.67 +
1.68 + /**
1.69 + * Get the upper and lower limits of the supported data rate range
1.70 + * @since 3.0
1.71 + * @param aMin The lower limit of the data rate range
1.72 + * @param aMax The upper limit of the data rate range
1.73 + */
1.74 + IMPORT_C void DataRateRange( TUint32& aMin, TUint32& aMax );
1.75 +
1.76 + /**
1.77 + * Used by application enable or disable frequency data.
1.78 + * @since 3.0
1.79 + * @param aIndicator Set to ETrue to enable frequency, EFalse to disable frequency data.
1.80 + */
1.81 + IMPORT_C void EnableFrequencyData( TBool aIndicator );
1.82 +
1.83 + /**
1.84 + * Used by application to enable or disable waveform data.
1.85 + * @since 3.0
1.86 + * @param aIndicator Set to ETrue to enable waveform data, EFalse to disable waveform data.
1.87 + */
1.88 + IMPORT_C void EnableWaveformData( TBool aIndicator );
1.89 +
1.90 + /**
1.91 + * Get frequency band count.
1.92 + * @since 3.0
1.93 + * @return frequency band count.
1.94 + */
1.95 + IMPORT_C TUint32 FreqencyBandCount( ) const;
1.96 +
1.97 + /**
1.98 + * Get frequency band count range.
1.99 + * @since 3.0
1.100 + * @param aMin Lower limit of the frequency band count range
1.101 + * @param aMax Upper limit of the frequency band count range
1.102 + */
1.103 + IMPORT_C void FrequencyBandCountRange( TUint32& aMin, TUint32& aMax );
1.104 +
1.105 + /**
1.106 + * Determine whether frequency data is enabled.
1.107 + * @since 3.0
1.108 + * @return ETrue, if frequency data is enabled. EFalse, if frequency data is disabled.
1.109 + */
1.110 + IMPORT_C TBool IsFrequencyDataEnabled( ) const;
1.111 +
1.112 + /**
1.113 + * Determine whether waveform data is enabled.
1.114 + * @since 3.0
1.115 + * @return ETrue, if waveform data is enabled. EFalse, if waveform data is disabled.
1.116 + */
1.117 + IMPORT_C TBool IsWaveformDataEnabled( ) const;
1.118 +
1.119 + /**
1.120 + * Get the sampling rate.
1.121 + * @since 3.0
1.122 + * @return The sampling rate.
1.123 + */
1.124 + IMPORT_C TUint32 SamplingRate() const;
1.125 +
1.126 + /**
1.127 + * Set the data rate.
1.128 + * @since 3.0
1.129 + * @param aDataRate The data rate.
1.130 + */
1.131 + IMPORT_C void SetDataRateL( TUint32 aDataRate );
1.132 +
1.133 + /**
1.134 + * Sets the frequency band count. Results in a call to
1.135 + * MVisualizationObserver::FrequencyBandCountChanged().
1.136 + * @since 3.0
1.137 + * @param aFrequencyBandCount The frequency band count.
1.138 + */
1.139 + IMPORT_C void SetFrequencyBandCountL( TUint32 aFrequencyBandCount );
1.140 +
1.141 + /**
1.142 + * Sets the waveform band count. Results in a call to
1.143 + * MVisualizationObserver::WaveformDataLengthChanged().
1.144 + * @since 3.0
1.145 + * @param aWaveformDataLength The waveform data length in samples.
1.146 + */
1.147 + IMPORT_C void SetWaveformDataLengthL( TUint32 aWaveformDataLength );
1.148 +
1.149 + /**
1.150 + * Starts visualization. Results in a call to MVisualizationObserver::VisualizationStarted()
1.151 + * @since 3.0
1.152 + */
1.153 + IMPORT_C void StartL( );
1.154 +
1.155 + /**
1.156 + * Stops visualization. Results in a call to MVisualizationObserver::VisualizationStopped()
1.157 + * @since 3.0
1.158 + */
1.159 + IMPORT_C void StopL( );
1.160 +
1.161 + /**
1.162 + * Get the waveform data length.
1.163 + * @since 3.0
1.164 + * @return The waveform data length in samples.
1.165 + */
1.166 + IMPORT_C TUint32 WaveformDataLength() const;
1.167 +
1.168 + /**
1.169 + * Get the waveform data length range in samples.
1.170 + * @since 3.0
1.171 + * @param aMin The lower limit of the waveform data length range
1.172 + * @param aMax The upper limit of the waveform data length range
1.173 + */
1.174 + IMPORT_C void WaveformDataLengthRange( TUint32& aMin, TUint32& aMax );
1.175 +
1.176 +
1.177 + private:
1.178 +
1.179 + /**
1.180 + * Private C++ constructor for this class.
1.181 + * @since 3.0
1.182 + */
1.183 + CVisualization();
1.184 +
1.185 + /**
1.186 + * Second Phase Costructor
1.187 + * @since 3.0
1.188 + * @param aObserver Visualization Observer
1.189 + */
1.190 + void ConstructL( MVisualizationObserver& aObserver );
1.191 +
1.192 + class CBody;
1.193 +
1.194 + /**
1.195 + CVisualization body
1.196 + */
1.197 + CBody* iBody;
1.198 + };
1.199 +
1.200 +#endif // of CVISUALIZATION_H
1.201 +
1.202 +// End of File