00001 /* 00002 * ============================================================================== 00003 * Name : EnvironmentalReverbData.h 00004 * Part of : Effects Framework 00005 * Interface : Audio Effects 00006 * Description : This file contains definitions of audio effects data structures for 00007 * Reverb. 00008 * Version : 0.4 00009 * 00010 * Copyright (c) 2004 Nokia Corporation. 00011 * This material, including documentation and any related 00012 * computer programs, is protected by copyright controlled by 00013 * Nokia Corporation. All rights are reserved. Copying, 00014 * including reproducing, storing, adapting or translating, any 00015 * or all of this material requires the prior written consent of 00016 * Nokia Corporation. This material also contains confidential 00017 * information which may not be disclosed to others without the 00018 * prior written consent of Nokia Corporation. 00019 * ============================================================================== 00020 */ 00021 00022 00023 #ifndef TEFENVIRONMENTALREVERB_H 00024 #define TEFENVIRONMENTALREVERB_H 00025 00026 // INCLUDES 00027 #include <e32std.h> 00028 #include <AudioEffectData.h> 00029 00030 // CLASS DECLARATION 00031 00039 class TEfEnvironmentalReverb : public TEfCommon 00040 { 00041 public: 00042 00046 TEfEnvironmentalReverb() {} 00047 00048 // Data 00049 // Reverb values of a Reverb object 00050 00051 TUint32 iDecayHFRatio; 00052 TUint32 iDecayHFRatioMin; 00053 TUint32 iDecayHFRatioMax; 00054 TUint32 iDecayTime; 00055 TUint32 iDecayTimeMin; 00056 TUint32 iDecayTimeMax; 00057 TUint32 iDensity; 00058 TUint32 iDiffusion; 00059 TInt32 iReflectionsLevel; 00060 TInt32 iReflectionLevelMin; 00061 TInt32 iReflectionLevelMax; 00062 TUint32 iReflectionsDelay; 00063 TUint32 iReflectionsDelayMax; 00064 TUint32 iReverbDelay; 00065 TUint32 iReverbDelayMax; 00066 TInt32 iReverbLevel; 00067 TInt32 iReverbLevelMin; 00068 TInt32 iReverbLevelMax; 00069 TInt32 iRoomHFLevel; 00070 TInt32 iRoomHFLevelMin; 00071 TInt32 iRoomHFLevelMax; 00072 TInt32 iRoomLevel; 00073 TInt32 iRoomLevelMin; 00074 TInt32 iRoomLevelMax; 00075 TUint32 iDelayMax; 00076 TUint32 iEnvironmentalReverbId; 00077 00078 }; 00079 00080 typedef TPckgBuf<TEfEnvironmentalReverb> TEfEnvReverbDataPckg; 00081 00082 // TEFENVIRONMENTALREVERB_H 00083 #endif 00084 00085 // End of File