@norskvideo/norsk-api 1.0.339 → 1.0.341
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_grpc_pb.d.ts +11 -11
- package/lib/media_grpc_pb.js +10 -10
- package/lib/media_pb.d.ts +137 -46
- package/lib/media_pb.js +104 -36
- package/lib/media_pb.js.map +1 -1
- package/lib/media_pb.ts +213 -68
- package/package.json +1 -1
package/lib/media_pb.ts
CHANGED
|
@@ -8347,6 +8347,11 @@ export class VideoComposeConfiguration extends Message<VideoComposeConfiguration
|
|
|
8347
8347
|
*/
|
|
8348
8348
|
missingStreamBehaviour = VideoComposeConfiguration_MissingStreamBehaviour.UNSPECIFIED_BEHAVIOUR;
|
|
8349
8349
|
|
|
8350
|
+
/**
|
|
8351
|
+
* @generated from field: norsk.api.media.VideoComposeConfiguration.ComposeHardwareAcceleration hardware_acceleration = 8;
|
|
8352
|
+
*/
|
|
8353
|
+
hardwareAcceleration = VideoComposeConfiguration_ComposeHardwareAcceleration.NONE;
|
|
8354
|
+
|
|
8350
8355
|
constructor(data?: PartialMessage<VideoComposeConfiguration>) {
|
|
8351
8356
|
super();
|
|
8352
8357
|
proto3.util.initPartial(data, this);
|
|
@@ -8362,6 +8367,7 @@ export class VideoComposeConfiguration extends Message<VideoComposeConfiguration
|
|
|
8362
8367
|
{ no: 5, name: "output_resolution", kind: "message", T: Resolution },
|
|
8363
8368
|
{ no: 6, name: "output_pixel_format", kind: "enum", T: proto3.getEnumType(VideoComposeConfiguration_PixelFormat) },
|
|
8364
8369
|
{ no: 7, name: "missing_stream_behaviour", kind: "enum", T: proto3.getEnumType(VideoComposeConfiguration_MissingStreamBehaviour) },
|
|
8370
|
+
{ no: 8, name: "hardware_acceleration", kind: "enum", T: proto3.getEnumType(VideoComposeConfiguration_ComposeHardwareAcceleration) },
|
|
8365
8371
|
]);
|
|
8366
8372
|
|
|
8367
8373
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): VideoComposeConfiguration {
|
|
@@ -8381,6 +8387,32 @@ export class VideoComposeConfiguration extends Message<VideoComposeConfiguration
|
|
|
8381
8387
|
}
|
|
8382
8388
|
}
|
|
8383
8389
|
|
|
8390
|
+
/**
|
|
8391
|
+
* @generated from enum norsk.api.media.VideoComposeConfiguration.ComposeHardwareAcceleration
|
|
8392
|
+
*/
|
|
8393
|
+
export enum VideoComposeConfiguration_ComposeHardwareAcceleration {
|
|
8394
|
+
/**
|
|
8395
|
+
* @generated from enum value: NONE = 0;
|
|
8396
|
+
*/
|
|
8397
|
+
NONE = 0,
|
|
8398
|
+
|
|
8399
|
+
/**
|
|
8400
|
+
* @generated from enum value: QUADRA = 1;
|
|
8401
|
+
*/
|
|
8402
|
+
QUADRA = 1,
|
|
8403
|
+
|
|
8404
|
+
/**
|
|
8405
|
+
* @generated from enum value: NVIDIA = 2;
|
|
8406
|
+
*/
|
|
8407
|
+
NVIDIA = 2,
|
|
8408
|
+
}
|
|
8409
|
+
// Retrieve enum metadata with: proto3.getEnumType(VideoComposeConfiguration_ComposeHardwareAcceleration)
|
|
8410
|
+
proto3.util.setEnumType(VideoComposeConfiguration_ComposeHardwareAcceleration, "norsk.api.media.VideoComposeConfiguration.ComposeHardwareAcceleration", [
|
|
8411
|
+
{ no: 0, name: "NONE" },
|
|
8412
|
+
{ no: 1, name: "QUADRA" },
|
|
8413
|
+
{ no: 2, name: "NVIDIA" },
|
|
8414
|
+
]);
|
|
8415
|
+
|
|
8384
8416
|
/**
|
|
8385
8417
|
* @generated from enum norsk.api.media.VideoComposeConfiguration.PixelFormat
|
|
8386
8418
|
*/
|
|
@@ -10918,9 +10950,9 @@ export class CmafWebVttMessage extends Message<CmafWebVttMessage> {
|
|
|
10918
10950
|
}
|
|
10919
10951
|
|
|
10920
10952
|
/**
|
|
10921
|
-
* @generated from message norsk.api.media.
|
|
10953
|
+
* @generated from message norsk.api.media.CmafMultiVariantConfiguration
|
|
10922
10954
|
*/
|
|
10923
|
-
export class
|
|
10955
|
+
export class CmafMultiVariantConfiguration extends Message<CmafMultiVariantConfiguration> {
|
|
10924
10956
|
/**
|
|
10925
10957
|
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
10926
10958
|
*/
|
|
@@ -10942,7 +10974,7 @@ export class CmafMasterConfiguration extends Message<CmafMasterConfiguration> {
|
|
|
10942
10974
|
destinations: CMAFDestination[] = [];
|
|
10943
10975
|
|
|
10944
10976
|
/**
|
|
10945
|
-
* Directives to add to the m3u
|
|
10977
|
+
* Directives to add to the m3u multi variant playlist
|
|
10946
10978
|
*
|
|
10947
10979
|
* @generated from field: string m3u_additions = 5;
|
|
10948
10980
|
*/
|
|
@@ -10955,13 +10987,13 @@ export class CmafMasterConfiguration extends Message<CmafMasterConfiguration> {
|
|
|
10955
10987
|
*/
|
|
10956
10988
|
mpdAdditions = "";
|
|
10957
10989
|
|
|
10958
|
-
constructor(data?: PartialMessage<
|
|
10990
|
+
constructor(data?: PartialMessage<CmafMultiVariantConfiguration>) {
|
|
10959
10991
|
super();
|
|
10960
10992
|
proto3.util.initPartial(data, this);
|
|
10961
10993
|
}
|
|
10962
10994
|
|
|
10963
10995
|
static readonly runtime = proto3;
|
|
10964
|
-
static readonly typeName = "norsk.api.media.
|
|
10996
|
+
static readonly typeName = "norsk.api.media.CmafMultiVariantConfiguration";
|
|
10965
10997
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
10966
10998
|
{ no: 1, name: "id", kind: "message", T: MediaNodeId },
|
|
10967
10999
|
{ no: 2, name: "playlist_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
@@ -10971,29 +11003,29 @@ export class CmafMasterConfiguration extends Message<CmafMasterConfiguration> {
|
|
|
10971
11003
|
{ no: 6, name: "mpd_additions", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
10972
11004
|
]);
|
|
10973
11005
|
|
|
10974
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
10975
|
-
return new
|
|
11006
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CmafMultiVariantConfiguration {
|
|
11007
|
+
return new CmafMultiVariantConfiguration().fromBinary(bytes, options);
|
|
10976
11008
|
}
|
|
10977
11009
|
|
|
10978
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
10979
|
-
return new
|
|
11010
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CmafMultiVariantConfiguration {
|
|
11011
|
+
return new CmafMultiVariantConfiguration().fromJson(jsonValue, options);
|
|
10980
11012
|
}
|
|
10981
11013
|
|
|
10982
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
10983
|
-
return new
|
|
11014
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CmafMultiVariantConfiguration {
|
|
11015
|
+
return new CmafMultiVariantConfiguration().fromJsonString(jsonString, options);
|
|
10984
11016
|
}
|
|
10985
11017
|
|
|
10986
|
-
static equals(a:
|
|
10987
|
-
return proto3.util.equals(
|
|
11018
|
+
static equals(a: CmafMultiVariantConfiguration | PlainMessage<CmafMultiVariantConfiguration> | undefined, b: CmafMultiVariantConfiguration | PlainMessage<CmafMultiVariantConfiguration> | undefined): boolean {
|
|
11019
|
+
return proto3.util.equals(CmafMultiVariantConfiguration, a, b);
|
|
10988
11020
|
}
|
|
10989
11021
|
}
|
|
10990
11022
|
|
|
10991
11023
|
/**
|
|
10992
|
-
* @generated from message norsk.api.media.
|
|
11024
|
+
* @generated from message norsk.api.media.CmafMultiVariantMessage
|
|
10993
11025
|
*/
|
|
10994
|
-
export class
|
|
11026
|
+
export class CmafMultiVariantMessage extends Message<CmafMultiVariantMessage> {
|
|
10995
11027
|
/**
|
|
10996
|
-
* @generated from oneof norsk.api.media.
|
|
11028
|
+
* @generated from oneof norsk.api.media.CmafMultiVariantMessage.message
|
|
10997
11029
|
*/
|
|
10998
11030
|
message: {
|
|
10999
11031
|
/**
|
|
@@ -11003,9 +11035,9 @@ export class CmafMasterMessage extends Message<CmafMasterMessage> {
|
|
|
11003
11035
|
case: "subscription";
|
|
11004
11036
|
} | {
|
|
11005
11037
|
/**
|
|
11006
|
-
* @generated from field: norsk.api.media.
|
|
11038
|
+
* @generated from field: norsk.api.media.CmafMultiVariantConfiguration configuration = 2;
|
|
11007
11039
|
*/
|
|
11008
|
-
value:
|
|
11040
|
+
value: CmafMultiVariantConfiguration;
|
|
11009
11041
|
case: "configuration";
|
|
11010
11042
|
} | {
|
|
11011
11043
|
/**
|
|
@@ -11015,33 +11047,33 @@ export class CmafMasterMessage extends Message<CmafMasterMessage> {
|
|
|
11015
11047
|
case: "updateCredentials";
|
|
11016
11048
|
} | { case: undefined; value?: undefined } = { case: undefined };
|
|
11017
11049
|
|
|
11018
|
-
constructor(data?: PartialMessage<
|
|
11050
|
+
constructor(data?: PartialMessage<CmafMultiVariantMessage>) {
|
|
11019
11051
|
super();
|
|
11020
11052
|
proto3.util.initPartial(data, this);
|
|
11021
11053
|
}
|
|
11022
11054
|
|
|
11023
11055
|
static readonly runtime = proto3;
|
|
11024
|
-
static readonly typeName = "norsk.api.media.
|
|
11056
|
+
static readonly typeName = "norsk.api.media.CmafMultiVariantMessage";
|
|
11025
11057
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
11026
11058
|
{ no: 1, name: "subscription", kind: "message", T: Subscription, oneof: "message" },
|
|
11027
|
-
{ no: 2, name: "configuration", kind: "message", T:
|
|
11059
|
+
{ no: 2, name: "configuration", kind: "message", T: CmafMultiVariantConfiguration, oneof: "message" },
|
|
11028
11060
|
{ no: 3, name: "update_credentials", kind: "message", T: UpdateCredentials, oneof: "message" },
|
|
11029
11061
|
]);
|
|
11030
11062
|
|
|
11031
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
11032
|
-
return new
|
|
11063
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CmafMultiVariantMessage {
|
|
11064
|
+
return new CmafMultiVariantMessage().fromBinary(bytes, options);
|
|
11033
11065
|
}
|
|
11034
11066
|
|
|
11035
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
11036
|
-
return new
|
|
11067
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CmafMultiVariantMessage {
|
|
11068
|
+
return new CmafMultiVariantMessage().fromJson(jsonValue, options);
|
|
11037
11069
|
}
|
|
11038
11070
|
|
|
11039
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
11040
|
-
return new
|
|
11071
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CmafMultiVariantMessage {
|
|
11072
|
+
return new CmafMultiVariantMessage().fromJsonString(jsonString, options);
|
|
11041
11073
|
}
|
|
11042
11074
|
|
|
11043
|
-
static equals(a:
|
|
11044
|
-
return proto3.util.equals(
|
|
11075
|
+
static equals(a: CmafMultiVariantMessage | PlainMessage<CmafMultiVariantMessage> | undefined, b: CmafMultiVariantMessage | PlainMessage<CmafMultiVariantMessage> | undefined): boolean {
|
|
11076
|
+
return proto3.util.equals(CmafMultiVariantMessage, a, b);
|
|
11045
11077
|
}
|
|
11046
11078
|
}
|
|
11047
11079
|
|
|
@@ -14328,11 +14360,6 @@ export class NvidiaHevc extends Message<NvidiaHevc> {
|
|
|
14328
14360
|
*/
|
|
14329
14361
|
frameIntervalP?: OptionalInt;
|
|
14330
14362
|
|
|
14331
|
-
/**
|
|
14332
|
-
* @generated from field: norsk.api.media.OptionalInt maxNumRefFrames = 5;
|
|
14333
|
-
*/
|
|
14334
|
-
maxNumRefFrames?: OptionalInt;
|
|
14335
|
-
|
|
14336
14363
|
/**
|
|
14337
14364
|
* @generated from field: norsk.api.media.OptionalBool outputAud = 6;
|
|
14338
14365
|
*/
|
|
@@ -14370,7 +14397,6 @@ export class NvidiaHevc extends Message<NvidiaHevc> {
|
|
|
14370
14397
|
{ no: 2, name: "gopInterval", kind: "message", T: OptionalInt },
|
|
14371
14398
|
{ no: 3, name: "idrPeriod", kind: "message", T: OptionalInt },
|
|
14372
14399
|
{ no: 4, name: "frameIntervalP", kind: "message", T: OptionalInt },
|
|
14373
|
-
{ no: 5, name: "maxNumRefFrames", kind: "message", T: OptionalInt },
|
|
14374
14400
|
{ no: 6, name: "outputAud", kind: "message", T: OptionalBool },
|
|
14375
14401
|
{ no: 7, name: "level", kind: "message", T: OptionalInt },
|
|
14376
14402
|
{ no: 8, name: "tier", kind: "enum", T: proto3.getEnumType(NvidiaHevc_NvidiaHevcTier) },
|
|
@@ -14465,11 +14491,6 @@ export class QuadraH264 extends Message<QuadraH264> {
|
|
|
14465
14491
|
*/
|
|
14466
14492
|
bitrate?: OptionalInt;
|
|
14467
14493
|
|
|
14468
|
-
/**
|
|
14469
|
-
* @generated from field: norsk.api.media.OptionalBool flushGop = 5;
|
|
14470
|
-
*/
|
|
14471
|
-
flushGop?: OptionalBool;
|
|
14472
|
-
|
|
14473
14494
|
/**
|
|
14474
14495
|
* @generated from field: norsk.api.media.OptionalBool enableVfr = 6;
|
|
14475
14496
|
*/
|
|
@@ -14480,11 +14501,6 @@ export class QuadraH264 extends Message<QuadraH264> {
|
|
|
14480
14501
|
*/
|
|
14481
14502
|
crf?: OptionalInt;
|
|
14482
14503
|
|
|
14483
|
-
/**
|
|
14484
|
-
* @generated from field: norsk.api.media.OptionalBool cbr = 8;
|
|
14485
|
-
*/
|
|
14486
|
-
cbr?: OptionalBool;
|
|
14487
|
-
|
|
14488
14504
|
/**
|
|
14489
14505
|
* @generated from field: norsk.api.media.OptionalInt gopPresetIndex = 9;
|
|
14490
14506
|
*/
|
|
@@ -14516,9 +14532,54 @@ export class QuadraH264 extends Message<QuadraH264> {
|
|
|
14516
14532
|
intraQp?: OptionalInt;
|
|
14517
14533
|
|
|
14518
14534
|
/**
|
|
14519
|
-
* @generated from field: norsk.api.media.
|
|
14535
|
+
* @generated from field: norsk.api.media.OptionalBool hrdEnable = 18;
|
|
14520
14536
|
*/
|
|
14521
|
-
|
|
14537
|
+
hrdEnable?: OptionalBool;
|
|
14538
|
+
|
|
14539
|
+
/**
|
|
14540
|
+
* @generated from field: norsk.api.media.OptionalInt dolbyVisionProfile = 19;
|
|
14541
|
+
*/
|
|
14542
|
+
dolbyVisionProfile?: OptionalInt;
|
|
14543
|
+
|
|
14544
|
+
/**
|
|
14545
|
+
* @generated from field: norsk.api.media.OptionalBool fillerEnable = 20;
|
|
14546
|
+
*/
|
|
14547
|
+
fillerEnable?: OptionalBool;
|
|
14548
|
+
|
|
14549
|
+
/**
|
|
14550
|
+
* @generated from field: norsk.api.media.OptionalInt minQp = 21;
|
|
14551
|
+
*/
|
|
14552
|
+
minQp?: OptionalInt;
|
|
14553
|
+
|
|
14554
|
+
/**
|
|
14555
|
+
* @generated from field: norsk.api.media.OptionalInt maxQp = 22;
|
|
14556
|
+
*/
|
|
14557
|
+
maxQp?: OptionalInt;
|
|
14558
|
+
|
|
14559
|
+
/**
|
|
14560
|
+
* @generated from field: norsk.api.media.OptionalInt maxDeltaQp = 23;
|
|
14561
|
+
*/
|
|
14562
|
+
maxDeltaQp?: OptionalInt;
|
|
14563
|
+
|
|
14564
|
+
/**
|
|
14565
|
+
* @generated from field: norsk.api.media.OptionalBool cuLevelRCEnable = 24;
|
|
14566
|
+
*/
|
|
14567
|
+
cuLevelRCEnable?: OptionalBool;
|
|
14568
|
+
|
|
14569
|
+
/**
|
|
14570
|
+
* @generated from field: norsk.api.media.OptionalInt lookAheadDepth = 25;
|
|
14571
|
+
*/
|
|
14572
|
+
lookAheadDepth?: OptionalInt;
|
|
14573
|
+
|
|
14574
|
+
/**
|
|
14575
|
+
* @generated from field: norsk.api.media.OptionalInt vbvBufferSize = 26;
|
|
14576
|
+
*/
|
|
14577
|
+
vbvBufferSize?: OptionalInt;
|
|
14578
|
+
|
|
14579
|
+
/**
|
|
14580
|
+
* @generated from field: norsk.api.media.OptionalInt vbvMaxRate = 27;
|
|
14581
|
+
*/
|
|
14582
|
+
vbvMaxRate?: OptionalInt;
|
|
14522
14583
|
|
|
14523
14584
|
constructor(data?: PartialMessage<QuadraH264>) {
|
|
14524
14585
|
super();
|
|
@@ -14532,17 +14593,24 @@ export class QuadraH264 extends Message<QuadraH264> {
|
|
|
14532
14593
|
{ no: 2, name: "enableAud", kind: "message", T: OptionalBool },
|
|
14533
14594
|
{ no: 3, name: "gpuIndex", kind: "message", T: OptionalInt },
|
|
14534
14595
|
{ no: 4, name: "bitrate", kind: "message", T: OptionalInt },
|
|
14535
|
-
{ no: 5, name: "flushGop", kind: "message", T: OptionalBool },
|
|
14536
14596
|
{ no: 6, name: "enableVfr", kind: "message", T: OptionalBool },
|
|
14537
14597
|
{ no: 7, name: "crf", kind: "message", T: OptionalInt },
|
|
14538
|
-
{ no: 8, name: "cbr", kind: "message", T: OptionalBool },
|
|
14539
14598
|
{ no: 9, name: "gopPresetIndex", kind: "message", T: OptionalInt },
|
|
14540
14599
|
{ no: 10, name: "intraPeriod", kind: "message", T: OptionalInt },
|
|
14541
14600
|
{ no: 11, name: "profile", kind: "enum", T: proto3.getEnumType(QuadraH264_QuadraH264Profile) },
|
|
14542
14601
|
{ no: 12, name: "level", kind: "message", T: OptionalInt },
|
|
14543
14602
|
{ no: 13, name: "rcEnable", kind: "message", T: OptionalBool },
|
|
14544
14603
|
{ no: 14, name: "intraQp", kind: "message", T: OptionalInt },
|
|
14545
|
-
{ no:
|
|
14604
|
+
{ no: 18, name: "hrdEnable", kind: "message", T: OptionalBool },
|
|
14605
|
+
{ no: 19, name: "dolbyVisionProfile", kind: "message", T: OptionalInt },
|
|
14606
|
+
{ no: 20, name: "fillerEnable", kind: "message", T: OptionalBool },
|
|
14607
|
+
{ no: 21, name: "minQp", kind: "message", T: OptionalInt },
|
|
14608
|
+
{ no: 22, name: "maxQp", kind: "message", T: OptionalInt },
|
|
14609
|
+
{ no: 23, name: "maxDeltaQp", kind: "message", T: OptionalInt },
|
|
14610
|
+
{ no: 24, name: "cuLevelRCEnable", kind: "message", T: OptionalBool },
|
|
14611
|
+
{ no: 25, name: "lookAheadDepth", kind: "message", T: OptionalInt },
|
|
14612
|
+
{ no: 26, name: "vbvBufferSize", kind: "message", T: OptionalInt },
|
|
14613
|
+
{ no: 27, name: "vbvMaxRate", kind: "message", T: OptionalInt },
|
|
14546
14614
|
]);
|
|
14547
14615
|
|
|
14548
14616
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): QuadraH264 {
|
|
@@ -14630,11 +14698,6 @@ export class QuadraHevc extends Message<QuadraHevc> {
|
|
|
14630
14698
|
*/
|
|
14631
14699
|
bitrate?: OptionalInt;
|
|
14632
14700
|
|
|
14633
|
-
/**
|
|
14634
|
-
* @generated from field: norsk.api.media.OptionalBool flushGop = 5;
|
|
14635
|
-
*/
|
|
14636
|
-
flushGop?: OptionalBool;
|
|
14637
|
-
|
|
14638
14701
|
/**
|
|
14639
14702
|
* @generated from field: norsk.api.media.OptionalBool enableVfr = 6;
|
|
14640
14703
|
*/
|
|
@@ -14645,11 +14708,6 @@ export class QuadraHevc extends Message<QuadraHevc> {
|
|
|
14645
14708
|
*/
|
|
14646
14709
|
crf?: OptionalInt;
|
|
14647
14710
|
|
|
14648
|
-
/**
|
|
14649
|
-
* @generated from field: norsk.api.media.OptionalBool cbr = 8;
|
|
14650
|
-
*/
|
|
14651
|
-
cbr?: OptionalBool;
|
|
14652
|
-
|
|
14653
14711
|
/**
|
|
14654
14712
|
* @generated from field: norsk.api.media.OptionalInt gopPresetIndex = 9;
|
|
14655
14713
|
*/
|
|
@@ -14690,11 +14748,6 @@ export class QuadraHevc extends Message<QuadraHevc> {
|
|
|
14690
14748
|
*/
|
|
14691
14749
|
intraQp?: OptionalInt;
|
|
14692
14750
|
|
|
14693
|
-
/**
|
|
14694
|
-
* @generated from field: norsk.api.media.OptionalInt rcInitDelay = 17;
|
|
14695
|
-
*/
|
|
14696
|
-
rcInitDelay?: OptionalInt;
|
|
14697
|
-
|
|
14698
14751
|
/**
|
|
14699
14752
|
* @generated from field: norsk.api.media.OptionalBool hrdEnable = 18;
|
|
14700
14753
|
*/
|
|
@@ -14705,6 +14758,46 @@ export class QuadraHevc extends Message<QuadraHevc> {
|
|
|
14705
14758
|
*/
|
|
14706
14759
|
dolbyVisionProfile?: OptionalInt;
|
|
14707
14760
|
|
|
14761
|
+
/**
|
|
14762
|
+
* @generated from field: norsk.api.media.OptionalBool fillerEnable = 20;
|
|
14763
|
+
*/
|
|
14764
|
+
fillerEnable?: OptionalBool;
|
|
14765
|
+
|
|
14766
|
+
/**
|
|
14767
|
+
* @generated from field: norsk.api.media.OptionalInt minQp = 21;
|
|
14768
|
+
*/
|
|
14769
|
+
minQp?: OptionalInt;
|
|
14770
|
+
|
|
14771
|
+
/**
|
|
14772
|
+
* @generated from field: norsk.api.media.OptionalInt maxQp = 22;
|
|
14773
|
+
*/
|
|
14774
|
+
maxQp?: OptionalInt;
|
|
14775
|
+
|
|
14776
|
+
/**
|
|
14777
|
+
* @generated from field: norsk.api.media.OptionalInt maxDeltaQp = 23;
|
|
14778
|
+
*/
|
|
14779
|
+
maxDeltaQp?: OptionalInt;
|
|
14780
|
+
|
|
14781
|
+
/**
|
|
14782
|
+
* @generated from field: norsk.api.media.OptionalBool cuLevelRCEnable = 24;
|
|
14783
|
+
*/
|
|
14784
|
+
cuLevelRCEnable?: OptionalBool;
|
|
14785
|
+
|
|
14786
|
+
/**
|
|
14787
|
+
* @generated from field: norsk.api.media.OptionalInt lookAheadDepth = 25;
|
|
14788
|
+
*/
|
|
14789
|
+
lookAheadDepth?: OptionalInt;
|
|
14790
|
+
|
|
14791
|
+
/**
|
|
14792
|
+
* @generated from field: norsk.api.media.OptionalInt vbvBufferSize = 26;
|
|
14793
|
+
*/
|
|
14794
|
+
vbvBufferSize?: OptionalInt;
|
|
14795
|
+
|
|
14796
|
+
/**
|
|
14797
|
+
* @generated from field: norsk.api.media.OptionalInt vbvMaxRate = 27;
|
|
14798
|
+
*/
|
|
14799
|
+
vbvMaxRate?: OptionalInt;
|
|
14800
|
+
|
|
14708
14801
|
constructor(data?: PartialMessage<QuadraHevc>) {
|
|
14709
14802
|
super();
|
|
14710
14803
|
proto3.util.initPartial(data, this);
|
|
@@ -14717,10 +14810,8 @@ export class QuadraHevc extends Message<QuadraHevc> {
|
|
|
14717
14810
|
{ no: 2, name: "enableAud", kind: "message", T: OptionalBool },
|
|
14718
14811
|
{ no: 3, name: "gpuIndex", kind: "message", T: OptionalInt },
|
|
14719
14812
|
{ no: 4, name: "bitrate", kind: "message", T: OptionalInt },
|
|
14720
|
-
{ no: 5, name: "flushGop", kind: "message", T: OptionalBool },
|
|
14721
14813
|
{ no: 6, name: "enableVfr", kind: "message", T: OptionalBool },
|
|
14722
14814
|
{ no: 7, name: "crf", kind: "message", T: OptionalInt },
|
|
14723
|
-
{ no: 8, name: "cbr", kind: "message", T: OptionalBool },
|
|
14724
14815
|
{ no: 9, name: "gopPresetIndex", kind: "message", T: OptionalInt },
|
|
14725
14816
|
{ no: 10, name: "intraPeriod", kind: "message", T: OptionalInt },
|
|
14726
14817
|
{ no: 11, name: "tier", kind: "enum", T: proto3.getEnumType(QuadraHevc_QuadraHevcTier) },
|
|
@@ -14729,9 +14820,16 @@ export class QuadraHevc extends Message<QuadraHevc> {
|
|
|
14729
14820
|
{ no: 14, name: "rcEnable", kind: "message", T: OptionalBool },
|
|
14730
14821
|
{ no: 15, name: "lossless", kind: "message", T: OptionalBool },
|
|
14731
14822
|
{ no: 16, name: "intraQp", kind: "message", T: OptionalInt },
|
|
14732
|
-
{ no: 17, name: "rcInitDelay", kind: "message", T: OptionalInt },
|
|
14733
14823
|
{ no: 18, name: "hrdEnable", kind: "message", T: OptionalBool },
|
|
14734
14824
|
{ no: 19, name: "dolbyVisionProfile", kind: "message", T: OptionalInt },
|
|
14825
|
+
{ no: 20, name: "fillerEnable", kind: "message", T: OptionalBool },
|
|
14826
|
+
{ no: 21, name: "minQp", kind: "message", T: OptionalInt },
|
|
14827
|
+
{ no: 22, name: "maxQp", kind: "message", T: OptionalInt },
|
|
14828
|
+
{ no: 23, name: "maxDeltaQp", kind: "message", T: OptionalInt },
|
|
14829
|
+
{ no: 24, name: "cuLevelRCEnable", kind: "message", T: OptionalBool },
|
|
14830
|
+
{ no: 25, name: "lookAheadDepth", kind: "message", T: OptionalInt },
|
|
14831
|
+
{ no: 26, name: "vbvBufferSize", kind: "message", T: OptionalInt },
|
|
14832
|
+
{ no: 27, name: "vbvMaxRate", kind: "message", T: OptionalInt },
|
|
14735
14833
|
]);
|
|
14736
14834
|
|
|
14737
14835
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): QuadraHevc {
|
|
@@ -17049,6 +17147,43 @@ export class StreamSwitchSmoothSwitchError extends Message<StreamSwitchSmoothSwi
|
|
|
17049
17147
|
}
|
|
17050
17148
|
}
|
|
17051
17149
|
|
|
17150
|
+
/**
|
|
17151
|
+
* @generated from message norsk.api.media.StreamSwitchTransitionComplete
|
|
17152
|
+
*/
|
|
17153
|
+
export class StreamSwitchTransitionComplete extends Message<StreamSwitchTransitionComplete> {
|
|
17154
|
+
/**
|
|
17155
|
+
* @generated from field: norsk.api.media.InputPin active_source = 1;
|
|
17156
|
+
*/
|
|
17157
|
+
activeSource?: InputPin;
|
|
17158
|
+
|
|
17159
|
+
constructor(data?: PartialMessage<StreamSwitchTransitionComplete>) {
|
|
17160
|
+
super();
|
|
17161
|
+
proto3.util.initPartial(data, this);
|
|
17162
|
+
}
|
|
17163
|
+
|
|
17164
|
+
static readonly runtime = proto3;
|
|
17165
|
+
static readonly typeName = "norsk.api.media.StreamSwitchTransitionComplete";
|
|
17166
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
17167
|
+
{ no: 1, name: "active_source", kind: "message", T: InputPin },
|
|
17168
|
+
]);
|
|
17169
|
+
|
|
17170
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamSwitchTransitionComplete {
|
|
17171
|
+
return new StreamSwitchTransitionComplete().fromBinary(bytes, options);
|
|
17172
|
+
}
|
|
17173
|
+
|
|
17174
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamSwitchTransitionComplete {
|
|
17175
|
+
return new StreamSwitchTransitionComplete().fromJson(jsonValue, options);
|
|
17176
|
+
}
|
|
17177
|
+
|
|
17178
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamSwitchTransitionComplete {
|
|
17179
|
+
return new StreamSwitchTransitionComplete().fromJsonString(jsonString, options);
|
|
17180
|
+
}
|
|
17181
|
+
|
|
17182
|
+
static equals(a: StreamSwitchTransitionComplete | PlainMessage<StreamSwitchTransitionComplete> | undefined, b: StreamSwitchTransitionComplete | PlainMessage<StreamSwitchTransitionComplete> | undefined): boolean {
|
|
17183
|
+
return proto3.util.equals(StreamSwitchTransitionComplete, a, b);
|
|
17184
|
+
}
|
|
17185
|
+
}
|
|
17186
|
+
|
|
17052
17187
|
/**
|
|
17053
17188
|
* @generated from message norsk.api.media.StreamSwitchSmoothEvent
|
|
17054
17189
|
*/
|
|
@@ -17090,6 +17225,15 @@ export class StreamSwitchSmoothEvent extends Message<StreamSwitchSmoothEvent> {
|
|
|
17090
17225
|
*/
|
|
17091
17226
|
value: MultipleContext;
|
|
17092
17227
|
case: "inboundContext";
|
|
17228
|
+
} | {
|
|
17229
|
+
/**
|
|
17230
|
+
* Message indicating a transition has succesfully completed for a requested switch, i.e. the new source
|
|
17231
|
+
* is now showing
|
|
17232
|
+
*
|
|
17233
|
+
* @generated from field: norsk.api.media.StreamSwitchTransitionComplete transition_complete = 6;
|
|
17234
|
+
*/
|
|
17235
|
+
value: StreamSwitchTransitionComplete;
|
|
17236
|
+
case: "transitionComplete";
|
|
17093
17237
|
} | { case: undefined; value?: undefined } = { case: undefined };
|
|
17094
17238
|
|
|
17095
17239
|
constructor(data?: PartialMessage<StreamSwitchSmoothEvent>) {
|
|
@@ -17105,6 +17249,7 @@ export class StreamSwitchSmoothEvent extends Message<StreamSwitchSmoothEvent> {
|
|
|
17105
17249
|
{ no: 3, name: "subscription_response", kind: "message", T: SubscriptionResponse, oneof: "message" },
|
|
17106
17250
|
{ no: 4, name: "switch_error", kind: "message", T: StreamSwitchSmoothSwitchError, oneof: "message" },
|
|
17107
17251
|
{ no: 5, name: "inbound_context", kind: "message", T: MultipleContext, oneof: "message" },
|
|
17252
|
+
{ no: 6, name: "transition_complete", kind: "message", T: StreamSwitchTransitionComplete, oneof: "message" },
|
|
17108
17253
|
]);
|
|
17109
17254
|
|
|
17110
17255
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamSwitchSmoothEvent {
|