1
0
Fork 0
mirror of https://github.com/librespot-org/librespot.git synced 2025-10-04 02:09:26 +02:00
librespot/protocol/proto/state_restore/playback_state.proto
Felix Prillwitz 2a574267ae
Update protobuf files (#1424)
* update protobuf definitions

* add additionally required proto files

* update version.rs

* adjust code to protobuf changes

* fix formatting

* apply suggestions, improve errors
2024-12-24 09:39:49 +01:00

15 lines
371 B
Protocol Buffer

syntax = "proto2";
package spotify.player.proto.state_restore;
import "state_restore/playback_quality.proto";
message PlaybackState {
optional int64 timestamp = 1;
optional int32 position_as_of_timestamp = 2;
optional int32 duration = 3;
optional bool is_buffering = 4;
optional PlaybackQuality playback_quality = 5;
optional double playback_speed = 6;
}