screencapturekit 1.5.4

Safe Rust bindings for Apple's ScreenCaptureKit framework - screen and audio capture on macOS
Documentation
//! Stream identification and HDR configuration
//!
//! This module provides methods to configure stream identification and HDR capture settings.

use super::internal::SCStreamConfiguration;
use crate::utils::ffi_string::{ffi_string_from_buffer, SMALL_BUFFER_SIZE};

/// Dynamic range mode for capture (macOS 15.0+)
#[repr(i32)]
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Default)]
pub enum SCCaptureDynamicRange {
    /// Standard Dynamic Range (SDR) - default mode
    #[default]
    SDR = 0,
    /// HDR with local display tone mapping
    HDRLocalDisplay = 1,
    /// HDR with canonical display tone mapping
    HDRCanonicalDisplay = 2,
}

impl SCStreamConfiguration {
    /// Set the stream name for identification
    ///
    /// Assigns a name to the stream that can be used for debugging and identification
    /// purposes. The name appears in system logs and debugging tools.
    ///
    /// # Examples
    ///
    /// ```rust,no_run
    /// use screencapturekit::prelude::*;
    ///
    /// let config = SCStreamConfiguration::new()
    ///     .with_stream_name(Some("MyApp-MainCapture"));
    /// ```
    pub fn set_stream_name(&mut self, name: Option<&str>) -> &mut Self {
        unsafe {
            if let Some(stream_name) = name {
                if let Ok(c_name) = std::ffi::CString::new(stream_name) {
                    crate::ffi::sc_stream_configuration_set_stream_name(
                        self.as_ptr(),
                        c_name.as_ptr(),
                    );
                }
            } else {
                crate::ffi::sc_stream_configuration_set_stream_name(
                    self.as_ptr(),
                    std::ptr::null(),
                );
            }
        }
        self
    }

    /// Set the stream name (builder pattern)
    #[must_use]
    pub fn with_stream_name(mut self, name: Option<&str>) -> Self {
        self.set_stream_name(name);
        self
    }

    /// Get the configured stream name
    ///
    /// Returns the name assigned to this stream, if any.
    pub fn stream_name(&self) -> Option<String> {
        unsafe {
            ffi_string_from_buffer(SMALL_BUFFER_SIZE, |buf, len| {
                crate::ffi::sc_stream_configuration_get_stream_name(self.as_ptr(), buf, len)
            })
        }
    }

    /// Set the dynamic range mode for capture (macOS 15.0+)
    ///
    /// Controls whether to capture in SDR or HDR mode and how HDR content
    /// should be tone-mapped for display.
    ///
    /// # Availability
    /// macOS 15.0+. Requires the `macos_15_0` feature flag to be enabled.
    ///
    /// # Modes
    /// - `SDR`: Standard dynamic range capture (default)
    /// - `HDRLocalDisplay`: HDR with tone mapping optimized for the local display
    /// - `HDRCanonicalDisplay`: HDR with canonical tone mapping for portability
    ///
    /// # Examples
    ///
    /// ```rust,no_run
    /// use screencapturekit::prelude::*;
    /// use screencapturekit::stream::configuration::stream_properties::SCCaptureDynamicRange;
    ///
    /// let config = SCStreamConfiguration::new()
    ///     .with_width(1920)
    ///     .with_height(1080)
    ///     .with_capture_dynamic_range(SCCaptureDynamicRange::HDRLocalDisplay);
    /// ```
    #[cfg(feature = "macos_15_0")]
    pub fn set_capture_dynamic_range(&mut self, dynamic_range: SCCaptureDynamicRange) -> &mut Self {
        unsafe {
            crate::ffi::sc_stream_configuration_set_capture_dynamic_range(
                self.as_ptr(),
                dynamic_range as i32,
            );
        }
        self
    }

    /// Set the dynamic range mode (builder pattern)
    #[cfg(feature = "macos_15_0")]
    #[must_use]
    pub fn with_capture_dynamic_range(mut self, dynamic_range: SCCaptureDynamicRange) -> Self {
        self.set_capture_dynamic_range(dynamic_range);
        self
    }

    /// Get the configured dynamic range mode (macOS 15.0+)
    ///
    /// Returns the current HDR capture mode setting.
    ///
    /// Requires the `macos_15_0` feature flag to be enabled.
    #[cfg(feature = "macos_15_0")]
    pub fn capture_dynamic_range(&self) -> SCCaptureDynamicRange {
        let value =
            unsafe { crate::ffi::sc_stream_configuration_get_capture_dynamic_range(self.as_ptr()) };
        match value {
            1 => SCCaptureDynamicRange::HDRLocalDisplay,
            2 => SCCaptureDynamicRange::HDRCanonicalDisplay,
            _ => SCCaptureDynamicRange::SDR,
        }
    }
}