os/mm/mm_pub/audio_effects_api/inc/MEnvironmentalReverbObserver.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2004 Nokia Corporation and/or its subsidiary(-ies). 
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     5 * under the terms of "Eclipse Public License v1.0"
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description:  This is the definition of the reverb effect observer class.
    15 *
    16 *
    17 */
    18 
    19 
    20 #ifndef MENVIRONMENTALREVERBOBSERVER_H
    21 #define MENVIRONMENTALREVERBOBSERVER_H
    22 
    23 // INCLUDES
    24 
    25 #include <e32base.h>
    26 #include <EnvironmentalReverbBase.h>
    27 #include <MAudioEffectObserver.h>
    28 
    29 
    30 // CLASS DECLARATION
    31 
    32 /**
    33 *  This is the reverb effect observer class. Object interested in receiving notification
    34 *  when the CEnvironmentalReverb object changes state should derive from this class and implement
    35 *  its interface.
    36 *
    37 *  @since 3.0
    38 */
    39 
    40 class MEnvironmentalReverbObserver : public MAudioEffectObserver
    41 	{
    42 	public:
    43 		static const TUint KDecayTimeChanged = KSpecificEffectBase + 1;
    44 		static const TUint KDecayHFRatioChanged = KSpecificEffectBase + 2;
    45 		static const TUint KDensityChanged = KSpecificEffectBase + 3;
    46 		static const TUint KDiffusionChanged = KSpecificEffectBase + 4;
    47 		static const TUint KReflectionsDelayChanged = KSpecificEffectBase + 5;
    48 		static const TUint KReflectionsLevelChanged = KSpecificEffectBase + 6;
    49 		static const TUint KReverbDelayChanged = KSpecificEffectBase + 7;
    50 		static const TUint KReverbLevelChanged = KSpecificEffectBase + 8;
    51 		static const TUint KRoomLevelChanged = KSpecificEffectBase + 9;
    52 		static const TUint KRoomHFLevelChanged = KSpecificEffectBase + 10;
    53 	};
    54 
    55 #endif	// of MENVIRONMENTALREVERBOBSERVER_H
    56 
    57 // End of File