]> git.sesse.net Git - nageru/blobdiff - futatabi/state.proto
Log a warning when we kill a client that is not keeping up.
[nageru] / futatabi / state.proto
index d76bf02c6c66472a4f4d0b32727af1b46b98a00a..ea996b7655e8678cc241100d63435713e7002973 100644 (file)
@@ -7,6 +7,7 @@ message ClipProto {
        repeated string description = 3;
        int64 stream_idx = 4;
        double fade_time_seconds = 5;
+       double speed = 6;
 }
 
 message ClipListProto {
@@ -17,3 +18,9 @@ message StateProto {
        ClipListProto clip_list = 1;
        ClipListProto play_list = 2;
 }
+
+message SettingsProto {
+       int32 interpolation_quality = 1;  // 0 = unset, 1 = quality 0, 2 = quality 1, etc.
+       double cue_in_point_padding_seconds = 2;
+       double cue_out_point_padding_seconds = 3;
+}