00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef DOPPLERDATA_H
00024 #define DOPPLERDATA_H
00025
00026
00027 #include <e32std.h>
00028 #include <AudioEffectData.h>
00029
00030
00031
00042 class TEfDoppler : public TEfCommon
00043 {
00044 public:
00045
00049 TEfDoppler() {}
00050
00054 TEfDoppler( TInt32 aVelocityX, TInt32 aVelocityY, TInt32 aVelocityZ, TInt32 aAzimuth,
00055 TInt32 aElevation, TInt32 aRadius, TUint32 aFactor, TUint32 aMaxFactor ) :
00056 iVelocityX(aVelocityX), iVelocityY(aVelocityY), iVelocityZ(aVelocityZ),
00057 iAzimuth(aAzimuth), iElevation(aElevation), iRadius(aRadius), iFactor(aFactor),
00058 iMaxFactor(aMaxFactor) {}
00059
00060 TInt32 iVelocityX;
00061 TInt32 iVelocityY;
00062 TInt32 iVelocityZ;
00063 TInt32 iAzimuth;
00064 TInt32 iElevation;
00065 TInt32 iRadius;
00066 TUint32 iFactor;
00067 TUint32 iMaxFactor;
00068
00069 };
00070
00071 typedef TPckgBuf<TEfDoppler> TEfDopplerDataPckg;
00072
00073
00074 #endif
00075
00076