-
Notifications
You must be signed in to change notification settings - Fork 361
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Kree0
authored and
Kree0
committed
Jul 4, 2024
1 parent
0246442
commit dfca186
Showing
5 changed files
with
432 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
use screencapturekit::sc_shareable_content::SCShareableContent; | ||
|
||
use std::vec::IntoIter as VecIntoIter; | ||
|
||
use crate::{BackendSpecificError, DevicesError, SupportedStreamConfigRange}; | ||
|
||
use super::Device; | ||
|
||
pub struct Devices(VecIntoIter<Device>); | ||
|
||
impl Devices { | ||
pub fn new() -> Result<Self, DevicesError> { | ||
let sc_shareable_content = SCShareableContent::try_current() | ||
.map_err(|description| BackendSpecificError { description })?; | ||
|
||
let mut res = Vec::new(); | ||
for display in sc_shareable_content.displays.into_iter() { | ||
res.push(Device::new(display)); | ||
} | ||
|
||
Ok(Devices(res.into_iter())) | ||
} | ||
} | ||
|
||
unsafe impl Send for Devices {} | ||
unsafe impl Sync for Devices {} | ||
|
||
impl Iterator for Devices { | ||
type Item = Device; | ||
|
||
fn next(&mut self) -> Option<Self::Item> { | ||
self.0.next() | ||
} | ||
} | ||
|
||
pub fn default_input_device() -> Option<Device> { | ||
let devices = Devices::new().ok()?; | ||
devices.into_iter().next() | ||
} | ||
|
||
pub fn default_output_device() -> Option<Device> { | ||
None | ||
} | ||
|
||
pub type SupportedInputConfigs = VecIntoIter<SupportedStreamConfigRange>; | ||
pub type SupportedOutputConfigs = VecIntoIter<SupportedStreamConfigRange>; |
Oops, something went wrong.