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

@@ -8,7 +8,7 @@ pub struct Capturer {
frame: Arc<Mutex<Option<quartz::Frame>>>,
use_yuv: bool,
i420: Vec<u8>,
saved_raw_data: Vec<u128>, // for faster compare and copy
saved_raw_data: Vec<u8>, // for faster compare and copy
}
impl Capturer {