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 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
    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
    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
    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
    public readonly SoundEffectType Type { get; }
    Property Value
    Type Description
    SoundEffectType
    • View Source
    Back to top Copyright © 2016-2024 Samsung
    Generated by DocFX