remove u128 compare

This commit is contained in:
rustdesk
2022-12-26 17:44:29 +08:00
parent 633253647f
commit 0d0957cea5
6 changed files with 7 additions and 7 deletions

View File

@@ -123,7 +123,7 @@ pub struct PipeWireRecorder {
appsink: AppSink,
width: usize,
height: usize,
saved_raw_data: Vec<u128>, // for faster compare and copy
saved_raw_data: Vec<u8>, // for faster compare and copy
}
impl PipeWireRecorder {