forked from decarbonization/PlayerKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PKMatrixReverbEffect.h
32 lines (24 loc) · 946 Bytes
/
PKMatrixReverbEffect.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
* PKMatrixReverbEffect.h
* PlayerKit
*
* Created by Peter MacWhinnie on 1/12/11.
* Copyright 2011 __MyCompanyName__. All rights reserved.
*
*/
#ifndef PKMatrixReverbEffect_h
#define PKMatrixReverbEffect_h 1
#import <PlayerKit/PKAudioEffect.h>
///The opaque type used to represent PKMatrixReverbEffect. Typed alias for PKAudioEffectRef.
typedef PKAudioEffectRef PKMatrixReverbEffectRef;
#pragma mark -
#pragma mark Creation
///Create a Matrix Reverb effect.
PK_EXTERN PKMatrixReverbEffectRef PKMatrixReverbEffectCreate(CFErrorRef *outError);
#pragma mark -
#pragma mark Properties
///Sets the amount of reverb to apply.
PK_EXTERN Boolean PKMatrixReverbEffectSetAmount(PKMatrixReverbEffectRef effect, AudioUnitParameterValue value, CFErrorRef *outError);
///Gets the amount of reverb to apply.
PK_EXTERN AudioUnitParameterValue PKMatrixReverbEffectGetAmount(PKMatrixReverbEffectRef effect);
#endif /* PKMatrixReverbEffect_h */