diff --git a/protos/generated/video_streaming/client_abr_state.ts b/protos/generated/video_streaming/client_abr_state.ts index 818fb4c..307e8ac 100644 --- a/protos/generated/video_streaming/client_abr_state.ts +++ b/protos/generated/video_streaming/client_abr_state.ts @@ -48,6 +48,7 @@ export interface ClientAbrState { sabrForceProxima?: number | undefined; Tqb?: number | undefined; sabrForceMaxNetworkInterruptionDurationMs?: number | undefined; + audioTrackId?: string | undefined; } function createBaseClientAbrState(): ClientAbrState { @@ -90,6 +91,7 @@ function createBaseClientAbrState(): ClientAbrState { sabrForceProxima: 0, Tqb: 0, sabrForceMaxNetworkInterruptionDurationMs: 0, + audioTrackId: "", }; } @@ -214,6 +216,9 @@ export const ClientAbrState: MessageFns = { ) { writer.uint32(544).int64(message.sabrForceMaxNetworkInterruptionDurationMs); } + if (message.audioTrackId !== undefined && message.audioTrackId !== "") { + writer.uint32(554).string(message.audioTrackId); + } return writer; }, @@ -490,6 +495,13 @@ export const ClientAbrState: MessageFns = { message.sabrForceMaxNetworkInterruptionDurationMs = longToNumber(reader.int64()); continue; + case 69: + if (tag !== 554) { + break; + } + + message.audioTrackId = reader.string(); + continue; } if ((tag & 7) === 4 || tag === 0) { break; diff --git a/protos/video_streaming/client_abr_state.proto b/protos/video_streaming/client_abr_state.proto index d64306a..3793bb1 100644 --- a/protos/video_streaming/client_abr_state.proto +++ b/protos/video_streaming/client_abr_state.proto @@ -40,4 +40,5 @@ message ClientAbrState { optional int32 sabr_force_proxima = 66; optional int32 Tqb = 67; optional int64 sabr_force_max_network_interruption_duration_ms = 68; + optional string audio_track_id = 69; } \ No newline at end of file