mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2026-09-12 10:34:24 +08:00
- 统一使用 QUERY_DV_TIMINGS 判断 HDMI RX 输入状态 - 增加 source-following 设备状态 API 与前端只读展示 - 支持长时间无信号后的 MJPEG/WebRTC 自动恢复 - 修复模式切换时采集设备尚未释放导致的 EBUSY - 取消陈旧 WebRTC 重连并统一采集恢复策略 - 移除视频输入状态区域的冗余标题
10 lines
237 B
Rust
10 lines
237 B
Rust
//! Video processing pipelines.
|
|
|
|
mod encoder_state;
|
|
mod shared;
|
|
|
|
pub use shared::{
|
|
EncodedVideoFrame, PipelineAppliedConfig, PipelineStateNotification, SharedVideoPipeline,
|
|
SharedVideoPipelineConfig, SharedVideoPipelineStats,
|
|
};
|