From a7df333d82cb5385eb6d4015fb46ff977937370c Mon Sep 17 00:00:00 2001 From: Benjamin Klum Date: Wed, 8 May 2024 15:28:50 +0200 Subject: [PATCH] Proto schema update --- main/src/infrastructure/proto/generated.rs | 3 --- main/src/infrastructure/proto/playtime_ext.rs | 2 -- 2 files changed, 5 deletions(-) diff --git a/main/src/infrastructure/proto/generated.rs b/main/src/infrastructure/proto/generated.rs index 1f187e6fc..627610cea 100644 --- a/main/src/infrastructure/proto/generated.rs +++ b/main/src/infrastructure/proto/generated.rs @@ -1595,9 +1595,6 @@ pub struct ContinuousClipUpdate { /// Number between 0 and 1. #[prost(double, tag = "4")] pub peak: f64, - /// Total number of pre-buffer misses / audio dropouts (audio only). - #[prost(uint32, tag = "5")] - pub miss_count: u32, } #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] diff --git a/main/src/infrastructure/proto/playtime_ext.rs b/main/src/infrastructure/proto/playtime_ext.rs index b948ad724..991ad58d3 100644 --- a/main/src/infrastructure/proto/playtime_ext.rs +++ b/main/src/infrastructure/proto/playtime_ext.rs @@ -483,8 +483,6 @@ impl ContinuousClipUpdate { position_in_seconds: event.seconds.get(), source_position_in_frames: event.source_pos_in_frames, peak: event.peak.get(), - // TODO-high CONTINUE - miss_count: 0, } } }