mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-18 17:11:53 +00:00
18 lines
422 B
Protocol Buffer
18 lines
422 B
Protocol Buffer
// Extracted from: Spotify 1.2.52.442 (windows)
|
|
|
|
syntax = "proto3";
|
|
|
|
package spotify.netfortune.proto;
|
|
|
|
option optimize_for = CODE_SIZE;
|
|
|
|
message NetFortuneResponse {
|
|
int32 advised_audio_bitrate = 1;
|
|
}
|
|
|
|
message NetFortuneV2Response {
|
|
string predict_id = 1;
|
|
int32 estimated_max_bitrate = 2;
|
|
optional int32 advised_prefetch_bitrate_metered = 3;
|
|
optional int32 advised_prefetch_bitrate_non_metered = 4;
|
|
}
|