1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
//! An event related on an audio device.

use crate::{bind, EnumInt};

/// An event occurs on an audio device was added/removed.
#[derive(Debug, Clone)]
#[non_exhaustive]
pub enum AudioDeviceEvent {
    /// An event when an audio device was added.
    Added {
        /// When this event occurred.
        timestamp: u32,
        /// The id of an added audio device.
        device_id: u32,
        /// Whether it is an audio device to record.
        is_microphone: bool,
    },
    /// An event when an audio device was removed.
    Removed {
        /// When this event occurred.
        timestamp: u32,
        /// The id of a removed audio device.
        device_id: u32,
        /// Whether it is an audio device to record.
        is_microphone: bool,
    },
}

impl From<bind::SDL_AudioDeviceEvent> for AudioDeviceEvent {
    fn from(raw: bind::SDL_AudioDeviceEvent) -> Self {
        match raw.type_ as EnumInt {
            bind::SDL_AUDIODEVICEADDED => AudioDeviceEvent::Added {
                timestamp: raw.timestamp,
                device_id: raw.which,
                is_microphone: raw.iscapture != 0,
            },
            bind::SDL_AUDIODEVICEREMOVED => AudioDeviceEvent::Removed {
                timestamp: raw.timestamp,
                device_id: raw.which,
                is_microphone: raw.iscapture != 0,
            },
            _ => unreachable!(),
        }
    }
}