@norskvideo/norsk-api 1.0.358 → 1.0.359

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
@@ -1800,7 +1800,11 @@ export declare enum ValidationResponse_ContextValidationResponse {
1800
1800
  /**
1801
1801
  * @generated from enum value: CONTEXT_VALIDATION_DENY_AND_QUEUE = 3;
1802
1802
  */
1803
- CONTEXT_VALIDATION_DENY_AND_QUEUE = 3
1803
+ CONTEXT_VALIDATION_DENY_AND_QUEUE = 3,
1804
+ /**
1805
+ * @generated from enum value: CONTEXT_VALIDATION_DENY_AND_DROP = 4;
1806
+ */
1807
+ CONTEXT_VALIDATION_DENY_AND_DROP = 4
1804
1808
  }
1805
1809
  /**
1806
1810
  * @generated from message norsk.api.media.ValidationResponseAck
@@ -3874,6 +3878,109 @@ export declare class DeckLinkInputEvent extends Message<DeckLinkInputEvent> {
3874
3878
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeckLinkInputEvent;
3875
3879
  static equals(a: DeckLinkInputEvent | PlainMessage<DeckLinkInputEvent> | undefined, b: DeckLinkInputEvent | PlainMessage<DeckLinkInputEvent> | undefined): boolean;
3876
3880
  }
3881
+ /**
3882
+ * @generated from message norsk.api.media.DeltacastInputConfiguration
3883
+ */
3884
+ export declare class DeltacastInputConfiguration extends Message<DeltacastInputConfiguration> {
3885
+ /**
3886
+ * @generated from field: norsk.api.media.MediaNodeId id = 1;
3887
+ */
3888
+ id?: MediaNodeId;
3889
+ /**
3890
+ * @generated from field: string source_name = 2;
3891
+ */
3892
+ sourceName: string;
3893
+ /**
3894
+ * @generated from field: uint32 device_id = 3;
3895
+ */
3896
+ deviceId: number;
3897
+ /**
3898
+ * @generated from field: uint32 card_index = 4;
3899
+ */
3900
+ cardIndex: number;
3901
+ /**
3902
+ * @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 5;
3903
+ */
3904
+ statsSampling?: StreamStatisticsSampling;
3905
+ constructor(data?: PartialMessage<DeltacastInputConfiguration>);
3906
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
3907
+ static readonly typeName = "norsk.api.media.DeltacastInputConfiguration";
3908
+ static readonly fields: FieldList;
3909
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeltacastInputConfiguration;
3910
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeltacastInputConfiguration;
3911
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeltacastInputConfiguration;
3912
+ static equals(a: DeltacastInputConfiguration | PlainMessage<DeltacastInputConfiguration> | undefined, b: DeltacastInputConfiguration | PlainMessage<DeltacastInputConfiguration> | undefined): boolean;
3913
+ }
3914
+ /**
3915
+ * @generated from message norsk.api.media.DeltacastInputMessage
3916
+ */
3917
+ export declare class DeltacastInputMessage extends Message<DeltacastInputMessage> {
3918
+ /**
3919
+ * @generated from oneof norsk.api.media.DeltacastInputMessage.message
3920
+ */
3921
+ message: {
3922
+ /**
3923
+ * @generated from field: norsk.api.media.DeltacastInputConfiguration initial_config = 1;
3924
+ */
3925
+ value: DeltacastInputConfiguration;
3926
+ case: "initialConfig";
3927
+ } | {
3928
+ /**
3929
+ * @generated from field: norsk.api.media.TimestampNudge nudge = 2;
3930
+ */
3931
+ value: TimestampNudge;
3932
+ case: "nudge";
3933
+ } | {
3934
+ case: undefined;
3935
+ value?: undefined;
3936
+ };
3937
+ constructor(data?: PartialMessage<DeltacastInputMessage>);
3938
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
3939
+ static readonly typeName = "norsk.api.media.DeltacastInputMessage";
3940
+ static readonly fields: FieldList;
3941
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeltacastInputMessage;
3942
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeltacastInputMessage;
3943
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeltacastInputMessage;
3944
+ static equals(a: DeltacastInputMessage | PlainMessage<DeltacastInputMessage> | undefined, b: DeltacastInputMessage | PlainMessage<DeltacastInputMessage> | undefined): boolean;
3945
+ }
3946
+ /**
3947
+ * @generated from message norsk.api.media.DeltacastInputEvent
3948
+ */
3949
+ export declare class DeltacastInputEvent extends Message<DeltacastInputEvent> {
3950
+ /**
3951
+ * @generated from oneof norsk.api.media.DeltacastInputEvent.message
3952
+ */
3953
+ message: {
3954
+ /**
3955
+ * @generated from field: norsk.api.media.MediaNodeId node_id = 1;
3956
+ */
3957
+ value: MediaNodeId;
3958
+ case: "nodeId";
3959
+ } | {
3960
+ /**
3961
+ * @generated from field: norsk.api.media.Context outbound_context = 2;
3962
+ */
3963
+ value: Context;
3964
+ case: "outboundContext";
3965
+ } | {
3966
+ /**
3967
+ * @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 3;
3968
+ */
3969
+ value: MultiStreamStatistics;
3970
+ case: "streamStatistics";
3971
+ } | {
3972
+ case: undefined;
3973
+ value?: undefined;
3974
+ };
3975
+ constructor(data?: PartialMessage<DeltacastInputEvent>);
3976
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
3977
+ static readonly typeName = "norsk.api.media.DeltacastInputEvent";
3978
+ static readonly fields: FieldList;
3979
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeltacastInputEvent;
3980
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeltacastInputEvent;
3981
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeltacastInputEvent;
3982
+ static equals(a: DeltacastInputEvent | PlainMessage<DeltacastInputEvent> | undefined, b: DeltacastInputEvent | PlainMessage<DeltacastInputEvent> | undefined): boolean;
3983
+ }
3877
3984
  /**
3878
3985
  * @generated from message norsk.api.media.FileImageInputConfiguration
3879
3986
  */
@@ -3898,6 +4005,10 @@ export declare class FileImageInputConfiguration extends Message<FileImageInputC
3898
4005
  * @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 5;
3899
4006
  */
3900
4007
  statsSampling?: StreamStatisticsSampling;
4008
+ /**
4009
+ * @generated from field: norsk.api.media.FileImageInputConfiguration.FileImageHardwareAcceleration hardware_acceleration = 6;
4010
+ */
4011
+ hardwareAcceleration: FileImageInputConfiguration_FileImageHardwareAcceleration;
3901
4012
  constructor(data?: PartialMessage<FileImageInputConfiguration>);
3902
4013
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
3903
4014
  static readonly typeName = "norsk.api.media.FileImageInputConfiguration";
@@ -3907,6 +4018,19 @@ export declare class FileImageInputConfiguration extends Message<FileImageInputC
3907
4018
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileImageInputConfiguration;
3908
4019
  static equals(a: FileImageInputConfiguration | PlainMessage<FileImageInputConfiguration> | undefined, b: FileImageInputConfiguration | PlainMessage<FileImageInputConfiguration> | undefined): boolean;
3909
4020
  }
4021
+ /**
4022
+ * @generated from enum norsk.api.media.FileImageInputConfiguration.FileImageHardwareAcceleration
4023
+ */
4024
+ export declare enum FileImageInputConfiguration_FileImageHardwareAcceleration {
4025
+ /**
4026
+ * @generated from enum value: FILEIMAGE_NONE = 0;
4027
+ */
4028
+ FILEIMAGE_NONE = 0,
4029
+ /**
4030
+ * @generated from enum value: FILEIMAGE_QUADRA = 1;
4031
+ */
4032
+ FILEIMAGE_QUADRA = 1
4033
+ }
3910
4034
  /**
3911
4035
  * @generated from enum norsk.api.media.FileImageInputConfiguration.ImageFormat
3912
4036
  */
@@ -8114,6 +8238,12 @@ export declare class WhepOutputEvent extends Message<WhepOutputEvent> {
8114
8238
  */
8115
8239
  value: MultiStreamStatistics;
8116
8240
  case: "streamStatistics";
8241
+ } | {
8242
+ /**
8243
+ * @generated from field: norsk.api.media.WhepOutputEvent.State status = 5;
8244
+ */
8245
+ value: WhepOutputEvent_State;
8246
+ case: "status";
8117
8247
  } | {
8118
8248
  case: undefined;
8119
8249
  value?: undefined;
@@ -8127,6 +8257,19 @@ export declare class WhepOutputEvent extends Message<WhepOutputEvent> {
8127
8257
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WhepOutputEvent;
8128
8258
  static equals(a: WhepOutputEvent | PlainMessage<WhepOutputEvent> | undefined, b: WhepOutputEvent | PlainMessage<WhepOutputEvent> | undefined): boolean;
8129
8259
  }
8260
+ /**
8261
+ * @generated from enum norsk.api.media.WhepOutputEvent.State
8262
+ */
8263
+ export declare enum WhepOutputEvent_State {
8264
+ /**
8265
+ * @generated from enum value: WHEP_OUTPUT_STATUS_UNKNOWN = 0;
8266
+ */
8267
+ WHEP_OUTPUT_STATUS_UNKNOWN = 0,
8268
+ /**
8269
+ * @generated from enum value: WHEP_OUTPUT_STATUS_READY = 1;
8270
+ */
8271
+ WHEP_OUTPUT_STATUS_READY = 1
8272
+ }
8130
8273
  /**
8131
8274
  * @generated from message norsk.api.media.RtmpOutputConfiguration
8132
8275
  */
@@ -10560,10 +10703,10 @@ export declare class AmdMA35DEncodeCommon extends Message<AmdMA35DEncodeCommon>
10560
10703
  case: "constrainedVbr";
10561
10704
  } | {
10562
10705
  /**
10563
- * @generated from field: norsk.api.media.AmdMA35DEncodeCommon.ConstrainedABR constrained_abr = 5;
10706
+ * @generated from field: norsk.api.media.AmdMA35DEncodeCommon.ContentAdaptive content_adaptive = 5;
10564
10707
  */
10565
- value: AmdMA35DEncodeCommon_ConstrainedABR;
10566
- case: "constrainedAbr";
10708
+ value: AmdMA35DEncodeCommon_ContentAdaptive;
10709
+ case: "contentAdaptive";
10567
10710
  } | {
10568
10711
  case: undefined;
10569
10712
  value?: undefined;
@@ -10802,9 +10945,9 @@ export declare class AmdMA35DEncodeCommon_ConstrainedVBR extends Message<AmdMA35
10802
10945
  static equals(a: AmdMA35DEncodeCommon_ConstrainedVBR | PlainMessage<AmdMA35DEncodeCommon_ConstrainedVBR> | undefined, b: AmdMA35DEncodeCommon_ConstrainedVBR | PlainMessage<AmdMA35DEncodeCommon_ConstrainedVBR> | undefined): boolean;
10803
10946
  }
10804
10947
  /**
10805
- * @generated from message norsk.api.media.AmdMA35DEncodeCommon.ConstrainedABR
10948
+ * @generated from message norsk.api.media.AmdMA35DEncodeCommon.ContentAdaptive
10806
10949
  */
10807
- export declare class AmdMA35DEncodeCommon_ConstrainedABR extends Message<AmdMA35DEncodeCommon_ConstrainedABR> {
10950
+ export declare class AmdMA35DEncodeCommon_ContentAdaptive extends Message<AmdMA35DEncodeCommon_ContentAdaptive> {
10808
10951
  /**
10809
10952
  * @generated from field: uint32 bitrate = 1;
10810
10953
  */
@@ -10817,14 +10960,14 @@ export declare class AmdMA35DEncodeCommon_ConstrainedABR extends Message<AmdMA35
10817
10960
  * @generated from field: uint32 buf_size = 3;
10818
10961
  */
10819
10962
  bufSize: number;
10820
- constructor(data?: PartialMessage<AmdMA35DEncodeCommon_ConstrainedABR>);
10963
+ constructor(data?: PartialMessage<AmdMA35DEncodeCommon_ContentAdaptive>);
10821
10964
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
10822
- static readonly typeName = "norsk.api.media.AmdMA35DEncodeCommon.ConstrainedABR";
10965
+ static readonly typeName = "norsk.api.media.AmdMA35DEncodeCommon.ContentAdaptive";
10823
10966
  static readonly fields: FieldList;
10824
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AmdMA35DEncodeCommon_ConstrainedABR;
10825
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AmdMA35DEncodeCommon_ConstrainedABR;
10826
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AmdMA35DEncodeCommon_ConstrainedABR;
10827
- static equals(a: AmdMA35DEncodeCommon_ConstrainedABR | PlainMessage<AmdMA35DEncodeCommon_ConstrainedABR> | undefined, b: AmdMA35DEncodeCommon_ConstrainedABR | PlainMessage<AmdMA35DEncodeCommon_ConstrainedABR> | undefined): boolean;
10967
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AmdMA35DEncodeCommon_ContentAdaptive;
10968
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AmdMA35DEncodeCommon_ContentAdaptive;
10969
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AmdMA35DEncodeCommon_ContentAdaptive;
10970
+ static equals(a: AmdMA35DEncodeCommon_ContentAdaptive | PlainMessage<AmdMA35DEncodeCommon_ContentAdaptive> | undefined, b: AmdMA35DEncodeCommon_ContentAdaptive | PlainMessage<AmdMA35DEncodeCommon_ContentAdaptive> | undefined): boolean;
10828
10971
  }
10829
10972
  /**
10830
10973
  * @generated from message norsk.api.media.AmdMA35DH264
package/lib/media_pb.js CHANGED
@@ -6,14 +6,14 @@
6
6
  Object.defineProperty(exports, "__esModule", { value: true });
7
7
  exports.CodecPictureStructure = exports.StreamStatisticsSampling = exports.MultiStreamStatistics_SingleStreamStatistics = exports.MultiStreamStatistics = exports.TimestampSourceProgramNudge = exports.TimestampProgramNudge = exports.TimestampNudge = exports.ValidationResponseAck = exports.ValidationResponse_ContextValidationResponse = exports.ValidationResponse = exports.BlockingCallRef = exports.TaggedContext = exports.MultipleContext = exports.Context = exports.StreamMetadata_AncillaryMetadata = exports.StreamMetadata_PlaylistMetadata = exports.StreamMetadata_SubtitleMetadata = exports.StreamMetadata_VideoMetadata = exports.StreamMetadata_AudioMetadata = exports.StreamMetadata = exports.ChannelLayout = exports.MultiChannelLayout = exports.SingleChannelLayout = exports.Channel = exports.ExplicitChannel = exports.StreamKey = exports.InputPin = exports.RenditionName = exports.StreamId = exports.ProgramNumber = exports.SourceName = exports.Interval = exports.Resolution = exports.MediaNodeId = exports.ContextType = exports.VideoIOSupport = exports.VideoConnection = exports.VancPayloadFormat = exports.SentenceStabilizationMode = exports.SentenceBuildMode = exports.NvidiaPreset = exports.DeckLinkDisplayModeId = exports.DeckLinkPixelFormat = exports.TestCardPattern = exports.SrtMode = exports.AudioCodec = exports.SampleFormat = exports.SampleRate = exports.NamedChannelLayout = exports.ChannelName = void 0;
8
8
  exports.UdpTsInputConfiguration = exports.SrtInputEvent = exports.SrtInputStatus_State = exports.SrtInputStatus = exports.SrtConnectionClose = exports.SrtConnectionReject = exports.SrtConnectionAccept = exports.SrtConnectMessage = exports.SrtTsContext = exports.SrtInputMessage = exports.SrtInputConfiguration = exports.FileWebVttInputEvent = exports.FileWebVttInputConfiguration = exports.FileTsInputMessage = exports.FileTsInputConfigurationUpdate = exports.FileTsInputConfiguration_StartMode = exports.FileTsInputConfiguration = exports.TsInputEvent = exports.TsInputStatus_State = exports.TsInputStatus = exports.TsContext = exports.TsProgram_TsPid = exports.TsProgram_TsStreamType = exports.TsProgram = exports.RtmpServerInputEvent = exports.RtmpBytesRead = exports.RtmpError_UnsupportedAudio = exports.RtmpError_UnsupportedVideo = exports.RtmpError = exports.RtmpOnStream = exports.RtmpServerInputStatus_State = exports.RtmpServerInputStatus = exports.RtmpConnection = exports.RtmpServerInputMessage = exports.RtmpStreamReject = exports.RtmpStreamAccept = exports.RtmpConnectionReject = exports.RtmpConnectionAccept = exports.SslServerOptions = exports.RtmpServerInputConfiguration = exports.ConnectionId = exports.GopStructure_SinglePictureStructure = exports.GopStructure_PictureType = exports.GopStructure = exports.CodecPictureStructure_HEVCPictureStructure_HEVCSliceType = exports.CodecPictureStructure_HEVCPictureStructure = exports.CodecPictureStructure_H264PictureStructure_H264SliceType = exports.CodecPictureStructure_H264PictureStructure = exports.CodecPictureStructure_Mpeg2PictureStructure_Mpeg2GopInfo = exports.CodecPictureStructure_Mpeg2PictureStructure = void 0;
9
- exports.VideoComposeConfiguration_ComposeHardwareAcceleration = exports.VideoComposeConfiguration = exports.VideoComposeMessage = exports.PartId = exports.Easing_SimpleEasing = exports.Easing = exports.Transition = exports.ComposePart = exports.OffsetRectangle = exports.WhipInputEvent = exports.WhipInputMessage = exports.WhipInputConfiguration = exports.WebRtcIceServer = exports.WebRtcConfiguration = exports.BrowserInputEvent = exports.BrowserEvent = exports.BrowserOnLoadError = exports.BrowserOnLoadEnd = exports.BrowserOnLoadStart = exports.BrowserOnLoaded = exports.BrowserInputMessage = exports.BrowserInputUpdateConfiguration = exports.BrowserInputConfiguration = exports.AudioSignalGeneratorEvent = exports.AudioSignalGeneratorConfiguration = exports.Wave = exports.SineWave = exports.FileMp4InputEvent = exports.FileMp4InputInfo = exports.FileMp4InputStatus_State = exports.FileMp4InputStatus = exports.FileMp4InputMessage = exports.FileMp4InputConfigurationUpdate = exports.FileMp4InputConfiguration_StartMode = exports.FileMp4InputConfiguration = exports.FileImageInputEvent = exports.FileImageInputConfiguration_ImageFormat = exports.FileImageInputConfiguration = exports.DeckLinkInputEvent = exports.DeckLinkInputMessage = exports.DeckLinkInputConfiguration = exports.DeckLinkCardIndex = exports.VideoTestCardGeneratorEvent = exports.VideoTestCardGeneratorMessage = exports.TestCardVideoConfiguration = exports.TestCardVideoSetup = exports.M3u8MediaInputEvent = exports.M3u8MediaInputMessage = exports.M3u8MediaInputConfiguration = exports.UdpTsInputMessage = void 0;
10
- exports.UpdatePlaylist = exports.UpdateDestinationPlaylist = exports.UpdateCredentials = exports.AwsCredentials = exports.CmafWebVttUpdateConfiguration = exports.CmafWebVttConfiguration = exports.HlsTsAudioMessage = exports.HlsTsAudioConfiguration = exports.CmafAudioMessage = exports.CmafAudioConfiguration = exports.HlsTsVideoMessage = exports.HlsTsVideoConfiguration = exports.CmafVideoMessage = exports.CmafVideoConfiguration = exports.CMAFDestination = exports.LocalPullDestination = exports.AwsS3PushDestination = exports.Mp4Encryption_Mp4EncryptionScheme = exports.Mp4Encryption = exports.AudioSplitMultichannelEvent = exports.AudioSplitMultichannelConfiguration = exports.AudioSplitMultichannelMessage = exports.AudioSplitMultichannelSource = exports.AudioBuildMultichannelEvent = exports.AudioBuildMultichannelConfiguration = exports.AudioBuildMultichannelUpdateChannels = exports.AudioBuildMultichannelMessage = exports.AudioBuildMultichannelSource = exports.AudioGainEvent = exports.AudioGainUpdateConfiguration = exports.AudioGainConfiguration = exports.AudioGainMessage = exports.AudioMixMatrixEvent = exports.AudioMixMatrixUpdateConfiguration = exports.AudioMixMatrixConfiguration = exports.ChannelGainMapping = exports.AudioMixMatrixMessage = exports.AudioMixEvent = exports.AudioMixUpdateConfiguration = exports.AudioMixConfiguration = exports.AudioMixMessage = exports.AudioMixSource = exports.MetadataCombineEvent = exports.MetadataCombineConfiguration = exports.MetadataCombineMessage = exports.TransitionComplete = exports.VideoComposeSourceEvent = exports.VideoComposeUpdateConfiguration = exports.VideoComposeConfiguration_MissingStreamBehaviour = exports.VideoComposeConfiguration_PixelFormat = void 0;
11
- exports.FrameRate = exports.FileWebVttOutputEvent = exports.FileWebVttOutputMessage = exports.FileWebVttOutputConfiguration = exports.FileMp4OutputEvent = exports.FileMp4OutputStatus_State = exports.FileMp4OutputStatus = exports.FileMp4OutputMessage = exports.FileMp4OutputWriteMessage = exports.FileMp4OutputConfiguration = exports.FileTsOutputEvent = exports.FileTsOutputMessage = exports.FileTsOutputConfiguration = exports.RtmpOutputEvent_State = exports.RtmpOutputEvent = exports.RtmpOutputMessage = exports.SslClientOptions = exports.RtmpOutputConfiguration = exports.WhepOutputEvent = exports.WhepOutputMessage = exports.WhepOutputConfiguration = exports.WebRTCBrowserDuplexEvent = exports.WebRTCBrowserDuplexMessage = exports.WebRTCBrowserDuplexConfiguration = exports.WhipOutputEvent = exports.WhipOutputMessage = exports.WhipOutputConfiguration = exports.SrtOutputEvent = exports.SrtOutputMessage = exports.SrtOutputConfiguration = exports.UdpTsOutputEvent = exports.UdpTsOutputMessage = exports.UdpTsOutputConfiguration = exports.HlsOutputEvent = exports.HlsTsCombinedPushMessage = exports.HlsPushDestination = exports.HlsTsCombinedPushConfiguration = exports.HlsTsMultiVariantMessage = exports.HlsTsMultiVariantConfiguration = exports.CmafMultiVariantMessage = exports.CmafMultiVariantConfiguration = exports.CmafWebVttMessage = exports.MultiVariantPlaylistData = exports.TsMediaPlaylistData = exports.CmafMediaPlaylistData = exports.PlaylistPart = exports.ProgramDateTime = exports.HlsTag = exports.MediaSegment = exports.AdMarker = void 0;
12
- exports.AmdMA35DEncodeCommon_CBR = exports.AmdMA35DEncodeCommon_ConstQp = exports.AmdMA35DEncodeCommon_TrinaryFlag = exports.AmdMA35DEncodeCommon_TuneMetrics = exports.AmdMA35DEncodeCommon_QpMode = exports.AmdMA35DEncodeCommon_Preset = exports.AmdMA35DEncodeCommon = exports.AmdMA35DLoad_ComputeUnitLoad = exports.AmdMA35DLoad = exports.AmdU30Hevc_AmdU30HevcTier = exports.AmdU30Hevc_AmdU30HevcProfile = exports.AmdU30Hevc = exports.AmdU30H264_AmdU30H264Profile = exports.AmdU30H264 = exports.LoganHevc_LoganHevcTier = exports.LoganHevc_LoganHevcProfile = exports.LoganHevc = exports.LoganH264_LoganH264Profile = exports.LoganH264 = exports.QuadraHevc_QuadraHevcTier = exports.QuadraHevc_QuadraHevcProfile = exports.QuadraHevc = exports.QuadraH264_QuadraH264Profile = exports.QuadraH264 = exports.NvidiaHevc_NvidiaHevcTier = exports.NvidiaHevc_NvidiaHevcProfile = exports.NvidiaHevc = exports.NvidiaH264_NvidiaH264Profile = exports.NvidiaH264 = exports.NvidiaRateControl_NvidiaRateControlMode = exports.NvidiaRateControl = exports.VideoDecodeEvent = exports.VideoDecodeMessage = exports.VideoDecodeConfiguration_VideoDecoder = exports.VideoDecodeConfiguration = exports.VideoEncodeEvent = exports.VideoEncodeMessage = exports.VideoEncodeConfiguration = exports.VideoEncodeStream = exports.X265Codec_X265Tier = exports.X265Codec_X265Tune = exports.X265Codec_X265Preset = exports.X265Codec_X265Profile = exports.X265Codec = exports.X264Codec_X264NalHrd = exports.X264Codec_X264Tune = exports.X264Codec_X264Preset = exports.X264Codec_X264Profile = exports.X264Codec = exports.SampleAspectRatio = void 0;
13
- exports.SubtitleConvertEvent = exports.SubtitleConvertMessage = exports.SubtitleConvertConfiguration = exports.Cta708EncodeConfiguration = exports.Cta608EncodeConfiguration_Cta608EncodeStyle = exports.Cta608EncodeConfiguration = exports.WebVttEncodeConfiguration = exports.AudioEncodeEvent = exports.AudioEncodeMessage = exports.AudioEncodeConfiguration = exports.OpusEncodeConfiguration = exports.AacEncodeConfiguration_AacEncapsulation = exports.AacEncodeConfiguration_AacProfile = exports.AacEncodeConfiguration = exports.StreamAlignEvent = exports.StreamAlignMessage = exports.StreamAlignConfiguration = exports.StreamSyncEvent = exports.StreamSyncMessage = exports.StreamSyncConfiguration = exports.JitterBufferEvent = exports.JitterBufferMessage = exports.JitterBufferConfiguration = exports.StreamMetadataOverrideEvent = exports.StreamMetadataOverrideMessage = exports.StreamMetadataOverrideUpdateConfiguration = exports.StreamMetadataOverrideConfiguration = exports.StreamKeyOverrideEvent = exports.StreamKeyOverrideMessage = exports.StreamKeyOverrideConfiguration = exports.StreamTimestampNudgeEvent = exports.StreamTimestampNudgeMessage = exports.StreamTimestampNudgeConfiguration = exports.StreamChaosMonkeyEvent = exports.StreamChaosMonkeyMessage = exports.StreamChaosMonkeyConfiguration = exports.VideoTransformEvent = exports.VideoTransformMessage = exports.VideoTransformConfiguration = exports.SoftwareDeinterlace_SoftwareDeinterlaceAlgorithm = exports.SoftwareDeinterlace = exports.NoDeinterlace = exports.AmdMA35DHevc_AmdMA35DHevcTier = exports.AmdMA35DHevc_AmdMA35DHevcProfile = exports.AmdMA35DHevc = exports.AmdMA35DH264_AmdMA35DH264Profile = exports.AmdMA35DH264 = exports.AmdMA35DEncodeCommon_ConstrainedABR = exports.AmdMA35DEncodeCommon_ConstrainedVBR = exports.AmdMA35DEncodeCommon_VBR = void 0;
14
- exports.SubtitleTranslateAwsMessage = exports.SubtitleTranslateAwsConfiguration = exports.AudioTranscribeWhisperEvent = exports.AudioTranscribeWhisperMessage = exports.AudioTranscribeWhisperConfiguration_SamplingStrategy = exports.AudioTranscribeWhisperConfiguration = exports.AudioTranscribeAzureEvent = exports.AudioTranscribeAzureMessage = exports.AudioTranscribeAzureConfiguration_ProfanityOption = exports.AudioTranscribeAzureConfiguration = exports.AudioTranscribeAwsEvent = exports.AudioTranscribeAwsMessage = exports.AudioTranscribeAwsConfiguration = exports.RtpInputEvent = exports.RtpInputMessage = exports.RtpInputConfiguration = exports.RtpStream = exports.RtpHEVC = exports.RtpH264 = exports.RtpMpeg4GenericAacHbr = exports.RtpEac3 = exports.RtpLinearPcm_BitDepth = exports.RtpLinearPcm = exports.Interface_StandardInterface = exports.Interface = exports.StreamTimestampReportEvent = exports.StreamTimestampReport = exports.StreamTimestampReportMessage = exports.StreamTimestampReportConfiguration = exports.AudioMeasureLevelsEvent = exports.AudioMeasureLevels = exports.ChannelLevels = exports.Db = exports.AudioMeasureLevelsMessage = exports.AudioMeasureLevelsConfiguration = exports.StreamStatisticsEvent = exports.StreamStatisticsMessage = exports.StreamStatisticsConfiguration = exports.StreamSwitchHardEvent = exports.StreamSwitchHardMessage = exports.StreamSwitchHardSwitch = exports.StreamSwitchHardConfiguration = exports.StreamSwitchSmoothEvent = exports.StreamSwitchTransitionComplete = exports.StreamSwitchSmoothSwitchError = exports.StreamSwitchSmoothMessage = exports.StreamSwitchSmoothSwitch = exports.StreamSwitchSmoothConfiguration_Alignment = exports.StreamSwitchSmoothConfiguration_StreamSwitchSmoothHardwareAcceleration = exports.StreamSwitchSmoothConfiguration = void 0;
15
- exports.MoqOutputConfiguration = exports.FrameStorePlayerEvent = exports.FrameStorePlayerMessage = exports.FrameStorePlayerConfiguration = exports.StreamSelection_Subset = exports.StreamSelection_All = exports.StreamSelection = exports.SingleCut = exports.FrameStoreRecorderEvent = exports.FrameStoreRecorderMessage = exports.FrameStoreCutComplete = exports.FrameStoreCutProgress = exports.FrameStoreCutRequest_FileFormat = exports.FrameStoreCutRequest = exports.FrameStoreRecorderConfiguration = exports.FrameStoreExpiry = exports.Scte35SegmentationComponent = exports.Scte35SegmentDeliveryRestrictions = exports.Scte35SegmentationDescriptor = exports.Scte35AudioComponent = exports.Scte35AudioDescriptor = exports.Scte35TimeDescriptor = exports.Scte35DtmfDescriptor = exports.Scte35AvailDescriptor = exports.Scte35GenericDescriptor = exports.Scte35SpliceDescriptor = exports.Scte35ScheduleCommandComponent = exports.Scte35ScheduleCommandMode_ScheduleComponent = exports.Scte35ScheduleCommandMode_ScheduleProgram = exports.Scte35ScheduleCommandMode = exports.Scte35ScheduleItem = exports.Scte35ScheduleCommand = exports.Scte35PrivateCommand = exports.Scte35BreakDuration = exports.Scte35SpliceTime = exports.Scte35InsertCommandComponent = exports.Scte35InsertCommandMode_InsertComponent = exports.Scte35InsertCommandMode_InsertProgram = exports.Scte35InsertCommandMode = exports.Scte35InsertCommand = exports.Scte35TimeSignalCommand = exports.Scte35SpliceCommand = exports.Scte35SpliceInfoSection = exports.VancType2AncillaryId = exports.Smpte2038Message = exports.Scte35Event = exports.AncillaryEvent = exports.AncillaryMessage = exports.AncillaryConfiguration = exports.SubtitleTranslateAwsEvent = void 0;
16
- exports.NorskStatusEvent = exports.Hello = exports.SourceSubscriptionError_UnsupportedConversion = exports.SourceSubscriptionError_NoSubscriberPin = exports.SourceSubscriptionError_SourceStream = exports.SourceSubscriptionError = exports.SubscriptionError_SourceSubscriptionErrors = exports.SubscriptionError_MultipleStreams = exports.SubscriptionError = exports.SubscriptionResponse = exports.Subscription = exports.SubscribeSource = exports.Hardware = exports.MA35DCard = exports.MA35DVersionInfo = exports.MA35DDeviceInfo = exports.DeckLinkDisplayModes = exports.DeckLinkDisplayMode = exports.DeckLinkCard = exports.CpuTopology = exports.NumaNode = exports.Processor = exports.Core = exports.LogicalCpuId = exports.MoqOutputEvent = exports.MoqOutputMessage = void 0;
9
+ exports.Easing_SimpleEasing = exports.Easing = exports.Transition = exports.ComposePart = exports.OffsetRectangle = exports.WhipInputEvent = exports.WhipInputMessage = exports.WhipInputConfiguration = exports.WebRtcIceServer = exports.WebRtcConfiguration = exports.BrowserInputEvent = exports.BrowserEvent = exports.BrowserOnLoadError = exports.BrowserOnLoadEnd = exports.BrowserOnLoadStart = exports.BrowserOnLoaded = exports.BrowserInputMessage = exports.BrowserInputUpdateConfiguration = exports.BrowserInputConfiguration = exports.AudioSignalGeneratorEvent = exports.AudioSignalGeneratorConfiguration = exports.Wave = exports.SineWave = exports.FileMp4InputEvent = exports.FileMp4InputInfo = exports.FileMp4InputStatus_State = exports.FileMp4InputStatus = exports.FileMp4InputMessage = exports.FileMp4InputConfigurationUpdate = exports.FileMp4InputConfiguration_StartMode = exports.FileMp4InputConfiguration = exports.FileImageInputEvent = exports.FileImageInputConfiguration_ImageFormat = exports.FileImageInputConfiguration_FileImageHardwareAcceleration = exports.FileImageInputConfiguration = exports.DeltacastInputEvent = exports.DeltacastInputMessage = exports.DeltacastInputConfiguration = exports.DeckLinkInputEvent = exports.DeckLinkInputMessage = exports.DeckLinkInputConfiguration = exports.DeckLinkCardIndex = exports.VideoTestCardGeneratorEvent = exports.VideoTestCardGeneratorMessage = exports.TestCardVideoConfiguration = exports.TestCardVideoSetup = exports.M3u8MediaInputEvent = exports.M3u8MediaInputMessage = exports.M3u8MediaInputConfiguration = exports.UdpTsInputMessage = void 0;
10
+ exports.CmafWebVttUpdateConfiguration = exports.CmafWebVttConfiguration = exports.HlsTsAudioMessage = exports.HlsTsAudioConfiguration = exports.CmafAudioMessage = exports.CmafAudioConfiguration = exports.HlsTsVideoMessage = exports.HlsTsVideoConfiguration = exports.CmafVideoMessage = exports.CmafVideoConfiguration = exports.CMAFDestination = exports.LocalPullDestination = exports.AwsS3PushDestination = exports.Mp4Encryption_Mp4EncryptionScheme = exports.Mp4Encryption = exports.AudioSplitMultichannelEvent = exports.AudioSplitMultichannelConfiguration = exports.AudioSplitMultichannelMessage = exports.AudioSplitMultichannelSource = exports.AudioBuildMultichannelEvent = exports.AudioBuildMultichannelConfiguration = exports.AudioBuildMultichannelUpdateChannels = exports.AudioBuildMultichannelMessage = exports.AudioBuildMultichannelSource = exports.AudioGainEvent = exports.AudioGainUpdateConfiguration = exports.AudioGainConfiguration = exports.AudioGainMessage = exports.AudioMixMatrixEvent = exports.AudioMixMatrixUpdateConfiguration = exports.AudioMixMatrixConfiguration = exports.ChannelGainMapping = exports.AudioMixMatrixMessage = exports.AudioMixEvent = exports.AudioMixUpdateConfiguration = exports.AudioMixConfiguration = exports.AudioMixMessage = exports.AudioMixSource = exports.MetadataCombineEvent = exports.MetadataCombineConfiguration = exports.MetadataCombineMessage = exports.TransitionComplete = exports.VideoComposeSourceEvent = exports.VideoComposeUpdateConfiguration = exports.VideoComposeConfiguration_MissingStreamBehaviour = exports.VideoComposeConfiguration_PixelFormat = exports.VideoComposeConfiguration_ComposeHardwareAcceleration = exports.VideoComposeConfiguration = exports.VideoComposeMessage = exports.PartId = void 0;
11
+ exports.FileMp4OutputStatus_State = exports.FileMp4OutputStatus = exports.FileMp4OutputMessage = exports.FileMp4OutputWriteMessage = exports.FileMp4OutputConfiguration = exports.FileTsOutputEvent = exports.FileTsOutputMessage = exports.FileTsOutputConfiguration = exports.RtmpOutputEvent_State = exports.RtmpOutputEvent = exports.RtmpOutputMessage = exports.SslClientOptions = exports.RtmpOutputConfiguration = exports.WhepOutputEvent_State = exports.WhepOutputEvent = exports.WhepOutputMessage = exports.WhepOutputConfiguration = exports.WebRTCBrowserDuplexEvent = exports.WebRTCBrowserDuplexMessage = exports.WebRTCBrowserDuplexConfiguration = exports.WhipOutputEvent = exports.WhipOutputMessage = exports.WhipOutputConfiguration = exports.SrtOutputEvent = exports.SrtOutputMessage = exports.SrtOutputConfiguration = exports.UdpTsOutputEvent = exports.UdpTsOutputMessage = exports.UdpTsOutputConfiguration = exports.HlsOutputEvent = exports.HlsTsCombinedPushMessage = exports.HlsPushDestination = exports.HlsTsCombinedPushConfiguration = exports.HlsTsMultiVariantMessage = exports.HlsTsMultiVariantConfiguration = exports.CmafMultiVariantMessage = exports.CmafMultiVariantConfiguration = exports.CmafWebVttMessage = exports.MultiVariantPlaylistData = exports.TsMediaPlaylistData = exports.CmafMediaPlaylistData = exports.PlaylistPart = exports.ProgramDateTime = exports.HlsTag = exports.MediaSegment = exports.AdMarker = exports.UpdatePlaylist = exports.UpdateDestinationPlaylist = exports.UpdateCredentials = exports.AwsCredentials = void 0;
12
+ exports.AmdMA35DEncodeCommon_Preset = exports.AmdMA35DEncodeCommon = exports.AmdMA35DLoad_ComputeUnitLoad = exports.AmdMA35DLoad = exports.AmdU30Hevc_AmdU30HevcTier = exports.AmdU30Hevc_AmdU30HevcProfile = exports.AmdU30Hevc = exports.AmdU30H264_AmdU30H264Profile = exports.AmdU30H264 = exports.LoganHevc_LoganHevcTier = exports.LoganHevc_LoganHevcProfile = exports.LoganHevc = exports.LoganH264_LoganH264Profile = exports.LoganH264 = exports.QuadraHevc_QuadraHevcTier = exports.QuadraHevc_QuadraHevcProfile = exports.QuadraHevc = exports.QuadraH264_QuadraH264Profile = exports.QuadraH264 = exports.NvidiaHevc_NvidiaHevcTier = exports.NvidiaHevc_NvidiaHevcProfile = exports.NvidiaHevc = exports.NvidiaH264_NvidiaH264Profile = exports.NvidiaH264 = exports.NvidiaRateControl_NvidiaRateControlMode = exports.NvidiaRateControl = exports.VideoDecodeEvent = exports.VideoDecodeMessage = exports.VideoDecodeConfiguration_VideoDecoder = exports.VideoDecodeConfiguration = exports.VideoEncodeEvent = exports.VideoEncodeMessage = exports.VideoEncodeConfiguration = exports.VideoEncodeStream = exports.X265Codec_X265Tier = exports.X265Codec_X265Tune = exports.X265Codec_X265Preset = exports.X265Codec_X265Profile = exports.X265Codec = exports.X264Codec_X264NalHrd = exports.X264Codec_X264Tune = exports.X264Codec_X264Preset = exports.X264Codec_X264Profile = exports.X264Codec = exports.SampleAspectRatio = exports.FrameRate = exports.FileWebVttOutputEvent = exports.FileWebVttOutputMessage = exports.FileWebVttOutputConfiguration = exports.FileMp4OutputEvent = void 0;
13
+ exports.Cta608EncodeConfiguration = exports.WebVttEncodeConfiguration = exports.AudioEncodeEvent = exports.AudioEncodeMessage = exports.AudioEncodeConfiguration = exports.OpusEncodeConfiguration = exports.AacEncodeConfiguration_AacEncapsulation = exports.AacEncodeConfiguration_AacProfile = exports.AacEncodeConfiguration = exports.StreamAlignEvent = exports.StreamAlignMessage = exports.StreamAlignConfiguration = exports.StreamSyncEvent = exports.StreamSyncMessage = exports.StreamSyncConfiguration = exports.JitterBufferEvent = exports.JitterBufferMessage = exports.JitterBufferConfiguration = exports.StreamMetadataOverrideEvent = exports.StreamMetadataOverrideMessage = exports.StreamMetadataOverrideUpdateConfiguration = exports.StreamMetadataOverrideConfiguration = exports.StreamKeyOverrideEvent = exports.StreamKeyOverrideMessage = exports.StreamKeyOverrideConfiguration = exports.StreamTimestampNudgeEvent = exports.StreamTimestampNudgeMessage = exports.StreamTimestampNudgeConfiguration = exports.StreamChaosMonkeyEvent = exports.StreamChaosMonkeyMessage = exports.StreamChaosMonkeyConfiguration = exports.VideoTransformEvent = exports.VideoTransformMessage = exports.VideoTransformConfiguration = exports.SoftwareDeinterlace_SoftwareDeinterlaceAlgorithm = exports.SoftwareDeinterlace = exports.NoDeinterlace = exports.AmdMA35DHevc_AmdMA35DHevcTier = exports.AmdMA35DHevc_AmdMA35DHevcProfile = exports.AmdMA35DHevc = exports.AmdMA35DH264_AmdMA35DH264Profile = exports.AmdMA35DH264 = exports.AmdMA35DEncodeCommon_ContentAdaptive = exports.AmdMA35DEncodeCommon_ConstrainedVBR = exports.AmdMA35DEncodeCommon_VBR = exports.AmdMA35DEncodeCommon_CBR = exports.AmdMA35DEncodeCommon_ConstQp = exports.AmdMA35DEncodeCommon_TrinaryFlag = exports.AmdMA35DEncodeCommon_TuneMetrics = exports.AmdMA35DEncodeCommon_QpMode = void 0;
14
+ exports.AudioTranscribeWhisperConfiguration = exports.AudioTranscribeAzureEvent = exports.AudioTranscribeAzureMessage = exports.AudioTranscribeAzureConfiguration_ProfanityOption = exports.AudioTranscribeAzureConfiguration = exports.AudioTranscribeAwsEvent = exports.AudioTranscribeAwsMessage = exports.AudioTranscribeAwsConfiguration = exports.RtpInputEvent = exports.RtpInputMessage = exports.RtpInputConfiguration = exports.RtpStream = exports.RtpHEVC = exports.RtpH264 = exports.RtpMpeg4GenericAacHbr = exports.RtpEac3 = exports.RtpLinearPcm_BitDepth = exports.RtpLinearPcm = exports.Interface_StandardInterface = exports.Interface = exports.StreamTimestampReportEvent = exports.StreamTimestampReport = exports.StreamTimestampReportMessage = exports.StreamTimestampReportConfiguration = exports.AudioMeasureLevelsEvent = exports.AudioMeasureLevels = exports.ChannelLevels = exports.Db = exports.AudioMeasureLevelsMessage = exports.AudioMeasureLevelsConfiguration = exports.StreamStatisticsEvent = exports.StreamStatisticsMessage = exports.StreamStatisticsConfiguration = exports.StreamSwitchHardEvent = exports.StreamSwitchHardMessage = exports.StreamSwitchHardSwitch = exports.StreamSwitchHardConfiguration = exports.StreamSwitchSmoothEvent = exports.StreamSwitchTransitionComplete = exports.StreamSwitchSmoothSwitchError = exports.StreamSwitchSmoothMessage = exports.StreamSwitchSmoothSwitch = exports.StreamSwitchSmoothConfiguration_Alignment = exports.StreamSwitchSmoothConfiguration_StreamSwitchSmoothHardwareAcceleration = exports.StreamSwitchSmoothConfiguration = exports.SubtitleConvertEvent = exports.SubtitleConvertMessage = exports.SubtitleConvertConfiguration = exports.Cta708EncodeConfiguration = exports.Cta608EncodeConfiguration_Cta608EncodeStyle = void 0;
15
+ exports.StreamSelection_All = exports.StreamSelection = exports.SingleCut = exports.FrameStoreRecorderEvent = exports.FrameStoreRecorderMessage = exports.FrameStoreCutComplete = exports.FrameStoreCutProgress = exports.FrameStoreCutRequest_FileFormat = exports.FrameStoreCutRequest = exports.FrameStoreRecorderConfiguration = exports.FrameStoreExpiry = exports.Scte35SegmentationComponent = exports.Scte35SegmentDeliveryRestrictions = exports.Scte35SegmentationDescriptor = exports.Scte35AudioComponent = exports.Scte35AudioDescriptor = exports.Scte35TimeDescriptor = exports.Scte35DtmfDescriptor = exports.Scte35AvailDescriptor = exports.Scte35GenericDescriptor = exports.Scte35SpliceDescriptor = exports.Scte35ScheduleCommandComponent = exports.Scte35ScheduleCommandMode_ScheduleComponent = exports.Scte35ScheduleCommandMode_ScheduleProgram = exports.Scte35ScheduleCommandMode = exports.Scte35ScheduleItem = exports.Scte35ScheduleCommand = exports.Scte35PrivateCommand = exports.Scte35BreakDuration = exports.Scte35SpliceTime = exports.Scte35InsertCommandComponent = exports.Scte35InsertCommandMode_InsertComponent = exports.Scte35InsertCommandMode_InsertProgram = exports.Scte35InsertCommandMode = exports.Scte35InsertCommand = exports.Scte35TimeSignalCommand = exports.Scte35SpliceCommand = exports.Scte35SpliceInfoSection = exports.VancType2AncillaryId = exports.Smpte2038Message = exports.Scte35Event = exports.AncillaryEvent = exports.AncillaryMessage = exports.AncillaryConfiguration = exports.SubtitleTranslateAwsEvent = exports.SubtitleTranslateAwsMessage = exports.SubtitleTranslateAwsConfiguration = exports.AudioTranscribeWhisperEvent = exports.AudioTranscribeWhisperMessage = exports.AudioTranscribeWhisperConfiguration_SamplingStrategy = void 0;
16
+ exports.NorskStatusEvent = exports.Hello = exports.SourceSubscriptionError_UnsupportedConversion = exports.SourceSubscriptionError_NoSubscriberPin = exports.SourceSubscriptionError_SourceStream = exports.SourceSubscriptionError = exports.SubscriptionError_SourceSubscriptionErrors = exports.SubscriptionError_MultipleStreams = exports.SubscriptionError = exports.SubscriptionResponse = exports.Subscription = exports.SubscribeSource = exports.Hardware = exports.MA35DCard = exports.MA35DVersionInfo = exports.MA35DDeviceInfo = exports.DeckLinkDisplayModes = exports.DeckLinkDisplayMode = exports.DeckLinkCard = exports.CpuTopology = exports.NumaNode = exports.Processor = exports.Core = exports.LogicalCpuId = exports.MoqOutputEvent = exports.MoqOutputMessage = exports.MoqOutputConfiguration = exports.FrameStorePlayerEvent = exports.FrameStorePlayerMessage = exports.FrameStorePlayerConfiguration = exports.StreamSelection_Subset = void 0;
17
17
  const protobuf_1 = require("@bufbuild/protobuf");
18
18
  const common_pb_js_1 = require("./shared/common_pb.js");
19
19
  /**
@@ -2355,6 +2355,10 @@ var ValidationResponse_ContextValidationResponse;
2355
2355
  * @generated from enum value: CONTEXT_VALIDATION_DENY_AND_QUEUE = 3;
2356
2356
  */
2357
2357
  ValidationResponse_ContextValidationResponse[ValidationResponse_ContextValidationResponse["CONTEXT_VALIDATION_DENY_AND_QUEUE"] = 3] = "CONTEXT_VALIDATION_DENY_AND_QUEUE";
2358
+ /**
2359
+ * @generated from enum value: CONTEXT_VALIDATION_DENY_AND_DROP = 4;
2360
+ */
2361
+ ValidationResponse_ContextValidationResponse[ValidationResponse_ContextValidationResponse["CONTEXT_VALIDATION_DENY_AND_DROP"] = 4] = "CONTEXT_VALIDATION_DENY_AND_DROP";
2358
2362
  })(ValidationResponse_ContextValidationResponse = exports.ValidationResponse_ContextValidationResponse || (exports.ValidationResponse_ContextValidationResponse = {}));
2359
2363
  // Retrieve enum metadata with: proto3.getEnumType(ValidationResponse_ContextValidationResponse)
2360
2364
  protobuf_1.proto3.util.setEnumType(ValidationResponse_ContextValidationResponse, "norsk.api.media.ValidationResponse.ContextValidationResponse", [
@@ -2362,6 +2366,7 @@ protobuf_1.proto3.util.setEnumType(ValidationResponse_ContextValidationResponse,
2362
2366
  { no: 1, name: "CONTEXT_VALIDATION_ALLOW" },
2363
2367
  { no: 2, name: "CONTEXT_VALIDATION_ALLOW_AND_TERMINATE" },
2364
2368
  { no: 3, name: "CONTEXT_VALIDATION_DENY_AND_QUEUE" },
2369
+ { no: 4, name: "CONTEXT_VALIDATION_DENY_AND_DROP" },
2365
2370
  ]);
2366
2371
  /**
2367
2372
  * @generated from message norsk.api.media.ValidationResponseAck
@@ -4886,6 +4891,114 @@ DeckLinkInputEvent.fields = protobuf_1.proto3.util.newFieldList(() => [
4886
4891
  { no: 2, name: "outbound_context", kind: "message", T: Context, oneof: "message" },
4887
4892
  { no: 3, name: "stream_statistics", kind: "message", T: MultiStreamStatistics, oneof: "message" },
4888
4893
  ]);
4894
+ /**
4895
+ * @generated from message norsk.api.media.DeltacastInputConfiguration
4896
+ */
4897
+ class DeltacastInputConfiguration extends protobuf_1.Message {
4898
+ constructor(data) {
4899
+ super();
4900
+ /**
4901
+ * @generated from field: string source_name = 2;
4902
+ */
4903
+ this.sourceName = "";
4904
+ /**
4905
+ * @generated from field: uint32 device_id = 3;
4906
+ */
4907
+ this.deviceId = 0;
4908
+ /**
4909
+ * @generated from field: uint32 card_index = 4;
4910
+ */
4911
+ this.cardIndex = 0;
4912
+ protobuf_1.proto3.util.initPartial(data, this);
4913
+ }
4914
+ static fromBinary(bytes, options) {
4915
+ return new DeltacastInputConfiguration().fromBinary(bytes, options);
4916
+ }
4917
+ static fromJson(jsonValue, options) {
4918
+ return new DeltacastInputConfiguration().fromJson(jsonValue, options);
4919
+ }
4920
+ static fromJsonString(jsonString, options) {
4921
+ return new DeltacastInputConfiguration().fromJsonString(jsonString, options);
4922
+ }
4923
+ static equals(a, b) {
4924
+ return protobuf_1.proto3.util.equals(DeltacastInputConfiguration, a, b);
4925
+ }
4926
+ }
4927
+ exports.DeltacastInputConfiguration = DeltacastInputConfiguration;
4928
+ DeltacastInputConfiguration.runtime = protobuf_1.proto3;
4929
+ DeltacastInputConfiguration.typeName = "norsk.api.media.DeltacastInputConfiguration";
4930
+ DeltacastInputConfiguration.fields = protobuf_1.proto3.util.newFieldList(() => [
4931
+ { no: 1, name: "id", kind: "message", T: MediaNodeId },
4932
+ { no: 2, name: "source_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
4933
+ { no: 3, name: "device_id", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
4934
+ { no: 4, name: "card_index", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
4935
+ { no: 5, name: "stats_sampling", kind: "message", T: StreamStatisticsSampling },
4936
+ ]);
4937
+ /**
4938
+ * @generated from message norsk.api.media.DeltacastInputMessage
4939
+ */
4940
+ class DeltacastInputMessage extends protobuf_1.Message {
4941
+ constructor(data) {
4942
+ super();
4943
+ /**
4944
+ * @generated from oneof norsk.api.media.DeltacastInputMessage.message
4945
+ */
4946
+ this.message = { case: undefined };
4947
+ protobuf_1.proto3.util.initPartial(data, this);
4948
+ }
4949
+ static fromBinary(bytes, options) {
4950
+ return new DeltacastInputMessage().fromBinary(bytes, options);
4951
+ }
4952
+ static fromJson(jsonValue, options) {
4953
+ return new DeltacastInputMessage().fromJson(jsonValue, options);
4954
+ }
4955
+ static fromJsonString(jsonString, options) {
4956
+ return new DeltacastInputMessage().fromJsonString(jsonString, options);
4957
+ }
4958
+ static equals(a, b) {
4959
+ return protobuf_1.proto3.util.equals(DeltacastInputMessage, a, b);
4960
+ }
4961
+ }
4962
+ exports.DeltacastInputMessage = DeltacastInputMessage;
4963
+ DeltacastInputMessage.runtime = protobuf_1.proto3;
4964
+ DeltacastInputMessage.typeName = "norsk.api.media.DeltacastInputMessage";
4965
+ DeltacastInputMessage.fields = protobuf_1.proto3.util.newFieldList(() => [
4966
+ { no: 1, name: "initial_config", kind: "message", T: DeltacastInputConfiguration, oneof: "message" },
4967
+ { no: 2, name: "nudge", kind: "message", T: TimestampNudge, oneof: "message" },
4968
+ ]);
4969
+ /**
4970
+ * @generated from message norsk.api.media.DeltacastInputEvent
4971
+ */
4972
+ class DeltacastInputEvent extends protobuf_1.Message {
4973
+ constructor(data) {
4974
+ super();
4975
+ /**
4976
+ * @generated from oneof norsk.api.media.DeltacastInputEvent.message
4977
+ */
4978
+ this.message = { case: undefined };
4979
+ protobuf_1.proto3.util.initPartial(data, this);
4980
+ }
4981
+ static fromBinary(bytes, options) {
4982
+ return new DeltacastInputEvent().fromBinary(bytes, options);
4983
+ }
4984
+ static fromJson(jsonValue, options) {
4985
+ return new DeltacastInputEvent().fromJson(jsonValue, options);
4986
+ }
4987
+ static fromJsonString(jsonString, options) {
4988
+ return new DeltacastInputEvent().fromJsonString(jsonString, options);
4989
+ }
4990
+ static equals(a, b) {
4991
+ return protobuf_1.proto3.util.equals(DeltacastInputEvent, a, b);
4992
+ }
4993
+ }
4994
+ exports.DeltacastInputEvent = DeltacastInputEvent;
4995
+ DeltacastInputEvent.runtime = protobuf_1.proto3;
4996
+ DeltacastInputEvent.typeName = "norsk.api.media.DeltacastInputEvent";
4997
+ DeltacastInputEvent.fields = protobuf_1.proto3.util.newFieldList(() => [
4998
+ { no: 1, name: "node_id", kind: "message", T: MediaNodeId, oneof: "message" },
4999
+ { no: 2, name: "outbound_context", kind: "message", T: Context, oneof: "message" },
5000
+ { no: 3, name: "stream_statistics", kind: "message", T: MultiStreamStatistics, oneof: "message" },
5001
+ ]);
4889
5002
  /**
4890
5003
  * @generated from message norsk.api.media.FileImageInputConfiguration
4891
5004
  */
@@ -4904,6 +5017,10 @@ class FileImageInputConfiguration extends protobuf_1.Message {
4904
5017
  * @generated from field: norsk.api.media.FileImageInputConfiguration.ImageFormat image_format = 4;
4905
5018
  */
4906
5019
  this.imageFormat = FileImageInputConfiguration_ImageFormat.INFER;
5020
+ /**
5021
+ * @generated from field: norsk.api.media.FileImageInputConfiguration.FileImageHardwareAcceleration hardware_acceleration = 6;
5022
+ */
5023
+ this.hardwareAcceleration = FileImageInputConfiguration_FileImageHardwareAcceleration.FILEIMAGE_NONE;
4907
5024
  protobuf_1.proto3.util.initPartial(data, this);
4908
5025
  }
4909
5026
  static fromBinary(bytes, options) {
@@ -4928,6 +5045,26 @@ FileImageInputConfiguration.fields = protobuf_1.proto3.util.newFieldList(() => [
4928
5045
  { no: 3, name: "file_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
4929
5046
  { no: 4, name: "image_format", kind: "enum", T: protobuf_1.proto3.getEnumType(FileImageInputConfiguration_ImageFormat) },
4930
5047
  { no: 5, name: "stats_sampling", kind: "message", T: StreamStatisticsSampling },
5048
+ { no: 6, name: "hardware_acceleration", kind: "enum", T: protobuf_1.proto3.getEnumType(FileImageInputConfiguration_FileImageHardwareAcceleration) },
5049
+ ]);
5050
+ /**
5051
+ * @generated from enum norsk.api.media.FileImageInputConfiguration.FileImageHardwareAcceleration
5052
+ */
5053
+ var FileImageInputConfiguration_FileImageHardwareAcceleration;
5054
+ (function (FileImageInputConfiguration_FileImageHardwareAcceleration) {
5055
+ /**
5056
+ * @generated from enum value: FILEIMAGE_NONE = 0;
5057
+ */
5058
+ FileImageInputConfiguration_FileImageHardwareAcceleration[FileImageInputConfiguration_FileImageHardwareAcceleration["FILEIMAGE_NONE"] = 0] = "FILEIMAGE_NONE";
5059
+ /**
5060
+ * @generated from enum value: FILEIMAGE_QUADRA = 1;
5061
+ */
5062
+ FileImageInputConfiguration_FileImageHardwareAcceleration[FileImageInputConfiguration_FileImageHardwareAcceleration["FILEIMAGE_QUADRA"] = 1] = "FILEIMAGE_QUADRA";
5063
+ })(FileImageInputConfiguration_FileImageHardwareAcceleration = exports.FileImageInputConfiguration_FileImageHardwareAcceleration || (exports.FileImageInputConfiguration_FileImageHardwareAcceleration = {}));
5064
+ // Retrieve enum metadata with: proto3.getEnumType(FileImageInputConfiguration_FileImageHardwareAcceleration)
5065
+ protobuf_1.proto3.util.setEnumType(FileImageInputConfiguration_FileImageHardwareAcceleration, "norsk.api.media.FileImageInputConfiguration.FileImageHardwareAcceleration", [
5066
+ { no: 0, name: "FILEIMAGE_NONE" },
5067
+ { no: 1, name: "FILEIMAGE_QUADRA" },
4931
5068
  ]);
4932
5069
  /**
4933
5070
  * @generated from enum norsk.api.media.FileImageInputConfiguration.ImageFormat
@@ -9470,6 +9607,26 @@ WhepOutputEvent.fields = protobuf_1.proto3.util.newFieldList(() => [
9470
9607
  { no: 2, name: "subscription_response", kind: "message", T: SubscriptionResponse, oneof: "message" },
9471
9608
  { no: 3, name: "inbound_context", kind: "message", T: Context, oneof: "message" },
9472
9609
  { no: 4, name: "stream_statistics", kind: "message", T: MultiStreamStatistics, oneof: "message" },
9610
+ { no: 5, name: "status", kind: "enum", T: protobuf_1.proto3.getEnumType(WhepOutputEvent_State), oneof: "message" },
9611
+ ]);
9612
+ /**
9613
+ * @generated from enum norsk.api.media.WhepOutputEvent.State
9614
+ */
9615
+ var WhepOutputEvent_State;
9616
+ (function (WhepOutputEvent_State) {
9617
+ /**
9618
+ * @generated from enum value: WHEP_OUTPUT_STATUS_UNKNOWN = 0;
9619
+ */
9620
+ WhepOutputEvent_State[WhepOutputEvent_State["WHEP_OUTPUT_STATUS_UNKNOWN"] = 0] = "WHEP_OUTPUT_STATUS_UNKNOWN";
9621
+ /**
9622
+ * @generated from enum value: WHEP_OUTPUT_STATUS_READY = 1;
9623
+ */
9624
+ WhepOutputEvent_State[WhepOutputEvent_State["WHEP_OUTPUT_STATUS_READY"] = 1] = "WHEP_OUTPUT_STATUS_READY";
9625
+ })(WhepOutputEvent_State = exports.WhepOutputEvent_State || (exports.WhepOutputEvent_State = {}));
9626
+ // Retrieve enum metadata with: proto3.getEnumType(WhepOutputEvent_State)
9627
+ protobuf_1.proto3.util.setEnumType(WhepOutputEvent_State, "norsk.api.media.WhepOutputEvent.State", [
9628
+ { no: 0, name: "WHEP_OUTPUT_STATUS_UNKNOWN" },
9629
+ { no: 1, name: "WHEP_OUTPUT_STATUS_READY" },
9473
9630
  ]);
9474
9631
  /**
9475
9632
  * @generated from message norsk.api.media.RtmpOutputConfiguration
@@ -11805,7 +11962,7 @@ AmdMA35DEncodeCommon.fields = protobuf_1.proto3.util.newFieldList(() => [
11805
11962
  { no: 2, name: "cbr", kind: "message", T: AmdMA35DEncodeCommon_CBR, oneof: "rateControl" },
11806
11963
  { no: 3, name: "vbr", kind: "message", T: AmdMA35DEncodeCommon_VBR, oneof: "rateControl" },
11807
11964
  { no: 4, name: "constrained_vbr", kind: "message", T: AmdMA35DEncodeCommon_ConstrainedVBR, oneof: "rateControl" },
11808
- { no: 5, name: "constrained_abr", kind: "message", T: AmdMA35DEncodeCommon_ConstrainedABR, oneof: "rateControl" },
11965
+ { no: 5, name: "content_adaptive", kind: "message", T: AmdMA35DEncodeCommon_ContentAdaptive, oneof: "rateControl" },
11809
11966
  { no: 6, name: "lookahead_depth", kind: "message", T: common_pb_js_1.OptionalInt },
11810
11967
  { no: 7, name: "gopSize", kind: "message", T: common_pb_js_1.OptionalInt },
11811
11968
  { no: 8, name: "tempAqGain", kind: "message", T: common_pb_js_1.OptionalInt },
@@ -12070,9 +12227,9 @@ AmdMA35DEncodeCommon_ConstrainedVBR.fields = protobuf_1.proto3.util.newFieldList
12070
12227
  { no: 3, name: "buf_size", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
12071
12228
  ]);
12072
12229
  /**
12073
- * @generated from message norsk.api.media.AmdMA35DEncodeCommon.ConstrainedABR
12230
+ * @generated from message norsk.api.media.AmdMA35DEncodeCommon.ContentAdaptive
12074
12231
  */
12075
- class AmdMA35DEncodeCommon_ConstrainedABR extends protobuf_1.Message {
12232
+ class AmdMA35DEncodeCommon_ContentAdaptive extends protobuf_1.Message {
12076
12233
  constructor(data) {
12077
12234
  super();
12078
12235
  /**
@@ -12090,22 +12247,22 @@ class AmdMA35DEncodeCommon_ConstrainedABR extends protobuf_1.Message {
12090
12247
  protobuf_1.proto3.util.initPartial(data, this);
12091
12248
  }
12092
12249
  static fromBinary(bytes, options) {
12093
- return new AmdMA35DEncodeCommon_ConstrainedABR().fromBinary(bytes, options);
12250
+ return new AmdMA35DEncodeCommon_ContentAdaptive().fromBinary(bytes, options);
12094
12251
  }
12095
12252
  static fromJson(jsonValue, options) {
12096
- return new AmdMA35DEncodeCommon_ConstrainedABR().fromJson(jsonValue, options);
12253
+ return new AmdMA35DEncodeCommon_ContentAdaptive().fromJson(jsonValue, options);
12097
12254
  }
12098
12255
  static fromJsonString(jsonString, options) {
12099
- return new AmdMA35DEncodeCommon_ConstrainedABR().fromJsonString(jsonString, options);
12256
+ return new AmdMA35DEncodeCommon_ContentAdaptive().fromJsonString(jsonString, options);
12100
12257
  }
12101
12258
  static equals(a, b) {
12102
- return protobuf_1.proto3.util.equals(AmdMA35DEncodeCommon_ConstrainedABR, a, b);
12259
+ return protobuf_1.proto3.util.equals(AmdMA35DEncodeCommon_ContentAdaptive, a, b);
12103
12260
  }
12104
12261
  }
12105
- exports.AmdMA35DEncodeCommon_ConstrainedABR = AmdMA35DEncodeCommon_ConstrainedABR;
12106
- AmdMA35DEncodeCommon_ConstrainedABR.runtime = protobuf_1.proto3;
12107
- AmdMA35DEncodeCommon_ConstrainedABR.typeName = "norsk.api.media.AmdMA35DEncodeCommon.ConstrainedABR";
12108
- AmdMA35DEncodeCommon_ConstrainedABR.fields = protobuf_1.proto3.util.newFieldList(() => [
12262
+ exports.AmdMA35DEncodeCommon_ContentAdaptive = AmdMA35DEncodeCommon_ContentAdaptive;
12263
+ AmdMA35DEncodeCommon_ContentAdaptive.runtime = protobuf_1.proto3;
12264
+ AmdMA35DEncodeCommon_ContentAdaptive.typeName = "norsk.api.media.AmdMA35DEncodeCommon.ContentAdaptive";
12265
+ AmdMA35DEncodeCommon_ContentAdaptive.fields = protobuf_1.proto3.util.newFieldList(() => [
12109
12266
  { no: 1, name: "bitrate", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
12110
12267
  { no: 2, name: "max_bitrate", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
12111
12268
  { no: 3, name: "buf_size", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },