YEventAudioChange(3) Y Audio change event structures

STRUCTURES

typedef struct {


        Boolean preset;         /* Is preset if True. */


        /* If preset is True, these members are non-garbage. */

        char mode_name[YAudioNameMax];

        /* If preset is False, these members are non-garbage. */

        int sample_size;         /* In bits. */

        int channels;            /* Number of channels. */

        int sample_rate;         /* In Hz. */

        int direction;           /* 0 for play. */

        int allow_fragmenting;   /* True if fragmenting allowed. */

        int num_fragments;       /* Number of buffer fragments. */

        int fragment_size_bytes; /* In bytes. */

} YEventAudioChange;

When you receive this event it means that the Y server has changed its Audio values.

If the preset member is True then it means its changed to a preset audio mode in which case the mode_name member will be set to the null terminated string specifying the preset Audio mode name.

If the preset member is False then it means the other members specify the new Audio values.