Struct SoundEffectInfo
Definition
- Namespace:
- Tizen.Multimedia
- Assembly:
- Tizen.Multimedia.dll
Represents the configuration and parameters for applying sound effects to audio processing. This structure allows you to specify the type of sound effect and, if necessary, a reference audio device to enhance the audio processing capabilities.
public struct SoundEffectInfo
Constructors
View SourceSoundEffectInfo(SoundEffectType, AudioDevice)
Initializes a new instance of the SoundEffectInfo structure with the specified sound effect type and a reference audio device. This allows for enhanced audio processing by using additional audio data from the specified device.
Declaration
public SoundEffectInfo(SoundEffectType type, AudioDevice device)
Parameters
Type | Name | Description |
---|---|---|
SoundEffectType | type | The SoundEffectType. |
AudioDevice | device | The AudioDevice to be refered. |
SoundEffectInfo(SoundEffectType)
Initializes a new instance of the SoundEffectInfo structure with the specified sound effect type. The reference device is set to null.
Declaration
public SoundEffectInfo(SoundEffectType type)
Parameters
Type | Name | Description |
---|---|---|
SoundEffectType | type | The SoundEffectType. |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | Invalid input enum type. |
Properties
View SourceReferenceDevice
Gets the reference audio device used by the sound effect as an additional source of audio data.
Declaration
public readonly AudioDevice ReferenceDevice { get; }
Property Value
Type | Description |
---|---|
AudioDevice |
Type
Gets the type of sound effect that will be applied, as specified in the SoundEffectType enum.
Declaration
public readonly SoundEffectType Type { get; }
Property Value
Type | Description |
---|---|
SoundEffectType |