mirror of
https://github.com/librespot-org/librespot.git
synced 2025-10-06 03:50:06 +02:00
Update protobufs to 1.1.73.517
This commit is contained in:
parent
4f51c1e810
commit
40163754bb
200 changed files with 3016 additions and 978 deletions
27
protocol/proto/state_restore/mod_rules_interruptions.proto
Normal file
27
protocol/proto/state_restore/mod_rules_interruptions.proto
Normal file
|
@ -0,0 +1,27 @@
|
|||
// Extracted from: Spotify 1.1.73.517 (macOS)
|
||||
|
||||
syntax = "proto2";
|
||||
|
||||
package spotify.player.proto.state_restore;
|
||||
|
||||
import "player_license.proto";
|
||||
import "state_restore/provided_track.proto";
|
||||
|
||||
option optimize_for = CODE_SIZE;
|
||||
|
||||
message ModRulesInterruptions {
|
||||
optional ProvidedTrack seek_repeat_track = 1;
|
||||
required uint32 prng_seed = 2;
|
||||
required bool support_video = 3;
|
||||
required bool is_active_action = 4;
|
||||
required bool is_in_seek_repeat = 5;
|
||||
required bool has_tp_api_restrictions = 6;
|
||||
required InterruptionSource interruption_source = 7;
|
||||
required PlayerLicense license = 8;
|
||||
}
|
||||
|
||||
enum InterruptionSource {
|
||||
Context_IS = 1;
|
||||
SAS = 2;
|
||||
NoInterruptions = 3;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue