chore: Update protos

This commit is contained in:
Luan
2025-07-24 10:00:27 -03:00
parent 34dc84f576
commit 059ce1cae8
33 changed files with 691 additions and 391 deletions

View File

@@ -1,6 +1,6 @@
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
// versions:
// protoc-gen-ts_proto v2.2.0
// protoc-gen-ts_proto v2.7.5
// protoc v5.28.0
// source: video_streaming/sabr_seek.proto
@@ -36,32 +36,35 @@ export const SabrSeek: MessageFns<SabrSeek> = {
decode(input: BinaryReader | Uint8Array, length?: number): SabrSeek {
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
let end = length === undefined ? reader.len : reader.pos + length;
const end = length === undefined ? reader.len : reader.pos + length;
const message = createBaseSabrSeek();
while (reader.pos < end) {
const tag = reader.uint32();
switch (tag >>> 3) {
case 1:
case 1: {
if (tag !== 8) {
break;
}
message.seekMediaTime = longToNumber(reader.int64());
continue;
case 2:
}
case 2: {
if (tag !== 16) {
break;
}
message.seekMediaTimescale = reader.int32();
continue;
case 3:
}
case 3: {
if (tag !== 24) {
break;
}
message.seekSource = reader.int32() as any;
continue;
}
}
if ((tag & 7) === 4 || tag === 0) {
break;