Skip to content

DD_LIVE_AUDIO_GROUP

Structure Definition

1
2
3
4
5
6
typedef struct _dd_live_audio_group_
{
    unsigned short holdTime; 
    unsigned char volume;    
    unsigned char channel;   
} DD_LIVE_AUDIO_GROUP;
1
2
3
4
5
6
7
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct DD_LIVE_AUDIO_GROUP
{
    public UInt16 holdTime;
    public byte volume;
    public byte channel;
}

Function Description

Preview the audio group structure.

Member Description

Member Type Remark
holdTime unsigned short Dwell time (seconds), zero means invalid.
volume unsigned char Volume (0~100).
channel unsigned char Channel number.
Error Code