mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2026-01-28 16:41:52 +08:00
feat(video): 事务化切换与前端统一编排,增强视频输入格式支持
- 后端:切换事务+transition_id,/stream/mode 返回 switching/transition_id 与实际 codec - 事件:新增 mode_switching/mode_ready,config/webrtc_ready/mode_changed 关联事务 - 编码/格式:扩展 NV21/NV16/NV24/RGB/BGR 输入与转换链路,RKMPP direct input 优化 - 前端:useVideoSession 统一切换,失败回退真实切回 MJPEG,菜单格式同步修复 - 清理:useVideoStream 降级为 MJPEG-only
This commit is contained in:
@@ -93,7 +93,7 @@ pub fn to_uppercase_simple(ch: u16) -> u16 {
|
||||
// Greek lowercase (α-ω and variants)
|
||||
0x03B1..=0x03C1 => ch - 32, // α-ρ -> Α-Ρ
|
||||
0x03C3..=0x03C9 => ch - 32, // σ-ω -> Σ-Ω
|
||||
0x03C2 => 0x03A3, // ς (final sigma) -> Σ
|
||||
0x03C2 => 0x03A3, // ς (final sigma) -> Σ
|
||||
|
||||
// Cyrillic lowercase (а-я)
|
||||
0x0430..=0x044F => ch - 32, // а-я -> А-Я
|
||||
|
||||
Reference in New Issue
Block a user