epoc32/include/environmentalreverbdata.h
branchSymbian2
changeset 2 2fe1408b6811
parent 0 061f57f2323e
child 4 837f303aceeb
     1.1 --- a/epoc32/include/environmentalreverbdata.h	Tue Nov 24 13:55:44 2009 +0000
     1.2 +++ b/epoc32/include/environmentalreverbdata.h	Tue Mar 16 16:12:26 2010 +0000
     1.3 @@ -1,1 +1,82 @@
     1.4 -environmentalreverbdata.h
     1.5 +/*
     1.6 +* Copyright (c) 2004 Nokia Corporation and/or its subsidiary(-ies). 
     1.7 +* All rights reserved.
     1.8 +* This component and the accompanying materials are made available
     1.9 +* under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
    1.10 +* which accompanies this distribution, and is available
    1.11 +* at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
    1.12 +*
    1.13 +* Initial Contributors:
    1.14 +* Nokia Corporation - initial contribution.
    1.15 +*
    1.16 +* Contributors:
    1.17 +*
    1.18 +* Description:  This file contains definitions of audio effects data structures for
    1.19 +*                Reverb.
    1.20 +*
    1.21 +*/
    1.22 +
    1.23 +
    1.24 +
    1.25 +#ifndef TEFENVIRONMENTALREVERB_H
    1.26 +#define TEFENVIRONMENTALREVERB_H
    1.27 +
    1.28 +//  INCLUDES
    1.29 +#include <e32std.h>
    1.30 +#include <AudioEffectData.h>
    1.31 +
    1.32 +// CLASS DECLARATION
    1.33 +
    1.34 +/**
    1.35 +*  This class defines the effect data structure to be passed between client and
    1.36 +*  server.
    1.37 +*
    1.38 +*  @lib EnvironmentalReverbEffect.lib
    1.39 +*  @since 3.0
    1.40 +*/
    1.41 +class TEfEnvironmentalReverb : public TEfCommon
    1.42 +    {
    1.43 +    public:
    1.44 +
    1.45 +        /**
    1.46 +        * Constructor.
    1.47 +        */
    1.48 +        TEfEnvironmentalReverb() {}
    1.49 +
    1.50 +    	// Data
    1.51 +        // Reverb values of a Reverb object
    1.52 +
    1.53 +		TUint32 iDecayHFRatio;
    1.54 +		TUint32 iDecayHFRatioMin;
    1.55 +		TUint32 iDecayHFRatioMax;
    1.56 +		TUint32 iDecayTime;
    1.57 +		TUint32 iDecayTimeMin;
    1.58 +		TUint32 iDecayTimeMax;
    1.59 +		TUint32 iDensity;
    1.60 +		TUint32 iDiffusion;
    1.61 +		TInt32 iReflectionsLevel;
    1.62 +		TInt32 iReflectionLevelMin;
    1.63 +		TInt32 iReflectionLevelMax;
    1.64 +		TUint32 iReflectionsDelay;
    1.65 +		TUint32 iReflectionsDelayMax;
    1.66 +		TUint32 iReverbDelay;
    1.67 +		TUint32 iReverbDelayMax;
    1.68 +		TInt32 iReverbLevel;
    1.69 +		TInt32 iReverbLevelMin;
    1.70 +		TInt32 iReverbLevelMax;
    1.71 +		TInt32 iRoomHFLevel;
    1.72 +		TInt32 iRoomHFLevelMin;
    1.73 +		TInt32 iRoomHFLevelMax;
    1.74 +		TInt32 iRoomLevel;
    1.75 +		TInt32 iRoomLevelMin;
    1.76 +		TInt32 iRoomLevelMax;
    1.77 +		TUint32 iDelayMax;
    1.78 +		TUint32 iEnvironmentalReverbId;
    1.79 +
    1.80 +	};
    1.81 +
    1.82 +typedef TPckgBuf<TEfEnvironmentalReverb> TEfEnvReverbDataPckg;
    1.83 +
    1.84 +#endif      // TEFENVIRONMENTALREVERB_H
    1.85 +
    1.86 +// End of File