AuElementNotifyEvent - element notify event structure
#include <audio/audiolib.h>
typedef union _AuEvent
{
. . .
AuElementNotifyEvent auelementnotify;
. . .
}AuEvent;
typedef struct _AuElementNotifyEvent
{
int type;
AuUint32 serial;
AuBool send_event;
AuServer *server;
AuTime time;
AuFlowID flow;
unsigned char element_num;
unsigned char kind;
unsigned char prev_state;
unsigned char cur_state;
unsigned char reason;
AuUint32 num_bytes;
}AuElementNotifyEvent;
send_event
AuTrue if the event came from a SendEvent protocol
request.
element_num
The index of the element that caused the event
or AuElementAll to indicate the flow.
AuElementNotifyKindHighWater, or AuElementNotifyKindState.
prev_state
The previous state of the element indexed by
element_num. This will be one of these constants:
AuStateStop, AuStateStart, or AuStatePause.
cur_state The current state of the element indexed by ele_ment_num. This will be one of these constants: AuStateStop, AuStateStart, or AuStatePause.
num_bytes The number of bytes to send or receive. Only valid if the the element indexed by element_num is an ImportClient or ExportClient.
ElementNotify events are sent to client applications to notify them of a watermark condition or state change. If kind is AuElementNotifyKindLowWater, the ImportClient element indexed by element_num in flow is ready to receive num_bytes of audio data from the client application. If kind is AuElementNotifyKindHighWater, the ExportClient element indexed by element_num in flow is ready to send num_bytes of audio data to the client application. If kind is AuElementNotifyKindState, the element indexed by element_num (or flow if element_num is AuElementAll) has made a state transition from prev_state to cur_state triggering the event. Reguardless of kind, prev_state and cur_state contain the old and new states and reason contains the reason for the event.
AuAnyEvent, AuErrorEvent, AuGrabNotifyEvent, AuMakeSendNotifyAction, AuMonitorNotifyEvent.
audiolib - Network Audio System C Language Interface