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.

C#
Copy
public struct SoundEffectInfo

Constructors

View Source

SoundEffectInfo(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
C#
Copy
public SoundEffectInfo(SoundEffectType type, AudioDevice device)
Parameters
Type Name Description
SoundEffectType type

The SoundEffectType.

AudioDevice device

The AudioDevice to be refered.

View Source

SoundEffectInfo(SoundEffectType)

Initializes a new instance of the SoundEffectInfo structure with the specified sound effect type. The reference device is set to null.

Declaration
C#
Copy
public SoundEffectInfo(SoundEffectType type)
Parameters
Type Name Description
SoundEffectType type

The SoundEffectType.

Exceptions
Type Condition
System.ArgumentException

Invalid input enum type.

Properties

View Source

ReferenceDevice

Gets the reference audio device used by the sound effect as an additional source of audio data.

Declaration
C#
Copy
public readonly AudioDevice ReferenceDevice { get; }
Property Value
Type Description
AudioDevice
View Source

Type

Gets the type of sound effect that will be applied, as specified in the SoundEffectType enum.

Declaration
C#
Copy
public readonly SoundEffectType Type { get; }
Property Value
Type Description
SoundEffectType