00001 /* 00002 * ============================================================================== 00003 * Name : StereoWideningData.h 00004 * Part of : Effects Framework 00005 * Interface : Audio Effects 00006 * Description : This file contains definitions of audio effects data structures for 00007 * stereo widening. 00008 * Version : 0.3 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 TEFSTEREOWIDENINGDATA_H 00024 #define TEFSTEREOWIDENINGDATA_H 00025 00026 // INCLUDES 00027 #include <e32std.h> 00028 #include <AudioEffectData.h> 00029 // CLASS DECLARATION 00030 00038 class TEfStereoWidening : public TEfCommon 00039 { 00040 public: 00041 00045 TEfStereoWidening() {} 00046 00050 TEfStereoWidening( TUint8 aLevel, TBool aContinuousLevelSupported ) : 00051 iLevel(aLevel), iContinuousLevelSupported(aContinuousLevelSupported) {} 00052 00053 // Data 00054 // Stereo widening level 00055 TUint8 iLevel; 00056 TBool iContinuousLevelSupported; 00057 }; 00058 00059 typedef TPckgBuf<TEfStereoWidening> TEfStereoWideningDataPckg; 00060 00061 // TEFSTEREOWIDENINGDATA_H 00062 #endif 00063 00064 // End of File