@norskvideo/norsk-api 1.0.334 → 1.0.335

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/media_pb.d.ts CHANGED
@@ -1756,6 +1756,62 @@ export declare class Context extends Message<Context> {
1756
1756
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Context;
1757
1757
  static equals(a: Context | PlainMessage<Context> | undefined, b: Context | PlainMessage<Context> | undefined): boolean;
1758
1758
  }
1759
+ /**
1760
+ * *
1761
+ * The MultipleContext message is sent from Norsk in response to a
1762
+ * change to either the Media Node's inbound set of streams for
1763
+ * certain nodes that are permitted non-disjoint context keys
1764
+ * .
1765
+ * Once received, your code **must** acknowledge the context change
1766
+ * with a call to `Media.UnblockCall`,
1767
+ * passing in the `blockingCallRef`; note that if using the
1768
+ * JavaScript SDK then this is automatically handled.
1769
+ *
1770
+ * @generated from message norsk.api.media.MultipleContext
1771
+ */
1772
+ export declare class MultipleContext extends Message<MultipleContext> {
1773
+ /**
1774
+ * @generated from field: repeated norsk.api.media.TaggedContext contexts = 1;
1775
+ */
1776
+ contexts: TaggedContext[];
1777
+ /**
1778
+ * The reference for acknowledging the context change
1779
+ *
1780
+ * @generated from field: string blocking_call_ref = 2;
1781
+ */
1782
+ blockingCallRef: string;
1783
+ constructor(data?: PartialMessage<MultipleContext>);
1784
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
1785
+ static readonly typeName = "norsk.api.media.MultipleContext";
1786
+ static readonly fields: FieldList;
1787
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MultipleContext;
1788
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): MultipleContext;
1789
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MultipleContext;
1790
+ static equals(a: MultipleContext | PlainMessage<MultipleContext> | undefined, b: MultipleContext | PlainMessage<MultipleContext> | undefined): boolean;
1791
+ }
1792
+ /**
1793
+ * @generated from message norsk.api.media.TaggedContext
1794
+ */
1795
+ export declare class TaggedContext extends Message<TaggedContext> {
1796
+ /**
1797
+ * The set of streams
1798
+ *
1799
+ * @generated from field: repeated norsk.api.media.StreamMetadata streams = 1;
1800
+ */
1801
+ streams: StreamMetadata[];
1802
+ /**
1803
+ * @generated from field: norsk.api.media.InputPin pin = 2;
1804
+ */
1805
+ pin?: InputPin;
1806
+ constructor(data?: PartialMessage<TaggedContext>);
1807
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
1808
+ static readonly typeName = "norsk.api.media.TaggedContext";
1809
+ static readonly fields: FieldList;
1810
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): TaggedContext;
1811
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): TaggedContext;
1812
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): TaggedContext;
1813
+ static equals(a: TaggedContext | PlainMessage<TaggedContext> | undefined, b: TaggedContext | PlainMessage<TaggedContext> | undefined): boolean;
1814
+ }
1759
1815
  /**
1760
1816
  * @generated from message norsk.api.media.BlockingCallRef
1761
1817
  */
@@ -2670,6 +2726,12 @@ export declare class FileTsInputConfiguration extends Message<FileTsInputConfigu
2670
2726
  * @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 4;
2671
2727
  */
2672
2728
  statsSampling?: StreamStatisticsSampling;
2729
+ /**
2730
+ * Loop back to play the start after reaching the end of the file
2731
+ *
2732
+ * @generated from field: bool loop = 5;
2733
+ */
2734
+ loop: boolean;
2673
2735
  constructor(data?: PartialMessage<FileTsInputConfiguration>);
2674
2736
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
2675
2737
  static readonly typeName = "norsk.api.media.FileTsInputConfiguration";
@@ -3687,6 +3749,12 @@ export declare class FileMp4InputConfiguration extends Message<FileMp4InputConfi
3687
3749
  * @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 4;
3688
3750
  */
3689
3751
  statsSampling?: StreamStatisticsSampling;
3752
+ /**
3753
+ * Loop back to play the start after reaching the end of the file
3754
+ *
3755
+ * @generated from field: bool loop = 5;
3756
+ */
3757
+ loop: boolean;
3690
3758
  constructor(data?: PartialMessage<FileMp4InputConfiguration>);
3691
3759
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
3692
3760
  static readonly typeName = "norsk.api.media.FileMp4InputConfiguration";
@@ -4211,6 +4279,52 @@ export declare class BrowserInputEvent extends Message<BrowserInputEvent> {
4211
4279
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): BrowserInputEvent;
4212
4280
  static equals(a: BrowserInputEvent | PlainMessage<BrowserInputEvent> | undefined, b: BrowserInputEvent | PlainMessage<BrowserInputEvent> | undefined): boolean;
4213
4281
  }
4282
+ /**
4283
+ * @generated from message norsk.api.media.WebRtcIceServerConfiguration
4284
+ */
4285
+ export declare class WebRtcIceServerConfiguration extends Message<WebRtcIceServerConfiguration> {
4286
+ /**
4287
+ * @generated from field: repeated norsk.api.media.WebRtcIceServer servers = 1;
4288
+ */
4289
+ servers: WebRtcIceServer[];
4290
+ constructor(data?: PartialMessage<WebRtcIceServerConfiguration>);
4291
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
4292
+ static readonly typeName = "norsk.api.media.WebRtcIceServerConfiguration";
4293
+ static readonly fields: FieldList;
4294
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): WebRtcIceServerConfiguration;
4295
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): WebRtcIceServerConfiguration;
4296
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WebRtcIceServerConfiguration;
4297
+ static equals(a: WebRtcIceServerConfiguration | PlainMessage<WebRtcIceServerConfiguration> | undefined, b: WebRtcIceServerConfiguration | PlainMessage<WebRtcIceServerConfiguration> | undefined): boolean;
4298
+ }
4299
+ /**
4300
+ * @generated from message norsk.api.media.WebRtcIceServer
4301
+ */
4302
+ export declare class WebRtcIceServer extends Message<WebRtcIceServer> {
4303
+ /**
4304
+ * @generated from field: repeated string urls = 1;
4305
+ */
4306
+ urls: string[];
4307
+ /**
4308
+ * The username to use when logging into a TURN server. Ignored otherwise.
4309
+ *
4310
+ * @generated from field: string username = 2;
4311
+ */
4312
+ username: string;
4313
+ /**
4314
+ * The username to use when logging into a TURN server. Ignored otherwise.
4315
+ *
4316
+ * @generated from field: string credential = 3;
4317
+ */
4318
+ credential: string;
4319
+ constructor(data?: PartialMessage<WebRtcIceServer>);
4320
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
4321
+ static readonly typeName = "norsk.api.media.WebRtcIceServer";
4322
+ static readonly fields: FieldList;
4323
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): WebRtcIceServer;
4324
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): WebRtcIceServer;
4325
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WebRtcIceServer;
4326
+ static equals(a: WebRtcIceServer | PlainMessage<WebRtcIceServer> | undefined, b: WebRtcIceServer | PlainMessage<WebRtcIceServer> | undefined): boolean;
4327
+ }
4214
4328
  /**
4215
4329
  * @generated from message norsk.api.media.WhipInputConfiguration
4216
4330
  */
@@ -4227,6 +4341,12 @@ export declare class WhipInputConfiguration extends Message<WhipInputConfigurati
4227
4341
  * @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 3;
4228
4342
  */
4229
4343
  statsSampling?: StreamStatisticsSampling;
4344
+ /**
4345
+ * Optionally configure ICE servers (STUN/TURN)
4346
+ *
4347
+ * @generated from field: norsk.api.media.WebRtcIceServerConfiguration ice_server_configuration = 4;
4348
+ */
4349
+ iceServerConfiguration?: WebRtcIceServerConfiguration;
4230
4350
  constructor(data?: PartialMessage<WhipInputConfiguration>);
4231
4351
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
4232
4352
  static readonly typeName = "norsk.api.media.WhipInputConfiguration";
@@ -5502,6 +5622,14 @@ export declare class Mp4Encryption extends Message<Mp4Encryption> {
5502
5622
  * @generated from field: string encryption_key = 2;
5503
5623
  */
5504
5624
  encryptionKey: string;
5625
+ /**
5626
+ * @generated from field: string encryption_pssh = 3;
5627
+ */
5628
+ encryptionPssh: string;
5629
+ /**
5630
+ * @generated from field: norsk.api.media.Mp4Encryption.Mp4EncryptionScheme encryption_scheme = 4;
5631
+ */
5632
+ encryptionScheme: Mp4Encryption_Mp4EncryptionScheme;
5505
5633
  constructor(data?: PartialMessage<Mp4Encryption>);
5506
5634
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
5507
5635
  static readonly typeName = "norsk.api.media.Mp4Encryption";
@@ -5511,6 +5639,19 @@ export declare class Mp4Encryption extends Message<Mp4Encryption> {
5511
5639
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Mp4Encryption;
5512
5640
  static equals(a: Mp4Encryption | PlainMessage<Mp4Encryption> | undefined, b: Mp4Encryption | PlainMessage<Mp4Encryption> | undefined): boolean;
5513
5641
  }
5642
+ /**
5643
+ * @generated from enum norsk.api.media.Mp4Encryption.Mp4EncryptionScheme
5644
+ */
5645
+ export declare enum Mp4Encryption_Mp4EncryptionScheme {
5646
+ /**
5647
+ * @generated from enum value: MP4_ENCRYPTION_SCHEME_CBCS = 0;
5648
+ */
5649
+ CBCS = 0,
5650
+ /**
5651
+ * @generated from enum value: MP4_ENCRYPTION_SCHEME_CENC = 1;
5652
+ */
5653
+ CENC = 1
5654
+ }
5514
5655
  /**
5515
5656
  * @generated from message norsk.api.media.AwsS3PushDestination
5516
5657
  */
@@ -6594,6 +6735,50 @@ export declare class WhipOutputMessage extends Message<WhipOutputMessage> {
6594
6735
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WhipOutputMessage;
6595
6736
  static equals(a: WhipOutputMessage | PlainMessage<WhipOutputMessage> | undefined, b: WhipOutputMessage | PlainMessage<WhipOutputMessage> | undefined): boolean;
6596
6737
  }
6738
+ /**
6739
+ * @generated from message norsk.api.media.WhipOutputEvent
6740
+ */
6741
+ export declare class WhipOutputEvent extends Message<WhipOutputEvent> {
6742
+ /**
6743
+ * @generated from oneof norsk.api.media.WhipOutputEvent.message
6744
+ */
6745
+ message: {
6746
+ /**
6747
+ * @generated from field: norsk.api.media.MediaNodeId node_id = 1;
6748
+ */
6749
+ value: MediaNodeId;
6750
+ case: "nodeId";
6751
+ } | {
6752
+ /**
6753
+ * @generated from field: norsk.api.media.SubscriptionResponse subscription_response = 2;
6754
+ */
6755
+ value: SubscriptionResponse;
6756
+ case: "subscriptionResponse";
6757
+ } | {
6758
+ /**
6759
+ * @generated from field: norsk.api.media.Context inbound_context = 3;
6760
+ */
6761
+ value: Context;
6762
+ case: "inboundContext";
6763
+ } | {
6764
+ /**
6765
+ * @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 4;
6766
+ */
6767
+ value: MultiStreamStatistics;
6768
+ case: "streamStatistics";
6769
+ } | {
6770
+ case: undefined;
6771
+ value?: undefined;
6772
+ };
6773
+ constructor(data?: PartialMessage<WhipOutputEvent>);
6774
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6775
+ static readonly typeName = "norsk.api.media.WhipOutputEvent";
6776
+ static readonly fields: FieldList;
6777
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): WhipOutputEvent;
6778
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): WhipOutputEvent;
6779
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WhipOutputEvent;
6780
+ static equals(a: WhipOutputEvent | PlainMessage<WhipOutputEvent> | undefined, b: WhipOutputEvent | PlainMessage<WhipOutputEvent> | undefined): boolean;
6781
+ }
6597
6782
  /**
6598
6783
  * @generated from message norsk.api.media.WebRTCBrowserDuplexConfiguration
6599
6784
  */
@@ -6606,6 +6791,12 @@ export declare class WebRTCBrowserDuplexConfiguration extends Message<WebRTCBrow
6606
6791
  * @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 2;
6607
6792
  */
6608
6793
  statsSampling?: StreamStatisticsSampling;
6794
+ /**
6795
+ * Optionally configure ICE servers (STUN/TURN)
6796
+ *
6797
+ * @generated from field: norsk.api.media.WebRtcIceServerConfiguration ice_server_configuration = 3;
6798
+ */
6799
+ iceServerConfiguration?: WebRtcIceServerConfiguration;
6609
6800
  constructor(data?: PartialMessage<WebRTCBrowserDuplexConfiguration>);
6610
6801
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6611
6802
  static readonly typeName = "norsk.api.media.WebRTCBrowserDuplexConfiguration";
@@ -6648,11 +6839,11 @@ export declare class WebRTCBrowserDuplexMessage extends Message<WebRTCBrowserDup
6648
6839
  static equals(a: WebRTCBrowserDuplexMessage | PlainMessage<WebRTCBrowserDuplexMessage> | undefined, b: WebRTCBrowserDuplexMessage | PlainMessage<WebRTCBrowserDuplexMessage> | undefined): boolean;
6649
6840
  }
6650
6841
  /**
6651
- * @generated from message norsk.api.media.WhipOutputEvent
6842
+ * @generated from message norsk.api.media.WebRTCBrowserDuplexEvent
6652
6843
  */
6653
- export declare class WhipOutputEvent extends Message<WhipOutputEvent> {
6844
+ export declare class WebRTCBrowserDuplexEvent extends Message<WebRTCBrowserDuplexEvent> {
6654
6845
  /**
6655
- * @generated from oneof norsk.api.media.WhipOutputEvent.message
6846
+ * @generated from oneof norsk.api.media.WebRTCBrowserDuplexEvent.message
6656
6847
  */
6657
6848
  message: {
6658
6849
  /**
@@ -6674,7 +6865,13 @@ export declare class WhipOutputEvent extends Message<WhipOutputEvent> {
6674
6865
  case: "inboundContext";
6675
6866
  } | {
6676
6867
  /**
6677
- * @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 4;
6868
+ * @generated from field: norsk.api.media.Context outbound_context = 4;
6869
+ */
6870
+ value: Context;
6871
+ case: "outboundContext";
6872
+ } | {
6873
+ /**
6874
+ * @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 5;
6678
6875
  */
6679
6876
  value: MultiStreamStatistics;
6680
6877
  case: "streamStatistics";
@@ -6682,21 +6879,80 @@ export declare class WhipOutputEvent extends Message<WhipOutputEvent> {
6682
6879
  case: undefined;
6683
6880
  value?: undefined;
6684
6881
  };
6685
- constructor(data?: PartialMessage<WhipOutputEvent>);
6882
+ constructor(data?: PartialMessage<WebRTCBrowserDuplexEvent>);
6686
6883
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6687
- static readonly typeName = "norsk.api.media.WhipOutputEvent";
6884
+ static readonly typeName = "norsk.api.media.WebRTCBrowserDuplexEvent";
6688
6885
  static readonly fields: FieldList;
6689
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): WhipOutputEvent;
6690
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): WhipOutputEvent;
6691
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WhipOutputEvent;
6692
- static equals(a: WhipOutputEvent | PlainMessage<WhipOutputEvent> | undefined, b: WhipOutputEvent | PlainMessage<WhipOutputEvent> | undefined): boolean;
6886
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): WebRTCBrowserDuplexEvent;
6887
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): WebRTCBrowserDuplexEvent;
6888
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WebRTCBrowserDuplexEvent;
6889
+ static equals(a: WebRTCBrowserDuplexEvent | PlainMessage<WebRTCBrowserDuplexEvent> | undefined, b: WebRTCBrowserDuplexEvent | PlainMessage<WebRTCBrowserDuplexEvent> | undefined): boolean;
6693
6890
  }
6694
6891
  /**
6695
- * @generated from message norsk.api.media.WebRTCBrowserDuplexEvent
6892
+ * @generated from message norsk.api.media.WhepOutputConfiguration
6696
6893
  */
6697
- export declare class WebRTCBrowserDuplexEvent extends Message<WebRTCBrowserDuplexEvent> {
6894
+ export declare class WhepOutputConfiguration extends Message<WhepOutputConfiguration> {
6698
6895
  /**
6699
- * @generated from oneof norsk.api.media.WebRTCBrowserDuplexEvent.message
6896
+ * @generated from field: norsk.api.media.MediaNodeId id = 1;
6897
+ */
6898
+ id?: MediaNodeId;
6899
+ /**
6900
+ * @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 2;
6901
+ */
6902
+ statsSampling?: StreamStatisticsSampling;
6903
+ /**
6904
+ * Optionally configure ICE servers (STUN/TURN)
6905
+ *
6906
+ * @generated from field: norsk.api.media.WebRtcIceServerConfiguration ice_server_configuration = 3;
6907
+ */
6908
+ iceServerConfiguration?: WebRtcIceServerConfiguration;
6909
+ constructor(data?: PartialMessage<WhepOutputConfiguration>);
6910
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6911
+ static readonly typeName = "norsk.api.media.WhepOutputConfiguration";
6912
+ static readonly fields: FieldList;
6913
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): WhepOutputConfiguration;
6914
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): WhepOutputConfiguration;
6915
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WhepOutputConfiguration;
6916
+ static equals(a: WhepOutputConfiguration | PlainMessage<WhepOutputConfiguration> | undefined, b: WhepOutputConfiguration | PlainMessage<WhepOutputConfiguration> | undefined): boolean;
6917
+ }
6918
+ /**
6919
+ * @generated from message norsk.api.media.WhepOutputMessage
6920
+ */
6921
+ export declare class WhepOutputMessage extends Message<WhepOutputMessage> {
6922
+ /**
6923
+ * @generated from oneof norsk.api.media.WhepOutputMessage.message
6924
+ */
6925
+ message: {
6926
+ /**
6927
+ * @generated from field: norsk.api.media.Subscription subscription = 1;
6928
+ */
6929
+ value: Subscription;
6930
+ case: "subscription";
6931
+ } | {
6932
+ /**
6933
+ * @generated from field: norsk.api.media.WhepOutputConfiguration configuration = 2;
6934
+ */
6935
+ value: WhepOutputConfiguration;
6936
+ case: "configuration";
6937
+ } | {
6938
+ case: undefined;
6939
+ value?: undefined;
6940
+ };
6941
+ constructor(data?: PartialMessage<WhepOutputMessage>);
6942
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6943
+ static readonly typeName = "norsk.api.media.WhepOutputMessage";
6944
+ static readonly fields: FieldList;
6945
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): WhepOutputMessage;
6946
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): WhepOutputMessage;
6947
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WhepOutputMessage;
6948
+ static equals(a: WhepOutputMessage | PlainMessage<WhepOutputMessage> | undefined, b: WhepOutputMessage | PlainMessage<WhepOutputMessage> | undefined): boolean;
6949
+ }
6950
+ /**
6951
+ * @generated from message norsk.api.media.WhepOutputEvent
6952
+ */
6953
+ export declare class WhepOutputEvent extends Message<WhepOutputEvent> {
6954
+ /**
6955
+ * @generated from oneof norsk.api.media.WhepOutputEvent.message
6700
6956
  */
6701
6957
  message: {
6702
6958
  /**
@@ -6718,13 +6974,7 @@ export declare class WebRTCBrowserDuplexEvent extends Message<WebRTCBrowserDuple
6718
6974
  case: "inboundContext";
6719
6975
  } | {
6720
6976
  /**
6721
- * @generated from field: norsk.api.media.Context outbound_context = 4;
6722
- */
6723
- value: Context;
6724
- case: "outboundContext";
6725
- } | {
6726
- /**
6727
- * @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 5;
6977
+ * @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 4;
6728
6978
  */
6729
6979
  value: MultiStreamStatistics;
6730
6980
  case: "streamStatistics";
@@ -6732,14 +6982,14 @@ export declare class WebRTCBrowserDuplexEvent extends Message<WebRTCBrowserDuple
6732
6982
  case: undefined;
6733
6983
  value?: undefined;
6734
6984
  };
6735
- constructor(data?: PartialMessage<WebRTCBrowserDuplexEvent>);
6985
+ constructor(data?: PartialMessage<WhepOutputEvent>);
6736
6986
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6737
- static readonly typeName = "norsk.api.media.WebRTCBrowserDuplexEvent";
6987
+ static readonly typeName = "norsk.api.media.WhepOutputEvent";
6738
6988
  static readonly fields: FieldList;
6739
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): WebRTCBrowserDuplexEvent;
6740
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): WebRTCBrowserDuplexEvent;
6741
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WebRTCBrowserDuplexEvent;
6742
- static equals(a: WebRTCBrowserDuplexEvent | PlainMessage<WebRTCBrowserDuplexEvent> | undefined, b: WebRTCBrowserDuplexEvent | PlainMessage<WebRTCBrowserDuplexEvent> | undefined): boolean;
6989
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): WhepOutputEvent;
6990
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): WhepOutputEvent;
6991
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WhepOutputEvent;
6992
+ static equals(a: WhepOutputEvent | PlainMessage<WhepOutputEvent> | undefined, b: WhepOutputEvent | PlainMessage<WhepOutputEvent> | undefined): boolean;
6743
6993
  }
6744
6994
  /**
6745
6995
  * @generated from message norsk.api.media.RtmpOutputConfiguration
@@ -6960,11 +7210,15 @@ export declare class FileMp4OutputConfiguration extends Message<FileMp4OutputCon
6960
7210
  */
6961
7211
  nonfragmentedFileName: string;
6962
7212
  /**
6963
- * @generated from field: norsk.api.media.Mp4Encryption encryption = 4;
7213
+ * @generated from field: norsk.api.media.Mp4Encryption audio_encryption = 4;
6964
7214
  */
6965
- encryption?: Mp4Encryption;
7215
+ audioEncryption?: Mp4Encryption;
6966
7216
  /**
6967
- * @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 5;
7217
+ * @generated from field: norsk.api.media.Mp4Encryption video_encryption = 5;
7218
+ */
7219
+ videoEncryption?: Mp4Encryption;
7220
+ /**
7221
+ * @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 6;
6968
7222
  */
6969
7223
  statsSampling?: StreamStatisticsSampling;
6970
7224
  constructor(data?: PartialMessage<FileMp4OutputConfiguration>);
@@ -7776,16 +8030,28 @@ export declare class VideoEncodeStream extends Message<VideoEncodeStream> {
7776
8030
  case: "nvidiaHevc";
7777
8031
  } | {
7778
8032
  /**
7779
- * @generated from field: norsk.api.media.NetintH264 netintH264 = 9;
8033
+ * @generated from field: norsk.api.media.LoganH264 loganH264 = 9;
7780
8034
  */
7781
- value: NetintH264;
7782
- case: "netintH264";
8035
+ value: LoganH264;
8036
+ case: "loganH264";
7783
8037
  } | {
7784
8038
  /**
7785
- * @generated from field: norsk.api.media.NetintHevc netintHevc = 10;
8039
+ * @generated from field: norsk.api.media.LoganHevc loganHevc = 10;
7786
8040
  */
7787
- value: NetintHevc;
7788
- case: "netintHevc";
8041
+ value: LoganHevc;
8042
+ case: "loganHevc";
8043
+ } | {
8044
+ /**
8045
+ * @generated from field: norsk.api.media.QuadraH264 quadraH264 = 11;
8046
+ */
8047
+ value: QuadraH264;
8048
+ case: "quadraH264";
8049
+ } | {
8050
+ /**
8051
+ * @generated from field: norsk.api.media.QuadraHevc quadraHevc = 12;
8052
+ */
8053
+ value: QuadraHevc;
8054
+ case: "quadraHevc";
7789
8055
  } | {
7790
8056
  case: undefined;
7791
8057
  value?: undefined;
@@ -8110,9 +8376,9 @@ export declare enum NvidiaHevc_NvidiaHevcTier {
8110
8376
  HIGH = 1
8111
8377
  }
8112
8378
  /**
8113
- * @generated from message norsk.api.media.NetintH264
8379
+ * @generated from message norsk.api.media.QuadraH264
8114
8380
  */
8115
- export declare class NetintH264 extends Message<NetintH264> {
8381
+ export declare class QuadraH264 extends Message<QuadraH264> {
8116
8382
  /**
8117
8383
  * @generated from field: string extraOpts = 1;
8118
8384
  */
@@ -8154,9 +8420,9 @@ export declare class NetintH264 extends Message<NetintH264> {
8154
8420
  */
8155
8421
  intraPeriod?: OptionalInt;
8156
8422
  /**
8157
- * @generated from field: norsk.api.media.NetintH264.NetintH264Profile profile = 11;
8423
+ * @generated from field: norsk.api.media.QuadraH264.QuadraH264Profile profile = 11;
8158
8424
  */
8159
- profile: NetintH264_NetintH264Profile;
8425
+ profile: QuadraH264_QuadraH264Profile;
8160
8426
  /**
8161
8427
  * @generated from field: norsk.api.media.OptionalInt level = 12;
8162
8428
  */
@@ -8173,48 +8439,48 @@ export declare class NetintH264 extends Message<NetintH264> {
8173
8439
  * @generated from field: norsk.api.media.OptionalInt rcInitDelay = 15;
8174
8440
  */
8175
8441
  rcInitDelay?: OptionalInt;
8176
- constructor(data?: PartialMessage<NetintH264>);
8442
+ constructor(data?: PartialMessage<QuadraH264>);
8177
8443
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
8178
- static readonly typeName = "norsk.api.media.NetintH264";
8444
+ static readonly typeName = "norsk.api.media.QuadraH264";
8179
8445
  static readonly fields: FieldList;
8180
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): NetintH264;
8181
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): NetintH264;
8182
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): NetintH264;
8183
- static equals(a: NetintH264 | PlainMessage<NetintH264> | undefined, b: NetintH264 | PlainMessage<NetintH264> | undefined): boolean;
8446
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): QuadraH264;
8447
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): QuadraH264;
8448
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): QuadraH264;
8449
+ static equals(a: QuadraH264 | PlainMessage<QuadraH264> | undefined, b: QuadraH264 | PlainMessage<QuadraH264> | undefined): boolean;
8184
8450
  }
8185
8451
  /**
8186
- * @generated from enum norsk.api.media.NetintH264.NetintH264Profile
8452
+ * @generated from enum norsk.api.media.QuadraH264.QuadraH264Profile
8187
8453
  */
8188
- export declare enum NetintH264_NetintH264Profile {
8454
+ export declare enum QuadraH264_QuadraH264Profile {
8189
8455
  /**
8190
- * @generated from enum value: NETINT_H264_PROFILE_DEFAULT = 0;
8456
+ * @generated from enum value: QUADRA_H264_PROFILE_DEFAULT = 0;
8191
8457
  */
8192
8458
  DEFAULT = 0,
8193
8459
  /**
8194
- * @generated from enum value: NETINT_H264_PROFILE_BASELINE = 1;
8460
+ * @generated from enum value: QUADRA_H264_PROFILE_BASELINE = 1;
8195
8461
  */
8196
8462
  BASELINE = 1,
8197
8463
  /**
8198
- * @generated from enum value: NETINT_H264_PROFILE_MAIN = 2;
8464
+ * @generated from enum value: QUADRA_H264_PROFILE_MAIN = 2;
8199
8465
  */
8200
8466
  MAIN = 2,
8201
8467
  /**
8202
- * @generated from enum value: NETINT_H264_PROFILE_EXTENDED = 3;
8468
+ * @generated from enum value: QUADRA_H264_PROFILE_EXTENDED = 3;
8203
8469
  */
8204
8470
  EXTENDED = 3,
8205
8471
  /**
8206
- * @generated from enum value: NETINT_H264_PROFILE_HIGH = 4;
8472
+ * @generated from enum value: QUADRA_H264_PROFILE_HIGH = 4;
8207
8473
  */
8208
8474
  HIGH = 4,
8209
8475
  /**
8210
- * @generated from enum value: NETINT_H264_PROFILE_HIGH10 = 5;
8476
+ * @generated from enum value: QUADRA_H264_PROFILE_HIGH10 = 5;
8211
8477
  */
8212
8478
  HIGH10 = 5
8213
8479
  }
8214
8480
  /**
8215
- * @generated from message norsk.api.media.NetintHevc
8481
+ * @generated from message norsk.api.media.QuadraHevc
8216
8482
  */
8217
- export declare class NetintHevc extends Message<NetintHevc> {
8483
+ export declare class QuadraHevc extends Message<QuadraHevc> {
8218
8484
  /**
8219
8485
  * @generated from field: string extraOpts = 1;
8220
8486
  */
@@ -8256,13 +8522,13 @@ export declare class NetintHevc extends Message<NetintHevc> {
8256
8522
  */
8257
8523
  intraPeriod?: OptionalInt;
8258
8524
  /**
8259
- * @generated from field: norsk.api.media.NetintHevc.NetintHevcTier tier = 11;
8525
+ * @generated from field: norsk.api.media.QuadraHevc.QuadraHevcTier tier = 11;
8260
8526
  */
8261
- tier: NetintHevc_NetintHevcTier;
8527
+ tier: QuadraHevc_QuadraHevcTier;
8262
8528
  /**
8263
- * @generated from field: norsk.api.media.NetintHevc.NetintHevcProfile profile = 12;
8529
+ * @generated from field: norsk.api.media.QuadraHevc.QuadraHevcProfile profile = 12;
8264
8530
  */
8265
- profile: NetintHevc_NetintHevcProfile;
8531
+ profile: QuadraHevc_QuadraHevcProfile;
8266
8532
  /**
8267
8533
  * @generated from field: norsk.api.media.OptionalInt level = 13;
8268
8534
  */
@@ -8291,42 +8557,263 @@ export declare class NetintHevc extends Message<NetintHevc> {
8291
8557
  * @generated from field: norsk.api.media.OptionalInt dolbyVisionProfile = 19;
8292
8558
  */
8293
8559
  dolbyVisionProfile?: OptionalInt;
8294
- constructor(data?: PartialMessage<NetintHevc>);
8560
+ constructor(data?: PartialMessage<QuadraHevc>);
8295
8561
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
8296
- static readonly typeName = "norsk.api.media.NetintHevc";
8562
+ static readonly typeName = "norsk.api.media.QuadraHevc";
8297
8563
  static readonly fields: FieldList;
8298
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): NetintHevc;
8299
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): NetintHevc;
8300
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): NetintHevc;
8301
- static equals(a: NetintHevc | PlainMessage<NetintHevc> | undefined, b: NetintHevc | PlainMessage<NetintHevc> | undefined): boolean;
8564
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): QuadraHevc;
8565
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): QuadraHevc;
8566
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): QuadraHevc;
8567
+ static equals(a: QuadraHevc | PlainMessage<QuadraHevc> | undefined, b: QuadraHevc | PlainMessage<QuadraHevc> | undefined): boolean;
8302
8568
  }
8303
8569
  /**
8304
- * @generated from enum norsk.api.media.NetintHevc.NetintHevcProfile
8570
+ * @generated from enum norsk.api.media.QuadraHevc.QuadraHevcProfile
8305
8571
  */
8306
- export declare enum NetintHevc_NetintHevcProfile {
8572
+ export declare enum QuadraHevc_QuadraHevcProfile {
8307
8573
  /**
8308
- * @generated from enum value: NETINT_HEVC_PROFILE_DEFAULT = 0;
8574
+ * @generated from enum value: QUADRA_HEVC_PROFILE_DEFAULT = 0;
8309
8575
  */
8310
8576
  DEFAULT = 0,
8311
8577
  /**
8312
- * @generated from enum value: NETINT_HEVC_PROFILE_MAIN = 1;
8578
+ * @generated from enum value: QUADRA_HEVC_PROFILE_MAIN = 1;
8313
8579
  */
8314
8580
  MAIN = 1,
8315
8581
  /**
8316
- * @generated from enum value: NETINT_HEVC_PROFILE_MAIN10 = 2;
8582
+ * @generated from enum value: QUADRA_HEVC_PROFILE_MAIN10 = 2;
8317
8583
  */
8318
8584
  MAIN10 = 2
8319
8585
  }
8320
8586
  /**
8321
- * @generated from enum norsk.api.media.NetintHevc.NetintHevcTier
8587
+ * @generated from enum norsk.api.media.QuadraHevc.QuadraHevcTier
8322
8588
  */
8323
- export declare enum NetintHevc_NetintHevcTier {
8589
+ export declare enum QuadraHevc_QuadraHevcTier {
8324
8590
  /**
8325
- * @generated from enum value: NETINT_HEVC_TIER_MAIN = 0;
8591
+ * @generated from enum value: QUADRA_HEVC_TIER_MAIN = 0;
8326
8592
  */
8327
8593
  MAIN = 0,
8328
8594
  /**
8329
- * @generated from enum value: NETINT_HEVC_TIER_HIGH = 1;
8595
+ * @generated from enum value: QUADRA_HEVC_TIER_HIGH = 1;
8596
+ */
8597
+ HIGH = 1
8598
+ }
8599
+ /**
8600
+ * @generated from message norsk.api.media.LoganH264
8601
+ */
8602
+ export declare class LoganH264 extends Message<LoganH264> {
8603
+ /**
8604
+ * @generated from field: string extraOpts = 1;
8605
+ */
8606
+ extraOpts: string;
8607
+ /**
8608
+ * @generated from field: norsk.api.media.OptionalBool enableAud = 2;
8609
+ */
8610
+ enableAud?: OptionalBool;
8611
+ /**
8612
+ * @generated from field: norsk.api.media.OptionalInt gpuIndex = 3;
8613
+ */
8614
+ gpuIndex?: OptionalInt;
8615
+ /**
8616
+ * @generated from field: norsk.api.media.OptionalInt bitrate = 4;
8617
+ */
8618
+ bitrate?: OptionalInt;
8619
+ /**
8620
+ * @generated from field: norsk.api.media.OptionalBool flushGop = 5;
8621
+ */
8622
+ flushGop?: OptionalBool;
8623
+ /**
8624
+ * @generated from field: norsk.api.media.OptionalBool enableVfr = 6;
8625
+ */
8626
+ enableVfr?: OptionalBool;
8627
+ /**
8628
+ * @generated from field: norsk.api.media.OptionalInt crf = 7;
8629
+ */
8630
+ crf?: OptionalInt;
8631
+ /**
8632
+ * @generated from field: norsk.api.media.OptionalBool cbr = 8;
8633
+ */
8634
+ cbr?: OptionalBool;
8635
+ /**
8636
+ * @generated from field: norsk.api.media.OptionalInt gopPresetIndex = 9;
8637
+ */
8638
+ gopPresetIndex?: OptionalInt;
8639
+ /**
8640
+ * @generated from field: norsk.api.media.OptionalInt intraPeriod = 10;
8641
+ */
8642
+ intraPeriod?: OptionalInt;
8643
+ /**
8644
+ * @generated from field: norsk.api.media.LoganH264.LoganH264Profile profile = 11;
8645
+ */
8646
+ profile: LoganH264_LoganH264Profile;
8647
+ /**
8648
+ * @generated from field: norsk.api.media.OptionalInt level = 12;
8649
+ */
8650
+ level?: OptionalInt;
8651
+ /**
8652
+ * @generated from field: norsk.api.media.OptionalBool rcEnable = 13;
8653
+ */
8654
+ rcEnable?: OptionalBool;
8655
+ /**
8656
+ * @generated from field: norsk.api.media.OptionalInt intraQp = 14;
8657
+ */
8658
+ intraQp?: OptionalInt;
8659
+ /**
8660
+ * @generated from field: norsk.api.media.OptionalInt rcInitDelay = 15;
8661
+ */
8662
+ rcInitDelay?: OptionalInt;
8663
+ constructor(data?: PartialMessage<LoganH264>);
8664
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
8665
+ static readonly typeName = "norsk.api.media.LoganH264";
8666
+ static readonly fields: FieldList;
8667
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): LoganH264;
8668
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): LoganH264;
8669
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): LoganH264;
8670
+ static equals(a: LoganH264 | PlainMessage<LoganH264> | undefined, b: LoganH264 | PlainMessage<LoganH264> | undefined): boolean;
8671
+ }
8672
+ /**
8673
+ * @generated from enum norsk.api.media.LoganH264.LoganH264Profile
8674
+ */
8675
+ export declare enum LoganH264_LoganH264Profile {
8676
+ /**
8677
+ * @generated from enum value: LOGAN_H264_PROFILE_DEFAULT = 0;
8678
+ */
8679
+ DEFAULT = 0,
8680
+ /**
8681
+ * @generated from enum value: LOGAN_H264_PROFILE_BASELINE = 1;
8682
+ */
8683
+ BASELINE = 1,
8684
+ /**
8685
+ * @generated from enum value: LOGAN_H264_PROFILE_MAIN = 2;
8686
+ */
8687
+ MAIN = 2,
8688
+ /**
8689
+ * @generated from enum value: LOGAN_H264_PROFILE_EXTENDED = 3;
8690
+ */
8691
+ EXTENDED = 3,
8692
+ /**
8693
+ * @generated from enum value: LOGAN_H264_PROFILE_HIGH = 4;
8694
+ */
8695
+ HIGH = 4,
8696
+ /**
8697
+ * @generated from enum value: LOGAN_H264_PROFILE_HIGH10 = 5;
8698
+ */
8699
+ HIGH10 = 5
8700
+ }
8701
+ /**
8702
+ * @generated from message norsk.api.media.LoganHevc
8703
+ */
8704
+ export declare class LoganHevc extends Message<LoganHevc> {
8705
+ /**
8706
+ * @generated from field: string extraOpts = 1;
8707
+ */
8708
+ extraOpts: string;
8709
+ /**
8710
+ * @generated from field: norsk.api.media.OptionalBool enableAud = 2;
8711
+ */
8712
+ enableAud?: OptionalBool;
8713
+ /**
8714
+ * @generated from field: norsk.api.media.OptionalInt gpuIndex = 3;
8715
+ */
8716
+ gpuIndex?: OptionalInt;
8717
+ /**
8718
+ * @generated from field: norsk.api.media.OptionalInt bitrate = 4;
8719
+ */
8720
+ bitrate?: OptionalInt;
8721
+ /**
8722
+ * @generated from field: norsk.api.media.OptionalBool flushGop = 5;
8723
+ */
8724
+ flushGop?: OptionalBool;
8725
+ /**
8726
+ * @generated from field: norsk.api.media.OptionalBool enableVfr = 6;
8727
+ */
8728
+ enableVfr?: OptionalBool;
8729
+ /**
8730
+ * @generated from field: norsk.api.media.OptionalInt crf = 7;
8731
+ */
8732
+ crf?: OptionalInt;
8733
+ /**
8734
+ * @generated from field: norsk.api.media.OptionalBool cbr = 8;
8735
+ */
8736
+ cbr?: OptionalBool;
8737
+ /**
8738
+ * @generated from field: norsk.api.media.OptionalInt gopPresetIndex = 9;
8739
+ */
8740
+ gopPresetIndex?: OptionalInt;
8741
+ /**
8742
+ * @generated from field: norsk.api.media.OptionalInt intraPeriod = 10;
8743
+ */
8744
+ intraPeriod?: OptionalInt;
8745
+ /**
8746
+ * @generated from field: norsk.api.media.LoganHevc.LoganHevcTier tier = 11;
8747
+ */
8748
+ tier: LoganHevc_LoganHevcTier;
8749
+ /**
8750
+ * @generated from field: norsk.api.media.LoganHevc.LoganHevcProfile profile = 12;
8751
+ */
8752
+ profile: LoganHevc_LoganHevcProfile;
8753
+ /**
8754
+ * @generated from field: norsk.api.media.OptionalInt level = 13;
8755
+ */
8756
+ level?: OptionalInt;
8757
+ /**
8758
+ * @generated from field: norsk.api.media.OptionalBool rcEnable = 14;
8759
+ */
8760
+ rcEnable?: OptionalBool;
8761
+ /**
8762
+ * @generated from field: norsk.api.media.OptionalBool lossless = 15;
8763
+ */
8764
+ lossless?: OptionalBool;
8765
+ /**
8766
+ * @generated from field: norsk.api.media.OptionalInt intraQp = 16;
8767
+ */
8768
+ intraQp?: OptionalInt;
8769
+ /**
8770
+ * @generated from field: norsk.api.media.OptionalInt rcInitDelay = 17;
8771
+ */
8772
+ rcInitDelay?: OptionalInt;
8773
+ /**
8774
+ * @generated from field: norsk.api.media.OptionalBool hrdEnable = 18;
8775
+ */
8776
+ hrdEnable?: OptionalBool;
8777
+ /**
8778
+ * @generated from field: norsk.api.media.OptionalInt dolbyVisionProfile = 19;
8779
+ */
8780
+ dolbyVisionProfile?: OptionalInt;
8781
+ constructor(data?: PartialMessage<LoganHevc>);
8782
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
8783
+ static readonly typeName = "norsk.api.media.LoganHevc";
8784
+ static readonly fields: FieldList;
8785
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): LoganHevc;
8786
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): LoganHevc;
8787
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): LoganHevc;
8788
+ static equals(a: LoganHevc | PlainMessage<LoganHevc> | undefined, b: LoganHevc | PlainMessage<LoganHevc> | undefined): boolean;
8789
+ }
8790
+ /**
8791
+ * @generated from enum norsk.api.media.LoganHevc.LoganHevcProfile
8792
+ */
8793
+ export declare enum LoganHevc_LoganHevcProfile {
8794
+ /**
8795
+ * @generated from enum value: LOGAN_HEVC_PROFILE_DEFAULT = 0;
8796
+ */
8797
+ DEFAULT = 0,
8798
+ /**
8799
+ * @generated from enum value: LOGAN_HEVC_PROFILE_MAIN = 1;
8800
+ */
8801
+ MAIN = 1,
8802
+ /**
8803
+ * @generated from enum value: LOGAN_HEVC_PROFILE_MAIN10 = 2;
8804
+ */
8805
+ MAIN10 = 2
8806
+ }
8807
+ /**
8808
+ * @generated from enum norsk.api.media.LoganHevc.LoganHevcTier
8809
+ */
8810
+ export declare enum LoganHevc_LoganHevcTier {
8811
+ /**
8812
+ * @generated from enum value: LOGAN_HEVC_TIER_MAIN = 0;
8813
+ */
8814
+ MAIN = 0,
8815
+ /**
8816
+ * @generated from enum value: LOGAN_HEVC_TIER_HIGH = 1;
8330
8817
  */
8331
8818
  HIGH = 1
8332
8819
  }
@@ -9267,6 +9754,27 @@ export declare class StreamSwitchSmoothMessage extends Message<StreamSwitchSmoot
9267
9754
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamSwitchSmoothMessage;
9268
9755
  static equals(a: StreamSwitchSmoothMessage | PlainMessage<StreamSwitchSmoothMessage> | undefined, b: StreamSwitchSmoothMessage | PlainMessage<StreamSwitchSmoothMessage> | undefined): boolean;
9269
9756
  }
9757
+ /**
9758
+ * @generated from message norsk.api.media.StreamSwitchSmoothSwitchError
9759
+ */
9760
+ export declare class StreamSwitchSmoothSwitchError extends Message<StreamSwitchSmoothSwitchError> {
9761
+ /**
9762
+ * @generated from field: string reason = 1;
9763
+ */
9764
+ reason: string;
9765
+ /**
9766
+ * @generated from field: norsk.api.media.InputPin requested_source = 2;
9767
+ */
9768
+ requestedSource?: InputPin;
9769
+ constructor(data?: PartialMessage<StreamSwitchSmoothSwitchError>);
9770
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
9771
+ static readonly typeName = "norsk.api.media.StreamSwitchSmoothSwitchError";
9772
+ static readonly fields: FieldList;
9773
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamSwitchSmoothSwitchError;
9774
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamSwitchSmoothSwitchError;
9775
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamSwitchSmoothSwitchError;
9776
+ static equals(a: StreamSwitchSmoothSwitchError | PlainMessage<StreamSwitchSmoothSwitchError> | undefined, b: StreamSwitchSmoothSwitchError | PlainMessage<StreamSwitchSmoothSwitchError> | undefined): boolean;
9777
+ }
9270
9778
  /**
9271
9779
  * @generated from message norsk.api.media.StreamSwitchSmoothEvent
9272
9780
  */
@@ -9292,6 +9800,21 @@ export declare class StreamSwitchSmoothEvent extends Message<StreamSwitchSmoothE
9292
9800
  */
9293
9801
  value: SubscriptionResponse;
9294
9802
  case: "subscriptionResponse";
9803
+ } | {
9804
+ /**
9805
+ * @generated from field: norsk.api.media.StreamSwitchSmoothSwitchError switch_error = 4;
9806
+ */
9807
+ value: StreamSwitchSmoothSwitchError;
9808
+ case: "switchError";
9809
+ } | {
9810
+ /**
9811
+ * Message sent when inbound context changes on some input; presence of an input in this message means that
9812
+ * media has arrived and is ready to switch immediately
9813
+ *
9814
+ * @generated from field: norsk.api.media.MultipleContext inbound_context = 5;
9815
+ */
9816
+ value: MultipleContext;
9817
+ case: "inboundContext";
9295
9818
  } | {
9296
9819
  case: undefined;
9297
9820
  value?: undefined;