@norskvideo/norsk-api 1.0.339 → 1.0.340

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.
@@ -44,7 +44,7 @@ interface IMediaService extends grpc.ServiceDefinition<grpc.UntypedServiceImplem
44
44
  createOutputHlsTsAudio: IMediaService_ICreateOutputHlsTsAudio;
45
45
  createOutputCmafWebVtt: IMediaService_ICreateOutputCmafWebVtt;
46
46
  createOutputHlsTsCombinedPush: IMediaService_ICreateOutputHlsTsCombinedPush;
47
- createOutputCmafMaster: IMediaService_ICreateOutputCmafMaster;
47
+ createOutputCmafMultiVariant: IMediaService_ICreateOutputCmafMultiVariant;
48
48
  createOutputWhip: IMediaService_ICreateOutputWhip;
49
49
  createOutputWhep: IMediaService_ICreateOutputWhep;
50
50
  createOutputUdpTs: IMediaService_ICreateOutputUdpTs;
@@ -365,12 +365,12 @@ interface IMediaService_ICreateOutputHlsTsCombinedPush extends grpc.MethodDefini
365
365
  responseSerialize: grpc.serialize<media_pb.HlsOutputEvent>;
366
366
  responseDeserialize: grpc.deserialize<media_pb.HlsOutputEvent>;
367
367
  }
368
- interface IMediaService_ICreateOutputCmafMaster extends grpc.MethodDefinition<media_pb.CmafMasterMessage, media_pb.HlsOutputEvent> {
369
- path: "/norsk.api.media.Media/CreateOutputCmafMaster";
368
+ interface IMediaService_ICreateOutputCmafMultiVariant extends grpc.MethodDefinition<media_pb.CmafMultiVariantMessage, media_pb.HlsOutputEvent> {
369
+ path: "/norsk.api.media.Media/CreateOutputCmafMultiVariant";
370
370
  requestStream: true;
371
371
  responseStream: true;
372
- requestSerialize: grpc.serialize<media_pb.CmafMasterMessage>;
373
- requestDeserialize: grpc.deserialize<media_pb.CmafMasterMessage>;
372
+ requestSerialize: grpc.serialize<media_pb.CmafMultiVariantMessage>;
373
+ requestDeserialize: grpc.deserialize<media_pb.CmafMultiVariantMessage>;
374
374
  responseSerialize: grpc.serialize<media_pb.HlsOutputEvent>;
375
375
  responseDeserialize: grpc.deserialize<media_pb.HlsOutputEvent>;
376
376
  }
@@ -600,7 +600,7 @@ export interface IMediaServer extends grpc.UntypedServiceImplementation {
600
600
  createOutputHlsTsAudio: grpc.handleBidiStreamingCall<media_pb.HlsTsAudioMessage, media_pb.HlsOutputEvent>;
601
601
  createOutputCmafWebVtt: grpc.handleBidiStreamingCall<media_pb.CmafWebVttMessage, media_pb.HlsOutputEvent>;
602
602
  createOutputHlsTsCombinedPush: grpc.handleBidiStreamingCall<media_pb.HlsTsCombinedPushMessage, media_pb.HlsOutputEvent>;
603
- createOutputCmafMaster: grpc.handleBidiStreamingCall<media_pb.CmafMasterMessage, media_pb.HlsOutputEvent>;
603
+ createOutputCmafMultiVariant: grpc.handleBidiStreamingCall<media_pb.CmafMultiVariantMessage, media_pb.HlsOutputEvent>;
604
604
  createOutputWhip: grpc.handleBidiStreamingCall<media_pb.WhipOutputMessage, media_pb.WhipOutputEvent>;
605
605
  createOutputWhep: grpc.handleBidiStreamingCall<media_pb.WhepOutputMessage, media_pb.WhepOutputEvent>;
606
606
  createOutputUdpTs: grpc.handleBidiStreamingCall<media_pb.UdpTsOutputMessage, media_pb.UdpTsOutputEvent>;
@@ -720,9 +720,9 @@ export interface IMediaClient {
720
720
  createOutputHlsTsCombinedPush(): grpc.ClientDuplexStream<media_pb.HlsTsCombinedPushMessage, media_pb.HlsOutputEvent>;
721
721
  createOutputHlsTsCombinedPush(options: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.HlsTsCombinedPushMessage, media_pb.HlsOutputEvent>;
722
722
  createOutputHlsTsCombinedPush(metadata: grpc.Metadata, options?: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.HlsTsCombinedPushMessage, media_pb.HlsOutputEvent>;
723
- createOutputCmafMaster(): grpc.ClientDuplexStream<media_pb.CmafMasterMessage, media_pb.HlsOutputEvent>;
724
- createOutputCmafMaster(options: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.CmafMasterMessage, media_pb.HlsOutputEvent>;
725
- createOutputCmafMaster(metadata: grpc.Metadata, options?: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.CmafMasterMessage, media_pb.HlsOutputEvent>;
723
+ createOutputCmafMultiVariant(): grpc.ClientDuplexStream<media_pb.CmafMultiVariantMessage, media_pb.HlsOutputEvent>;
724
+ createOutputCmafMultiVariant(options: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.CmafMultiVariantMessage, media_pb.HlsOutputEvent>;
725
+ createOutputCmafMultiVariant(metadata: grpc.Metadata, options?: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.CmafMultiVariantMessage, media_pb.HlsOutputEvent>;
726
726
  createOutputWhip(): grpc.ClientDuplexStream<media_pb.WhipOutputMessage, media_pb.WhipOutputEvent>;
727
727
  createOutputWhip(options: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.WhipOutputMessage, media_pb.WhipOutputEvent>;
728
728
  createOutputWhip(metadata: grpc.Metadata, options?: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.WhipOutputMessage, media_pb.WhipOutputEvent>;
@@ -856,8 +856,8 @@ export class MediaClient extends grpc.Client implements IMediaClient {
856
856
  public createOutputCmafWebVtt(metadata?: grpc.Metadata, options?: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.CmafWebVttMessage, media_pb.HlsOutputEvent>;
857
857
  public createOutputHlsTsCombinedPush(options?: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.HlsTsCombinedPushMessage, media_pb.HlsOutputEvent>;
858
858
  public createOutputHlsTsCombinedPush(metadata?: grpc.Metadata, options?: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.HlsTsCombinedPushMessage, media_pb.HlsOutputEvent>;
859
- public createOutputCmafMaster(options?: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.CmafMasterMessage, media_pb.HlsOutputEvent>;
860
- public createOutputCmafMaster(metadata?: grpc.Metadata, options?: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.CmafMasterMessage, media_pb.HlsOutputEvent>;
859
+ public createOutputCmafMultiVariant(options?: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.CmafMultiVariantMessage, media_pb.HlsOutputEvent>;
860
+ public createOutputCmafMultiVariant(metadata?: grpc.Metadata, options?: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.CmafMultiVariantMessage, media_pb.HlsOutputEvent>;
861
861
  public createOutputWhip(options?: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.WhipOutputMessage, media_pb.WhipOutputEvent>;
862
862
  public createOutputWhip(metadata?: grpc.Metadata, options?: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.WhipOutputMessage, media_pb.WhipOutputEvent>;
863
863
  public createOutputWhep(options?: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.WhepOutputMessage, media_pb.WhepOutputEvent>;
@@ -282,15 +282,15 @@ function deserialize_norsk_api_media_CmafAudioMessage(buffer_arg) {
282
282
  return media_pb.CmafAudioMessage.fromBinary(new Uint8Array(buffer_arg));
283
283
  }
284
284
 
285
- function serialize_norsk_api_media_CmafMasterMessage(arg) {
286
- if (!(arg instanceof media_pb.CmafMasterMessage)) {
287
- throw new Error('Expected argument of type norsk.api.media.CmafMasterMessage');
285
+ function serialize_norsk_api_media_CmafMultiVariantMessage(arg) {
286
+ if (!(arg instanceof media_pb.CmafMultiVariantMessage)) {
287
+ throw new Error('Expected argument of type norsk.api.media.CmafMultiVariantMessage');
288
288
  }
289
289
  return Buffer.from(arg.toBinary());
290
290
  }
291
291
 
292
- function deserialize_norsk_api_media_CmafMasterMessage(buffer_arg) {
293
- return media_pb.CmafMasterMessage.fromBinary(new Uint8Array(buffer_arg));
292
+ function deserialize_norsk_api_media_CmafMultiVariantMessage(buffer_arg) {
293
+ return media_pb.CmafMultiVariantMessage.fromBinary(new Uint8Array(buffer_arg));
294
294
  }
295
295
 
296
296
  function serialize_norsk_api_media_CmafVideoMessage(arg) {
@@ -1548,14 +1548,14 @@ createTransformAudioTranscribeAws: {
1548
1548
  responseSerialize: serialize_norsk_api_media_HlsOutputEvent,
1549
1549
  responseDeserialize: deserialize_norsk_api_media_HlsOutputEvent,
1550
1550
  },
1551
- createOutputCmafMaster: {
1552
- path: '/norsk.api.media.Media/CreateOutputCmafMaster',
1551
+ createOutputCmafMultiVariant: {
1552
+ path: '/norsk.api.media.Media/CreateOutputCmafMultiVariant',
1553
1553
  requestStream: true,
1554
1554
  responseStream: true,
1555
- requestType: media_pb.CmafMasterMessage,
1555
+ requestType: media_pb.CmafMultiVariantMessage,
1556
1556
  responseType: media_pb.HlsOutputEvent,
1557
- requestSerialize: serialize_norsk_api_media_CmafMasterMessage,
1558
- requestDeserialize: deserialize_norsk_api_media_CmafMasterMessage,
1557
+ requestSerialize: serialize_norsk_api_media_CmafMultiVariantMessage,
1558
+ requestDeserialize: deserialize_norsk_api_media_CmafMultiVariantMessage,
1559
1559
  responseSerialize: serialize_norsk_api_media_HlsOutputEvent,
1560
1560
  responseDeserialize: deserialize_norsk_api_media_HlsOutputEvent,
1561
1561
  },
package/lib/media_pb.d.ts CHANGED
@@ -5113,6 +5113,10 @@ export declare class VideoComposeConfiguration extends Message<VideoComposeConfi
5113
5113
  * @generated from field: norsk.api.media.VideoComposeConfiguration.MissingStreamBehaviour missing_stream_behaviour = 7;
5114
5114
  */
5115
5115
  missingStreamBehaviour: VideoComposeConfiguration_MissingStreamBehaviour;
5116
+ /**
5117
+ * @generated from field: norsk.api.media.VideoComposeConfiguration.ComposeHardwareAcceleration hardware_acceleration = 8;
5118
+ */
5119
+ hardwareAcceleration: VideoComposeConfiguration_ComposeHardwareAcceleration;
5116
5120
  constructor(data?: PartialMessage<VideoComposeConfiguration>);
5117
5121
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
5118
5122
  static readonly typeName = "norsk.api.media.VideoComposeConfiguration";
@@ -5122,6 +5126,19 @@ export declare class VideoComposeConfiguration extends Message<VideoComposeConfi
5122
5126
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): VideoComposeConfiguration;
5123
5127
  static equals(a: VideoComposeConfiguration | PlainMessage<VideoComposeConfiguration> | undefined, b: VideoComposeConfiguration | PlainMessage<VideoComposeConfiguration> | undefined): boolean;
5124
5128
  }
5129
+ /**
5130
+ * @generated from enum norsk.api.media.VideoComposeConfiguration.ComposeHardwareAcceleration
5131
+ */
5132
+ export declare enum VideoComposeConfiguration_ComposeHardwareAcceleration {
5133
+ /**
5134
+ * @generated from enum value: NONE = 0;
5135
+ */
5136
+ NONE = 0,
5137
+ /**
5138
+ * @generated from enum value: QUADRA = 1;
5139
+ */
5140
+ QUADRA = 1
5141
+ }
5125
5142
  /**
5126
5143
  * @generated from enum norsk.api.media.VideoComposeConfiguration.PixelFormat
5127
5144
  */
@@ -6659,9 +6676,9 @@ export declare class CmafWebVttMessage extends Message<CmafWebVttMessage> {
6659
6676
  static equals(a: CmafWebVttMessage | PlainMessage<CmafWebVttMessage> | undefined, b: CmafWebVttMessage | PlainMessage<CmafWebVttMessage> | undefined): boolean;
6660
6677
  }
6661
6678
  /**
6662
- * @generated from message norsk.api.media.CmafMasterConfiguration
6679
+ * @generated from message norsk.api.media.CmafMultiVariantConfiguration
6663
6680
  */
6664
- export declare class CmafMasterConfiguration extends Message<CmafMasterConfiguration> {
6681
+ export declare class CmafMultiVariantConfiguration extends Message<CmafMultiVariantConfiguration> {
6665
6682
  /**
6666
6683
  * @generated from field: norsk.api.media.MediaNodeId id = 1;
6667
6684
  */
@@ -6679,7 +6696,7 @@ export declare class CmafMasterConfiguration extends Message<CmafMasterConfigura
6679
6696
  */
6680
6697
  destinations: CMAFDestination[];
6681
6698
  /**
6682
- * Directives to add to the m3u master playlist
6699
+ * Directives to add to the m3u multi variant playlist
6683
6700
  *
6684
6701
  * @generated from field: string m3u_additions = 5;
6685
6702
  */
@@ -6690,21 +6707,21 @@ export declare class CmafMasterConfiguration extends Message<CmafMasterConfigura
6690
6707
  * @generated from field: string mpd_additions = 6;
6691
6708
  */
6692
6709
  mpdAdditions: string;
6693
- constructor(data?: PartialMessage<CmafMasterConfiguration>);
6710
+ constructor(data?: PartialMessage<CmafMultiVariantConfiguration>);
6694
6711
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6695
- static readonly typeName = "norsk.api.media.CmafMasterConfiguration";
6712
+ static readonly typeName = "norsk.api.media.CmafMultiVariantConfiguration";
6696
6713
  static readonly fields: FieldList;
6697
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CmafMasterConfiguration;
6698
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CmafMasterConfiguration;
6699
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CmafMasterConfiguration;
6700
- static equals(a: CmafMasterConfiguration | PlainMessage<CmafMasterConfiguration> | undefined, b: CmafMasterConfiguration | PlainMessage<CmafMasterConfiguration> | undefined): boolean;
6714
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CmafMultiVariantConfiguration;
6715
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CmafMultiVariantConfiguration;
6716
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CmafMultiVariantConfiguration;
6717
+ static equals(a: CmafMultiVariantConfiguration | PlainMessage<CmafMultiVariantConfiguration> | undefined, b: CmafMultiVariantConfiguration | PlainMessage<CmafMultiVariantConfiguration> | undefined): boolean;
6701
6718
  }
6702
6719
  /**
6703
- * @generated from message norsk.api.media.CmafMasterMessage
6720
+ * @generated from message norsk.api.media.CmafMultiVariantMessage
6704
6721
  */
6705
- export declare class CmafMasterMessage extends Message<CmafMasterMessage> {
6722
+ export declare class CmafMultiVariantMessage extends Message<CmafMultiVariantMessage> {
6706
6723
  /**
6707
- * @generated from oneof norsk.api.media.CmafMasterMessage.message
6724
+ * @generated from oneof norsk.api.media.CmafMultiVariantMessage.message
6708
6725
  */
6709
6726
  message: {
6710
6727
  /**
@@ -6714,9 +6731,9 @@ export declare class CmafMasterMessage extends Message<CmafMasterMessage> {
6714
6731
  case: "subscription";
6715
6732
  } | {
6716
6733
  /**
6717
- * @generated from field: norsk.api.media.CmafMasterConfiguration configuration = 2;
6734
+ * @generated from field: norsk.api.media.CmafMultiVariantConfiguration configuration = 2;
6718
6735
  */
6719
- value: CmafMasterConfiguration;
6736
+ value: CmafMultiVariantConfiguration;
6720
6737
  case: "configuration";
6721
6738
  } | {
6722
6739
  /**
@@ -6728,14 +6745,14 @@ export declare class CmafMasterMessage extends Message<CmafMasterMessage> {
6728
6745
  case: undefined;
6729
6746
  value?: undefined;
6730
6747
  };
6731
- constructor(data?: PartialMessage<CmafMasterMessage>);
6748
+ constructor(data?: PartialMessage<CmafMultiVariantMessage>);
6732
6749
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6733
- static readonly typeName = "norsk.api.media.CmafMasterMessage";
6750
+ static readonly typeName = "norsk.api.media.CmafMultiVariantMessage";
6734
6751
  static readonly fields: FieldList;
6735
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CmafMasterMessage;
6736
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CmafMasterMessage;
6737
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CmafMasterMessage;
6738
- static equals(a: CmafMasterMessage | PlainMessage<CmafMasterMessage> | undefined, b: CmafMasterMessage | PlainMessage<CmafMasterMessage> | undefined): boolean;
6752
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CmafMultiVariantMessage;
6753
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CmafMultiVariantMessage;
6754
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CmafMultiVariantMessage;
6755
+ static equals(a: CmafMultiVariantMessage | PlainMessage<CmafMultiVariantMessage> | undefined, b: CmafMultiVariantMessage | PlainMessage<CmafMultiVariantMessage> | undefined): boolean;
6739
6756
  }
6740
6757
  /**
6741
6758
  * @generated from message norsk.api.media.HlsTsCombinedPushConfiguration
@@ -8911,10 +8928,6 @@ export declare class QuadraH264 extends Message<QuadraH264> {
8911
8928
  * @generated from field: norsk.api.media.OptionalInt bitrate = 4;
8912
8929
  */
8913
8930
  bitrate?: OptionalInt;
8914
- /**
8915
- * @generated from field: norsk.api.media.OptionalBool flushGop = 5;
8916
- */
8917
- flushGop?: OptionalBool;
8918
8931
  /**
8919
8932
  * @generated from field: norsk.api.media.OptionalBool enableVfr = 6;
8920
8933
  */
@@ -8923,10 +8936,6 @@ export declare class QuadraH264 extends Message<QuadraH264> {
8923
8936
  * @generated from field: norsk.api.media.OptionalInt crf = 7;
8924
8937
  */
8925
8938
  crf?: OptionalInt;
8926
- /**
8927
- * @generated from field: norsk.api.media.OptionalBool cbr = 8;
8928
- */
8929
- cbr?: OptionalBool;
8930
8939
  /**
8931
8940
  * @generated from field: norsk.api.media.OptionalInt gopPresetIndex = 9;
8932
8941
  */
@@ -8952,9 +8961,45 @@ export declare class QuadraH264 extends Message<QuadraH264> {
8952
8961
  */
8953
8962
  intraQp?: OptionalInt;
8954
8963
  /**
8955
- * @generated from field: norsk.api.media.OptionalInt rcInitDelay = 15;
8964
+ * @generated from field: norsk.api.media.OptionalBool hrdEnable = 18;
8956
8965
  */
8957
- rcInitDelay?: OptionalInt;
8966
+ hrdEnable?: OptionalBool;
8967
+ /**
8968
+ * @generated from field: norsk.api.media.OptionalInt dolbyVisionProfile = 19;
8969
+ */
8970
+ dolbyVisionProfile?: OptionalInt;
8971
+ /**
8972
+ * @generated from field: norsk.api.media.OptionalBool fillerEnable = 20;
8973
+ */
8974
+ fillerEnable?: OptionalBool;
8975
+ /**
8976
+ * @generated from field: norsk.api.media.OptionalInt minQp = 21;
8977
+ */
8978
+ minQp?: OptionalInt;
8979
+ /**
8980
+ * @generated from field: norsk.api.media.OptionalInt maxQp = 22;
8981
+ */
8982
+ maxQp?: OptionalInt;
8983
+ /**
8984
+ * @generated from field: norsk.api.media.OptionalInt maxDeltaQp = 23;
8985
+ */
8986
+ maxDeltaQp?: OptionalInt;
8987
+ /**
8988
+ * @generated from field: norsk.api.media.OptionalBool cuLevelRCEnable = 24;
8989
+ */
8990
+ cuLevelRCEnable?: OptionalBool;
8991
+ /**
8992
+ * @generated from field: norsk.api.media.OptionalInt lookAheadDepth = 25;
8993
+ */
8994
+ lookAheadDepth?: OptionalInt;
8995
+ /**
8996
+ * @generated from field: norsk.api.media.OptionalInt vbvBufferSize = 26;
8997
+ */
8998
+ vbvBufferSize?: OptionalInt;
8999
+ /**
9000
+ * @generated from field: norsk.api.media.OptionalInt vbvMaxRate = 27;
9001
+ */
9002
+ vbvMaxRate?: OptionalInt;
8958
9003
  constructor(data?: PartialMessage<QuadraH264>);
8959
9004
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
8960
9005
  static readonly typeName = "norsk.api.media.QuadraH264";
@@ -9013,10 +9058,6 @@ export declare class QuadraHevc extends Message<QuadraHevc> {
9013
9058
  * @generated from field: norsk.api.media.OptionalInt bitrate = 4;
9014
9059
  */
9015
9060
  bitrate?: OptionalInt;
9016
- /**
9017
- * @generated from field: norsk.api.media.OptionalBool flushGop = 5;
9018
- */
9019
- flushGop?: OptionalBool;
9020
9061
  /**
9021
9062
  * @generated from field: norsk.api.media.OptionalBool enableVfr = 6;
9022
9063
  */
@@ -9025,10 +9066,6 @@ export declare class QuadraHevc extends Message<QuadraHevc> {
9025
9066
  * @generated from field: norsk.api.media.OptionalInt crf = 7;
9026
9067
  */
9027
9068
  crf?: OptionalInt;
9028
- /**
9029
- * @generated from field: norsk.api.media.OptionalBool cbr = 8;
9030
- */
9031
- cbr?: OptionalBool;
9032
9069
  /**
9033
9070
  * @generated from field: norsk.api.media.OptionalInt gopPresetIndex = 9;
9034
9071
  */
@@ -9061,10 +9098,6 @@ export declare class QuadraHevc extends Message<QuadraHevc> {
9061
9098
  * @generated from field: norsk.api.media.OptionalInt intraQp = 16;
9062
9099
  */
9063
9100
  intraQp?: OptionalInt;
9064
- /**
9065
- * @generated from field: norsk.api.media.OptionalInt rcInitDelay = 17;
9066
- */
9067
- rcInitDelay?: OptionalInt;
9068
9101
  /**
9069
9102
  * @generated from field: norsk.api.media.OptionalBool hrdEnable = 18;
9070
9103
  */
@@ -9073,6 +9106,38 @@ export declare class QuadraHevc extends Message<QuadraHevc> {
9073
9106
  * @generated from field: norsk.api.media.OptionalInt dolbyVisionProfile = 19;
9074
9107
  */
9075
9108
  dolbyVisionProfile?: OptionalInt;
9109
+ /**
9110
+ * @generated from field: norsk.api.media.OptionalBool fillerEnable = 20;
9111
+ */
9112
+ fillerEnable?: OptionalBool;
9113
+ /**
9114
+ * @generated from field: norsk.api.media.OptionalInt minQp = 21;
9115
+ */
9116
+ minQp?: OptionalInt;
9117
+ /**
9118
+ * @generated from field: norsk.api.media.OptionalInt maxQp = 22;
9119
+ */
9120
+ maxQp?: OptionalInt;
9121
+ /**
9122
+ * @generated from field: norsk.api.media.OptionalInt maxDeltaQp = 23;
9123
+ */
9124
+ maxDeltaQp?: OptionalInt;
9125
+ /**
9126
+ * @generated from field: norsk.api.media.OptionalBool cuLevelRCEnable = 24;
9127
+ */
9128
+ cuLevelRCEnable?: OptionalBool;
9129
+ /**
9130
+ * @generated from field: norsk.api.media.OptionalInt lookAheadDepth = 25;
9131
+ */
9132
+ lookAheadDepth?: OptionalInt;
9133
+ /**
9134
+ * @generated from field: norsk.api.media.OptionalInt vbvBufferSize = 26;
9135
+ */
9136
+ vbvBufferSize?: OptionalInt;
9137
+ /**
9138
+ * @generated from field: norsk.api.media.OptionalInt vbvMaxRate = 27;
9139
+ */
9140
+ vbvMaxRate?: OptionalInt;
9076
9141
  constructor(data?: PartialMessage<QuadraHevc>);
9077
9142
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
9078
9143
  static readonly typeName = "norsk.api.media.QuadraHevc";
package/lib/media_pb.js CHANGED
@@ -6,12 +6,12 @@
6
6
  Object.defineProperty(exports, "__esModule", { value: true });
7
7
  exports.CodecPictureStructure_Mpeg2PictureStructure = exports.CodecPictureStructure = exports.StreamStatisticsSampling = exports.MultiStreamStatistics_SingleStreamStatistics = exports.MultiStreamStatistics = exports.TimestampSourceProgramNudge = exports.TimestampProgramNudge = exports.TimestampNudge = exports.ValidationResponseAck = 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.Resolution = exports.MediaNodeId = exports.NullValue = exports.Code = exports.ContextType = exports.VideoIOSupport = exports.VideoConnection = exports.VancPayloadFormat = exports.SentenceStabilizationMode = exports.SentenceBuildMode = exports.NvidiaPreset = exports.DeckLinkDisplayModeId = exports.DeckLinkPixelFormat = exports.SrtMode = exports.AudioCodec = exports.SampleFormat = exports.SampleRate = exports.NamedChannelLayout = exports.ChannelName = void 0;
8
8
  exports.M3u8MediaInputMessage = exports.M3u8MediaInputConfiguration = exports.UdpTsInputMessage = 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 = 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.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 = void 0;
9
- exports.TransitionComplete = exports.VideoComposeSourceEvent = exports.VideoComposeUpdateConfiguration = exports.VideoComposeConfiguration_MissingStreamBehaviour = exports.VideoComposeConfiguration_PixelFormat = 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 = 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 = void 0;
10
- exports.SrtOutputConfiguration = exports.UdpTsOutputEvent = exports.UdpTsOutputMessage = exports.UdpTsOutputConfiguration = exports.HlsOutputEvent = exports.HlsTsCombinedPushMessage = exports.HlsPushDestination = exports.HlsTsCombinedPushConfiguration = exports.CmafMasterMessage = exports.CmafMasterConfiguration = exports.CmafWebVttMessage = 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.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 = void 0;
11
- 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.VideoEncodeEvent = exports.VideoEncodeMessage = exports.VideoEncodeConfiguration = exports.VideoEncodeStream = 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.OptionalString = exports.OptionalBool = exports.OptionalInt64 = exports.OptionalInt = exports.SampleAspectRatio = exports.FrameRate = exports.FileMp4OutputEvent = exports.FileMp4OutputMessage = exports.FileMp4OutputWriteMessage = exports.FileMp4OutputConfiguration = exports.FileTsOutputEvent = exports.FileTsOutputMessage = exports.FileTsOutputConfiguration = exports.RtmpOutputEvent = exports.RtmpOutputMessage = exports.RtmpOutputConfiguration = exports.WhepOutputEvent = exports.WhepOutputMessage = exports.WhepOutputConfiguration = exports.WebRTCBrowserDuplexEvent = exports.WebRTCBrowserDuplexMessage = exports.WebRTCBrowserDuplexConfiguration = exports.WhipOutputEvent = exports.WhipOutputMessage = exports.WhipOutputConfiguration = exports.SrtOutputEvent = exports.SrtOutputMessage = void 0;
12
- exports.StreamSwitchHardEvent = exports.StreamSwitchHardMessage = exports.StreamSwitchHardSwitch = exports.StreamSwitchHardConfiguration = exports.StreamSwitchSmoothEvent = exports.StreamSwitchSmoothSwitchError = exports.StreamSwitchSmoothMessage = exports.StreamSwitchSmoothSwitch = exports.StreamSwitchSmoothConfiguration = exports.AudioEncodeEvent = exports.AudioEncodeMessage = exports.AudioEncodeConfiguration = exports.OpusEncodeConfiguration = exports.AacEncodeConfiguration_AacEncapsulation = exports.AacEncodeConfiguration_AacProfile = exports.AacEncodeConfiguration = 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.XilinxHevc_XilinxHevcTier = exports.XilinxHevc_XilinxHevcProfile = exports.XilinxHevc = exports.XilinxH264_XilinxH264Profile = exports.XilinxH264 = exports.LoganHevc_LoganHevcTier = exports.LoganHevc_LoganHevcProfile = exports.LoganHevc = exports.LoganH264_LoganH264Profile = exports.LoganH264 = exports.QuadraHevc_QuadraHevcTier = exports.QuadraHevc_QuadraHevcProfile = void 0;
13
- 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.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.AudioMeasureLevelsEvent = exports.AudioMeasureLevels = exports.ChannelLevels = exports.Db = exports.Interval = exports.AudioMeasureLevelsMessage = exports.AudioMeasureLevelsConfiguration = exports.StreamStatisticsEvent = exports.StreamStatisticsMessage = exports.StreamStatisticsConfiguration = void 0;
14
- exports.NorskStatusEvent = exports.Hello = exports.Status = exports.ListValue = exports.Value = exports.Struct = 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.DeckLinkDisplayModes = exports.DeckLinkDisplayMode = exports.DeckLinkCard = exports.CpuTopology = exports.NumaNode = exports.Processor = exports.Core = exports.LogicalCpuId = exports.Scte35SegmentationComponent = exports.Scte35SegmentDeliveryRestrictions = exports.Scte35SegmentationDescriptor = exports.Scte35AudioComponent = exports.Scte35AudioDescriptor = exports.Scte35TimeDescriptor = exports.Scte35DtmfDescriptor = exports.Scte35AvailDescriptor = void 0;
9
+ exports.VideoComposeSourceEvent = exports.VideoComposeUpdateConfiguration = exports.VideoComposeConfiguration_MissingStreamBehaviour = exports.VideoComposeConfiguration_PixelFormat = 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 = 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 = void 0;
10
+ exports.UdpTsOutputEvent = exports.UdpTsOutputMessage = exports.UdpTsOutputConfiguration = exports.HlsOutputEvent = exports.HlsTsCombinedPushMessage = exports.HlsPushDestination = exports.HlsTsCombinedPushConfiguration = exports.CmafMultiVariantMessage = exports.CmafMultiVariantConfiguration = exports.CmafWebVttMessage = 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.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.TransitionComplete = void 0;
11
+ exports.QuadraH264_QuadraH264Profile = exports.QuadraH264 = exports.NvidiaHevc_NvidiaHevcTier = exports.NvidiaHevc_NvidiaHevcProfile = exports.NvidiaHevc = exports.NvidiaH264_NvidiaH264Profile = exports.NvidiaH264 = exports.NvidiaRateControl_NvidiaRateControlMode = exports.NvidiaRateControl = exports.VideoEncodeEvent = exports.VideoEncodeMessage = exports.VideoEncodeConfiguration = exports.VideoEncodeStream = 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.OptionalString = exports.OptionalBool = exports.OptionalInt64 = exports.OptionalInt = exports.SampleAspectRatio = exports.FrameRate = exports.FileMp4OutputEvent = exports.FileMp4OutputMessage = exports.FileMp4OutputWriteMessage = exports.FileMp4OutputConfiguration = exports.FileTsOutputEvent = exports.FileTsOutputMessage = exports.FileTsOutputConfiguration = exports.RtmpOutputEvent = exports.RtmpOutputMessage = 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 = void 0;
12
+ exports.StreamSwitchHardMessage = exports.StreamSwitchHardSwitch = exports.StreamSwitchHardConfiguration = exports.StreamSwitchSmoothEvent = exports.StreamSwitchSmoothSwitchError = exports.StreamSwitchSmoothMessage = exports.StreamSwitchSmoothSwitch = exports.StreamSwitchSmoothConfiguration = exports.AudioEncodeEvent = exports.AudioEncodeMessage = exports.AudioEncodeConfiguration = exports.OpusEncodeConfiguration = exports.AacEncodeConfiguration_AacEncapsulation = exports.AacEncodeConfiguration_AacProfile = exports.AacEncodeConfiguration = 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.XilinxHevc_XilinxHevcTier = exports.XilinxHevc_XilinxHevcProfile = exports.XilinxHevc = exports.XilinxH264_XilinxH264Profile = exports.XilinxH264 = exports.LoganHevc_LoganHevcTier = exports.LoganHevc_LoganHevcProfile = exports.LoganHevc = exports.LoganH264_LoganH264Profile = exports.LoganH264 = exports.QuadraHevc_QuadraHevcTier = exports.QuadraHevc_QuadraHevcProfile = exports.QuadraHevc = void 0;
13
+ 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.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.AudioMeasureLevelsEvent = exports.AudioMeasureLevels = exports.ChannelLevels = exports.Db = exports.Interval = exports.AudioMeasureLevelsMessage = exports.AudioMeasureLevelsConfiguration = exports.StreamStatisticsEvent = exports.StreamStatisticsMessage = exports.StreamStatisticsConfiguration = exports.StreamSwitchHardEvent = void 0;
14
+ exports.NorskStatusEvent = exports.Hello = exports.Status = exports.ListValue = exports.Value = exports.Struct = 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.DeckLinkDisplayModes = exports.DeckLinkDisplayMode = exports.DeckLinkCard = exports.CpuTopology = exports.NumaNode = exports.Processor = exports.Core = exports.LogicalCpuId = exports.Scte35SegmentationComponent = exports.Scte35SegmentDeliveryRestrictions = exports.Scte35SegmentationDescriptor = exports.Scte35AudioComponent = exports.Scte35AudioDescriptor = exports.Scte35TimeDescriptor = exports.Scte35DtmfDescriptor = exports.Scte35AvailDescriptor = exports.Scte35GenericDescriptor = void 0;
15
15
  const protobuf_1 = require("@bufbuild/protobuf");
16
16
  const common_pb_js_1 = require("./shared/common_pb.js");
17
17
  /**
@@ -6264,6 +6264,10 @@ class VideoComposeConfiguration extends protobuf_1.Message {
6264
6264
  * @generated from field: norsk.api.media.VideoComposeConfiguration.MissingStreamBehaviour missing_stream_behaviour = 7;
6265
6265
  */
6266
6266
  this.missingStreamBehaviour = VideoComposeConfiguration_MissingStreamBehaviour.UNSPECIFIED_BEHAVIOUR;
6267
+ /**
6268
+ * @generated from field: norsk.api.media.VideoComposeConfiguration.ComposeHardwareAcceleration hardware_acceleration = 8;
6269
+ */
6270
+ this.hardwareAcceleration = VideoComposeConfiguration_ComposeHardwareAcceleration.NONE;
6267
6271
  protobuf_1.proto3.util.initPartial(data, this);
6268
6272
  }
6269
6273
  static fromBinary(bytes, options) {
@@ -6290,6 +6294,26 @@ VideoComposeConfiguration.fields = protobuf_1.proto3.util.newFieldList(() => [
6290
6294
  { no: 5, name: "output_resolution", kind: "message", T: Resolution },
6291
6295
  { no: 6, name: "output_pixel_format", kind: "enum", T: protobuf_1.proto3.getEnumType(VideoComposeConfiguration_PixelFormat) },
6292
6296
  { no: 7, name: "missing_stream_behaviour", kind: "enum", T: protobuf_1.proto3.getEnumType(VideoComposeConfiguration_MissingStreamBehaviour) },
6297
+ { no: 8, name: "hardware_acceleration", kind: "enum", T: protobuf_1.proto3.getEnumType(VideoComposeConfiguration_ComposeHardwareAcceleration) },
6298
+ ]);
6299
+ /**
6300
+ * @generated from enum norsk.api.media.VideoComposeConfiguration.ComposeHardwareAcceleration
6301
+ */
6302
+ var VideoComposeConfiguration_ComposeHardwareAcceleration;
6303
+ (function (VideoComposeConfiguration_ComposeHardwareAcceleration) {
6304
+ /**
6305
+ * @generated from enum value: NONE = 0;
6306
+ */
6307
+ VideoComposeConfiguration_ComposeHardwareAcceleration[VideoComposeConfiguration_ComposeHardwareAcceleration["NONE"] = 0] = "NONE";
6308
+ /**
6309
+ * @generated from enum value: QUADRA = 1;
6310
+ */
6311
+ VideoComposeConfiguration_ComposeHardwareAcceleration[VideoComposeConfiguration_ComposeHardwareAcceleration["QUADRA"] = 1] = "QUADRA";
6312
+ })(VideoComposeConfiguration_ComposeHardwareAcceleration = exports.VideoComposeConfiguration_ComposeHardwareAcceleration || (exports.VideoComposeConfiguration_ComposeHardwareAcceleration = {}));
6313
+ // Retrieve enum metadata with: proto3.getEnumType(VideoComposeConfiguration_ComposeHardwareAcceleration)
6314
+ protobuf_1.proto3.util.setEnumType(VideoComposeConfiguration_ComposeHardwareAcceleration, "norsk.api.media.VideoComposeConfiguration.ComposeHardwareAcceleration", [
6315
+ { no: 0, name: "NONE" },
6316
+ { no: 1, name: "QUADRA" },
6293
6317
  ]);
6294
6318
  /**
6295
6319
  * @generated from enum norsk.api.media.VideoComposeConfiguration.PixelFormat
@@ -8020,9 +8044,9 @@ CmafWebVttMessage.fields = protobuf_1.proto3.util.newFieldList(() => [
8020
8044
  { no: 4, name: "update_credentials", kind: "message", T: UpdateCredentials, oneof: "message" },
8021
8045
  ]);
8022
8046
  /**
8023
- * @generated from message norsk.api.media.CmafMasterConfiguration
8047
+ * @generated from message norsk.api.media.CmafMultiVariantConfiguration
8024
8048
  */
8025
- class CmafMasterConfiguration extends protobuf_1.Message {
8049
+ class CmafMultiVariantConfiguration extends protobuf_1.Message {
8026
8050
  constructor(data) {
8027
8051
  super();
8028
8052
  /**
@@ -8034,7 +8058,7 @@ class CmafMasterConfiguration extends protobuf_1.Message {
8034
8058
  */
8035
8059
  this.destinations = [];
8036
8060
  /**
8037
- * Directives to add to the m3u master playlist
8061
+ * Directives to add to the m3u multi variant playlist
8038
8062
  *
8039
8063
  * @generated from field: string m3u_additions = 5;
8040
8064
  */
@@ -8048,22 +8072,22 @@ class CmafMasterConfiguration extends protobuf_1.Message {
8048
8072
  protobuf_1.proto3.util.initPartial(data, this);
8049
8073
  }
8050
8074
  static fromBinary(bytes, options) {
8051
- return new CmafMasterConfiguration().fromBinary(bytes, options);
8075
+ return new CmafMultiVariantConfiguration().fromBinary(bytes, options);
8052
8076
  }
8053
8077
  static fromJson(jsonValue, options) {
8054
- return new CmafMasterConfiguration().fromJson(jsonValue, options);
8078
+ return new CmafMultiVariantConfiguration().fromJson(jsonValue, options);
8055
8079
  }
8056
8080
  static fromJsonString(jsonString, options) {
8057
- return new CmafMasterConfiguration().fromJsonString(jsonString, options);
8081
+ return new CmafMultiVariantConfiguration().fromJsonString(jsonString, options);
8058
8082
  }
8059
8083
  static equals(a, b) {
8060
- return protobuf_1.proto3.util.equals(CmafMasterConfiguration, a, b);
8084
+ return protobuf_1.proto3.util.equals(CmafMultiVariantConfiguration, a, b);
8061
8085
  }
8062
8086
  }
8063
- exports.CmafMasterConfiguration = CmafMasterConfiguration;
8064
- CmafMasterConfiguration.runtime = protobuf_1.proto3;
8065
- CmafMasterConfiguration.typeName = "norsk.api.media.CmafMasterConfiguration";
8066
- CmafMasterConfiguration.fields = protobuf_1.proto3.util.newFieldList(() => [
8087
+ exports.CmafMultiVariantConfiguration = CmafMultiVariantConfiguration;
8088
+ CmafMultiVariantConfiguration.runtime = protobuf_1.proto3;
8089
+ CmafMultiVariantConfiguration.typeName = "norsk.api.media.CmafMultiVariantConfiguration";
8090
+ CmafMultiVariantConfiguration.fields = protobuf_1.proto3.util.newFieldList(() => [
8067
8091
  { no: 1, name: "id", kind: "message", T: MediaNodeId },
8068
8092
  { no: 2, name: "playlist_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
8069
8093
  { no: 3, name: "stats_sampling", kind: "message", T: StreamStatisticsSampling },
@@ -8072,36 +8096,36 @@ CmafMasterConfiguration.fields = protobuf_1.proto3.util.newFieldList(() => [
8072
8096
  { no: 6, name: "mpd_additions", kind: "scalar", T: 9 /* ScalarType.STRING */ },
8073
8097
  ]);
8074
8098
  /**
8075
- * @generated from message norsk.api.media.CmafMasterMessage
8099
+ * @generated from message norsk.api.media.CmafMultiVariantMessage
8076
8100
  */
8077
- class CmafMasterMessage extends protobuf_1.Message {
8101
+ class CmafMultiVariantMessage extends protobuf_1.Message {
8078
8102
  constructor(data) {
8079
8103
  super();
8080
8104
  /**
8081
- * @generated from oneof norsk.api.media.CmafMasterMessage.message
8105
+ * @generated from oneof norsk.api.media.CmafMultiVariantMessage.message
8082
8106
  */
8083
8107
  this.message = { case: undefined };
8084
8108
  protobuf_1.proto3.util.initPartial(data, this);
8085
8109
  }
8086
8110
  static fromBinary(bytes, options) {
8087
- return new CmafMasterMessage().fromBinary(bytes, options);
8111
+ return new CmafMultiVariantMessage().fromBinary(bytes, options);
8088
8112
  }
8089
8113
  static fromJson(jsonValue, options) {
8090
- return new CmafMasterMessage().fromJson(jsonValue, options);
8114
+ return new CmafMultiVariantMessage().fromJson(jsonValue, options);
8091
8115
  }
8092
8116
  static fromJsonString(jsonString, options) {
8093
- return new CmafMasterMessage().fromJsonString(jsonString, options);
8117
+ return new CmafMultiVariantMessage().fromJsonString(jsonString, options);
8094
8118
  }
8095
8119
  static equals(a, b) {
8096
- return protobuf_1.proto3.util.equals(CmafMasterMessage, a, b);
8120
+ return protobuf_1.proto3.util.equals(CmafMultiVariantMessage, a, b);
8097
8121
  }
8098
8122
  }
8099
- exports.CmafMasterMessage = CmafMasterMessage;
8100
- CmafMasterMessage.runtime = protobuf_1.proto3;
8101
- CmafMasterMessage.typeName = "norsk.api.media.CmafMasterMessage";
8102
- CmafMasterMessage.fields = protobuf_1.proto3.util.newFieldList(() => [
8123
+ exports.CmafMultiVariantMessage = CmafMultiVariantMessage;
8124
+ CmafMultiVariantMessage.runtime = protobuf_1.proto3;
8125
+ CmafMultiVariantMessage.typeName = "norsk.api.media.CmafMultiVariantMessage";
8126
+ CmafMultiVariantMessage.fields = protobuf_1.proto3.util.newFieldList(() => [
8103
8127
  { no: 1, name: "subscription", kind: "message", T: Subscription, oneof: "message" },
8104
- { no: 2, name: "configuration", kind: "message", T: CmafMasterConfiguration, oneof: "message" },
8128
+ { no: 2, name: "configuration", kind: "message", T: CmafMultiVariantConfiguration, oneof: "message" },
8105
8129
  { no: 3, name: "update_credentials", kind: "message", T: UpdateCredentials, oneof: "message" },
8106
8130
  ]);
8107
8131
  /**
@@ -10259,17 +10283,24 @@ QuadraH264.fields = protobuf_1.proto3.util.newFieldList(() => [
10259
10283
  { no: 2, name: "enableAud", kind: "message", T: OptionalBool },
10260
10284
  { no: 3, name: "gpuIndex", kind: "message", T: OptionalInt },
10261
10285
  { no: 4, name: "bitrate", kind: "message", T: OptionalInt },
10262
- { no: 5, name: "flushGop", kind: "message", T: OptionalBool },
10263
10286
  { no: 6, name: "enableVfr", kind: "message", T: OptionalBool },
10264
10287
  { no: 7, name: "crf", kind: "message", T: OptionalInt },
10265
- { no: 8, name: "cbr", kind: "message", T: OptionalBool },
10266
10288
  { no: 9, name: "gopPresetIndex", kind: "message", T: OptionalInt },
10267
10289
  { no: 10, name: "intraPeriod", kind: "message", T: OptionalInt },
10268
10290
  { no: 11, name: "profile", kind: "enum", T: protobuf_1.proto3.getEnumType(QuadraH264_QuadraH264Profile) },
10269
10291
  { no: 12, name: "level", kind: "message", T: OptionalInt },
10270
10292
  { no: 13, name: "rcEnable", kind: "message", T: OptionalBool },
10271
10293
  { no: 14, name: "intraQp", kind: "message", T: OptionalInt },
10272
- { no: 15, name: "rcInitDelay", kind: "message", T: OptionalInt },
10294
+ { no: 18, name: "hrdEnable", kind: "message", T: OptionalBool },
10295
+ { no: 19, name: "dolbyVisionProfile", kind: "message", T: OptionalInt },
10296
+ { no: 20, name: "fillerEnable", kind: "message", T: OptionalBool },
10297
+ { no: 21, name: "minQp", kind: "message", T: OptionalInt },
10298
+ { no: 22, name: "maxQp", kind: "message", T: OptionalInt },
10299
+ { no: 23, name: "maxDeltaQp", kind: "message", T: OptionalInt },
10300
+ { no: 24, name: "cuLevelRCEnable", kind: "message", T: OptionalBool },
10301
+ { no: 25, name: "lookAheadDepth", kind: "message", T: OptionalInt },
10302
+ { no: 26, name: "vbvBufferSize", kind: "message", T: OptionalInt },
10303
+ { no: 27, name: "vbvMaxRate", kind: "message", T: OptionalInt },
10273
10304
  ]);
10274
10305
  /**
10275
10306
  * @generated from enum norsk.api.media.QuadraH264.QuadraH264Profile
@@ -10351,10 +10382,8 @@ QuadraHevc.fields = protobuf_1.proto3.util.newFieldList(() => [
10351
10382
  { no: 2, name: "enableAud", kind: "message", T: OptionalBool },
10352
10383
  { no: 3, name: "gpuIndex", kind: "message", T: OptionalInt },
10353
10384
  { no: 4, name: "bitrate", kind: "message", T: OptionalInt },
10354
- { no: 5, name: "flushGop", kind: "message", T: OptionalBool },
10355
10385
  { no: 6, name: "enableVfr", kind: "message", T: OptionalBool },
10356
10386
  { no: 7, name: "crf", kind: "message", T: OptionalInt },
10357
- { no: 8, name: "cbr", kind: "message", T: OptionalBool },
10358
10387
  { no: 9, name: "gopPresetIndex", kind: "message", T: OptionalInt },
10359
10388
  { no: 10, name: "intraPeriod", kind: "message", T: OptionalInt },
10360
10389
  { no: 11, name: "tier", kind: "enum", T: protobuf_1.proto3.getEnumType(QuadraHevc_QuadraHevcTier) },
@@ -10363,9 +10392,16 @@ QuadraHevc.fields = protobuf_1.proto3.util.newFieldList(() => [
10363
10392
  { no: 14, name: "rcEnable", kind: "message", T: OptionalBool },
10364
10393
  { no: 15, name: "lossless", kind: "message", T: OptionalBool },
10365
10394
  { no: 16, name: "intraQp", kind: "message", T: OptionalInt },
10366
- { no: 17, name: "rcInitDelay", kind: "message", T: OptionalInt },
10367
10395
  { no: 18, name: "hrdEnable", kind: "message", T: OptionalBool },
10368
10396
  { no: 19, name: "dolbyVisionProfile", kind: "message", T: OptionalInt },
10397
+ { no: 20, name: "fillerEnable", kind: "message", T: OptionalBool },
10398
+ { no: 21, name: "minQp", kind: "message", T: OptionalInt },
10399
+ { no: 22, name: "maxQp", kind: "message", T: OptionalInt },
10400
+ { no: 23, name: "maxDeltaQp", kind: "message", T: OptionalInt },
10401
+ { no: 24, name: "cuLevelRCEnable", kind: "message", T: OptionalBool },
10402
+ { no: 25, name: "lookAheadDepth", kind: "message", T: OptionalInt },
10403
+ { no: 26, name: "vbvBufferSize", kind: "message", T: OptionalInt },
10404
+ { no: 27, name: "vbvMaxRate", kind: "message", T: OptionalInt },
10369
10405
  ]);
10370
10406
  /**
10371
10407
  * @generated from enum norsk.api.media.QuadraHevc.QuadraHevcProfile