@norskvideo/norsk-api 1.0.343 → 1.0.345
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 +29 -13
- package/lib/media_grpc_pb.js +69 -35
- package/lib/media_pb.d.ts +249 -59
- package/lib/media_pb.js +278 -84
- package/lib/media_pb.js.map +1 -1
- package/lib/media_pb.ts +400 -97
- package/package.json +1 -1
package/lib/media_pb.d.ts
CHANGED
|
@@ -445,6 +445,23 @@ export declare enum SrtMode {
|
|
|
445
445
|
*/
|
|
446
446
|
Caller = 1
|
|
447
447
|
}
|
|
448
|
+
/**
|
|
449
|
+
* @generated from enum norsk.api.media.TestCardPattern
|
|
450
|
+
*/
|
|
451
|
+
export declare enum TestCardPattern {
|
|
452
|
+
/**
|
|
453
|
+
* @generated from enum value: Black = 0;
|
|
454
|
+
*/
|
|
455
|
+
Black = 0,
|
|
456
|
+
/**
|
|
457
|
+
* @generated from enum value: Smpte75 = 1;
|
|
458
|
+
*/
|
|
459
|
+
Smpte75 = 1,
|
|
460
|
+
/**
|
|
461
|
+
* @generated from enum value: Smpte100 = 2;
|
|
462
|
+
*/
|
|
463
|
+
Smpte100 = 2
|
|
464
|
+
}
|
|
448
465
|
/**
|
|
449
466
|
* ///////////////////////////////
|
|
450
467
|
* DeckLink Input
|
|
@@ -1393,6 +1410,29 @@ export declare class Resolution extends Message<Resolution> {
|
|
|
1393
1410
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Resolution;
|
|
1394
1411
|
static equals(a: Resolution | PlainMessage<Resolution> | undefined, b: Resolution | PlainMessage<Resolution> | undefined): boolean;
|
|
1395
1412
|
}
|
|
1413
|
+
/**
|
|
1414
|
+
* A time interval measured as ticks / (ticks per second)
|
|
1415
|
+
*
|
|
1416
|
+
* @generated from message norsk.api.media.Interval
|
|
1417
|
+
*/
|
|
1418
|
+
export declare class Interval extends Message<Interval> {
|
|
1419
|
+
/**
|
|
1420
|
+
* @generated from field: uint32 n = 1;
|
|
1421
|
+
*/
|
|
1422
|
+
n: number;
|
|
1423
|
+
/**
|
|
1424
|
+
* @generated from field: uint32 d = 2;
|
|
1425
|
+
*/
|
|
1426
|
+
d: number;
|
|
1427
|
+
constructor(data?: PartialMessage<Interval>);
|
|
1428
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
1429
|
+
static readonly typeName = "norsk.api.media.Interval";
|
|
1430
|
+
static readonly fields: FieldList;
|
|
1431
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Interval;
|
|
1432
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Interval;
|
|
1433
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Interval;
|
|
1434
|
+
static equals(a: Interval | PlainMessage<Interval> | undefined, b: Interval | PlainMessage<Interval> | undefined): boolean;
|
|
1435
|
+
}
|
|
1396
1436
|
/**
|
|
1397
1437
|
* ////////////////////////////////////////////////////////////////////////////
|
|
1398
1438
|
* Context
|
|
@@ -1778,6 +1818,12 @@ export declare class StreamMetadata_VideoMetadata extends Message<StreamMetadata
|
|
|
1778
1818
|
* @generated from field: int32 bitrate = 5;
|
|
1779
1819
|
*/
|
|
1780
1820
|
bitrate: number;
|
|
1821
|
+
/**
|
|
1822
|
+
* The framerate of this video
|
|
1823
|
+
*
|
|
1824
|
+
* @generated from field: norsk.api.media.FrameRate frame_rate = 6;
|
|
1825
|
+
*/
|
|
1826
|
+
frameRate?: FrameRate;
|
|
1781
1827
|
constructor(data?: PartialMessage<StreamMetadata_VideoMetadata>);
|
|
1782
1828
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
1783
1829
|
static readonly typeName = "norsk.api.media.StreamMetadata.VideoMetadata";
|
|
@@ -3737,13 +3783,25 @@ export declare class TestCardVideoConfiguration extends Message<TestCardVideoCon
|
|
|
3737
3783
|
*/
|
|
3738
3784
|
resolution?: Resolution;
|
|
3739
3785
|
/**
|
|
3740
|
-
* @generated from field:
|
|
3786
|
+
* @generated from field: norsk.api.media.FrameRate frame_rate = 2;
|
|
3787
|
+
*/
|
|
3788
|
+
frameRate?: FrameRate;
|
|
3789
|
+
/**
|
|
3790
|
+
* @generated from field: string source_name = 3;
|
|
3741
3791
|
*/
|
|
3742
3792
|
sourceName: string;
|
|
3743
3793
|
/**
|
|
3744
|
-
* @generated from field: int32 number_of_frames =
|
|
3794
|
+
* @generated from field: int32 number_of_frames = 4;
|
|
3745
3795
|
*/
|
|
3746
3796
|
numberOfFrames: number;
|
|
3797
|
+
/**
|
|
3798
|
+
* @generated from field: bool realtime = 5;
|
|
3799
|
+
*/
|
|
3800
|
+
realtime: boolean;
|
|
3801
|
+
/**
|
|
3802
|
+
* @generated from field: norsk.api.media.TestCardPattern pattern = 6;
|
|
3803
|
+
*/
|
|
3804
|
+
pattern: TestCardPattern;
|
|
3747
3805
|
constructor(data?: PartialMessage<TestCardVideoConfiguration>);
|
|
3748
3806
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
3749
3807
|
static readonly typeName = "norsk.api.media.TestCardVideoConfiguration";
|
|
@@ -3804,12 +3862,6 @@ export declare class VideoTestCardGeneratorEvent extends Message<VideoTestCardGe
|
|
|
3804
3862
|
*/
|
|
3805
3863
|
value: Context;
|
|
3806
3864
|
case: "outboundContext";
|
|
3807
|
-
} | {
|
|
3808
|
-
/**
|
|
3809
|
-
* @generated from field: norsk.api.media.SubscriptionResponse subscription_response = 3;
|
|
3810
|
-
*/
|
|
3811
|
-
value: SubscriptionResponse;
|
|
3812
|
-
case: "subscriptionResponse";
|
|
3813
3865
|
} | {
|
|
3814
3866
|
case: undefined;
|
|
3815
3867
|
value?: undefined;
|
|
@@ -10497,34 +10549,46 @@ export declare class StreamSyncEvent extends Message<StreamSyncEvent> {
|
|
|
10497
10549
|
static equals(a: StreamSyncEvent | PlainMessage<StreamSyncEvent> | undefined, b: StreamSyncEvent | PlainMessage<StreamSyncEvent> | undefined): boolean;
|
|
10498
10550
|
}
|
|
10499
10551
|
/**
|
|
10500
|
-
* @generated from message norsk.api.media.
|
|
10552
|
+
* @generated from message norsk.api.media.StreamAlignConfiguration
|
|
10501
10553
|
*/
|
|
10502
|
-
export declare class
|
|
10554
|
+
export declare class StreamAlignConfiguration extends Message<StreamAlignConfiguration> {
|
|
10503
10555
|
/**
|
|
10504
10556
|
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
10505
10557
|
*/
|
|
10506
10558
|
id?: MediaNodeId;
|
|
10507
|
-
|
|
10559
|
+
/**
|
|
10560
|
+
* The normalisd sample rate of the audio output
|
|
10561
|
+
*
|
|
10562
|
+
* @generated from field: norsk.api.media.SampleRate sample_rate = 2;
|
|
10563
|
+
*/
|
|
10564
|
+
sampleRate: SampleRate;
|
|
10565
|
+
/**
|
|
10566
|
+
* The normalised frame rate of the video output
|
|
10567
|
+
*
|
|
10568
|
+
* @generated from field: norsk.api.media.FrameRate frame_rate = 3;
|
|
10569
|
+
*/
|
|
10570
|
+
frameRate?: FrameRate;
|
|
10571
|
+
constructor(data?: PartialMessage<StreamAlignConfiguration>);
|
|
10508
10572
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
10509
|
-
static readonly typeName = "norsk.api.media.
|
|
10573
|
+
static readonly typeName = "norsk.api.media.StreamAlignConfiguration";
|
|
10510
10574
|
static readonly fields: FieldList;
|
|
10511
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
10512
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
10513
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
10514
|
-
static equals(a:
|
|
10575
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamAlignConfiguration;
|
|
10576
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamAlignConfiguration;
|
|
10577
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamAlignConfiguration;
|
|
10578
|
+
static equals(a: StreamAlignConfiguration | PlainMessage<StreamAlignConfiguration> | undefined, b: StreamAlignConfiguration | PlainMessage<StreamAlignConfiguration> | undefined): boolean;
|
|
10515
10579
|
}
|
|
10516
10580
|
/**
|
|
10517
|
-
* @generated from message norsk.api.media.
|
|
10581
|
+
* @generated from message norsk.api.media.StreamAlignMessage
|
|
10518
10582
|
*/
|
|
10519
|
-
export declare class
|
|
10583
|
+
export declare class StreamAlignMessage extends Message<StreamAlignMessage> {
|
|
10520
10584
|
/**
|
|
10521
|
-
* @generated from oneof norsk.api.media.
|
|
10585
|
+
* @generated from oneof norsk.api.media.StreamAlignMessage.message
|
|
10522
10586
|
*/
|
|
10523
10587
|
message: {
|
|
10524
10588
|
/**
|
|
10525
|
-
* @generated from field: norsk.api.media.
|
|
10589
|
+
* @generated from field: norsk.api.media.StreamAlignConfiguration initial_config = 1;
|
|
10526
10590
|
*/
|
|
10527
|
-
value:
|
|
10591
|
+
value: StreamAlignConfiguration;
|
|
10528
10592
|
case: "initialConfig";
|
|
10529
10593
|
} | {
|
|
10530
10594
|
/**
|
|
@@ -10536,21 +10600,21 @@ export declare class StreamProgramJoinMessage extends Message<StreamProgramJoinM
|
|
|
10536
10600
|
case: undefined;
|
|
10537
10601
|
value?: undefined;
|
|
10538
10602
|
};
|
|
10539
|
-
constructor(data?: PartialMessage<
|
|
10603
|
+
constructor(data?: PartialMessage<StreamAlignMessage>);
|
|
10540
10604
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
10541
|
-
static readonly typeName = "norsk.api.media.
|
|
10605
|
+
static readonly typeName = "norsk.api.media.StreamAlignMessage";
|
|
10542
10606
|
static readonly fields: FieldList;
|
|
10543
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
10544
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
10545
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
10546
|
-
static equals(a:
|
|
10607
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamAlignMessage;
|
|
10608
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamAlignMessage;
|
|
10609
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamAlignMessage;
|
|
10610
|
+
static equals(a: StreamAlignMessage | PlainMessage<StreamAlignMessage> | undefined, b: StreamAlignMessage | PlainMessage<StreamAlignMessage> | undefined): boolean;
|
|
10547
10611
|
}
|
|
10548
10612
|
/**
|
|
10549
|
-
* @generated from message norsk.api.media.
|
|
10613
|
+
* @generated from message norsk.api.media.StreamAlignEvent
|
|
10550
10614
|
*/
|
|
10551
|
-
export declare class
|
|
10615
|
+
export declare class StreamAlignEvent extends Message<StreamAlignEvent> {
|
|
10552
10616
|
/**
|
|
10553
|
-
* @generated from oneof norsk.api.media.
|
|
10617
|
+
* @generated from oneof norsk.api.media.StreamAlignEvent.message
|
|
10554
10618
|
*/
|
|
10555
10619
|
message: {
|
|
10556
10620
|
/**
|
|
@@ -10580,14 +10644,14 @@ export declare class StreamProgramJoinEvent extends Message<StreamProgramJoinEve
|
|
|
10580
10644
|
case: undefined;
|
|
10581
10645
|
value?: undefined;
|
|
10582
10646
|
};
|
|
10583
|
-
constructor(data?: PartialMessage<
|
|
10647
|
+
constructor(data?: PartialMessage<StreamAlignEvent>);
|
|
10584
10648
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
10585
|
-
static readonly typeName = "norsk.api.media.
|
|
10649
|
+
static readonly typeName = "norsk.api.media.StreamAlignEvent";
|
|
10586
10650
|
static readonly fields: FieldList;
|
|
10587
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
10588
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
10589
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
10590
|
-
static equals(a:
|
|
10651
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamAlignEvent;
|
|
10652
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamAlignEvent;
|
|
10653
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamAlignEvent;
|
|
10654
|
+
static equals(a: StreamAlignEvent | PlainMessage<StreamAlignEvent> | undefined, b: StreamAlignEvent | PlainMessage<StreamAlignEvent> | undefined): boolean;
|
|
10591
10655
|
}
|
|
10592
10656
|
/**
|
|
10593
10657
|
* ///////////////////////////////
|
|
@@ -10819,6 +10883,8 @@ export declare class StreamSwitchSmoothConfiguration extends Message<StreamSwitc
|
|
|
10819
10883
|
*/
|
|
10820
10884
|
transitionDurationMs: number;
|
|
10821
10885
|
/**
|
|
10886
|
+
* Resolution of the normalised output
|
|
10887
|
+
*
|
|
10822
10888
|
* @generated from field: norsk.api.media.Resolution output_resolution = 5;
|
|
10823
10889
|
*/
|
|
10824
10890
|
outputResolution?: Resolution;
|
|
@@ -10828,6 +10894,24 @@ export declare class StreamSwitchSmoothConfiguration extends Message<StreamSwitc
|
|
|
10828
10894
|
* @generated from field: norsk.api.media.SampleRate sample_rate = 6;
|
|
10829
10895
|
*/
|
|
10830
10896
|
sampleRate: SampleRate;
|
|
10897
|
+
/**
|
|
10898
|
+
* The frame rate of the output
|
|
10899
|
+
*
|
|
10900
|
+
* @generated from field: norsk.api.media.FrameRate frame_rate = 7;
|
|
10901
|
+
*/
|
|
10902
|
+
frameRate?: FrameRate;
|
|
10903
|
+
/**
|
|
10904
|
+
* The channel layout of the output
|
|
10905
|
+
*
|
|
10906
|
+
* @generated from field: norsk.api.media.ChannelLayout channel_layout = 8;
|
|
10907
|
+
*/
|
|
10908
|
+
channelLayout?: ChannelLayout;
|
|
10909
|
+
/**
|
|
10910
|
+
* Align all timestamps to minimise timestamp jitter on mixed streams
|
|
10911
|
+
*
|
|
10912
|
+
* @generated from field: norsk.api.media.StreamSwitchSmoothConfiguration.Alignment alignment = 9;
|
|
10913
|
+
*/
|
|
10914
|
+
alignment: StreamSwitchSmoothConfiguration_Alignment;
|
|
10831
10915
|
constructor(data?: PartialMessage<StreamSwitchSmoothConfiguration>);
|
|
10832
10916
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
10833
10917
|
static readonly typeName = "norsk.api.media.StreamSwitchSmoothConfiguration";
|
|
@@ -10837,6 +10921,21 @@ export declare class StreamSwitchSmoothConfiguration extends Message<StreamSwitc
|
|
|
10837
10921
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamSwitchSmoothConfiguration;
|
|
10838
10922
|
static equals(a: StreamSwitchSmoothConfiguration | PlainMessage<StreamSwitchSmoothConfiguration> | undefined, b: StreamSwitchSmoothConfiguration | PlainMessage<StreamSwitchSmoothConfiguration> | undefined): boolean;
|
|
10839
10923
|
}
|
|
10924
|
+
/**
|
|
10925
|
+
* Whether to align all the incoming timestamps
|
|
10926
|
+
*
|
|
10927
|
+
* @generated from enum norsk.api.media.StreamSwitchSmoothConfiguration.Alignment
|
|
10928
|
+
*/
|
|
10929
|
+
export declare enum StreamSwitchSmoothConfiguration_Alignment {
|
|
10930
|
+
/**
|
|
10931
|
+
* @generated from enum value: ALIGNED = 0;
|
|
10932
|
+
*/
|
|
10933
|
+
ALIGNED = 0,
|
|
10934
|
+
/**
|
|
10935
|
+
* @generated from enum value: NO_ALIGNMENT = 1;
|
|
10936
|
+
*/
|
|
10937
|
+
NO_ALIGNMENT = 1
|
|
10938
|
+
}
|
|
10840
10939
|
/**
|
|
10841
10940
|
* @generated from message norsk.api.media.StreamSwitchSmoothSwitch
|
|
10842
10941
|
*/
|
|
@@ -11294,29 +11393,6 @@ export declare class AudioMeasureLevelsMessage extends Message<AudioMeasureLevel
|
|
|
11294
11393
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AudioMeasureLevelsMessage;
|
|
11295
11394
|
static equals(a: AudioMeasureLevelsMessage | PlainMessage<AudioMeasureLevelsMessage> | undefined, b: AudioMeasureLevelsMessage | PlainMessage<AudioMeasureLevelsMessage> | undefined): boolean;
|
|
11296
11395
|
}
|
|
11297
|
-
/**
|
|
11298
|
-
* A time interval measured as ticks / (ticks per second)
|
|
11299
|
-
*
|
|
11300
|
-
* @generated from message norsk.api.media.Interval
|
|
11301
|
-
*/
|
|
11302
|
-
export declare class Interval extends Message<Interval> {
|
|
11303
|
-
/**
|
|
11304
|
-
* @generated from field: uint32 n = 1;
|
|
11305
|
-
*/
|
|
11306
|
-
n: number;
|
|
11307
|
-
/**
|
|
11308
|
-
* @generated from field: uint32 d = 2;
|
|
11309
|
-
*/
|
|
11310
|
-
d: number;
|
|
11311
|
-
constructor(data?: PartialMessage<Interval>);
|
|
11312
|
-
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
11313
|
-
static readonly typeName = "norsk.api.media.Interval";
|
|
11314
|
-
static readonly fields: FieldList;
|
|
11315
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Interval;
|
|
11316
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Interval;
|
|
11317
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Interval;
|
|
11318
|
-
static equals(a: Interval | PlainMessage<Interval> | undefined, b: Interval | PlainMessage<Interval> | undefined): boolean;
|
|
11319
|
-
}
|
|
11320
11396
|
/**
|
|
11321
11397
|
* @generated from message norsk.api.media.Db
|
|
11322
11398
|
*/
|
|
@@ -11441,6 +11517,120 @@ export declare class AudioMeasureLevelsEvent extends Message<AudioMeasureLevelsE
|
|
|
11441
11517
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AudioMeasureLevelsEvent;
|
|
11442
11518
|
static equals(a: AudioMeasureLevelsEvent | PlainMessage<AudioMeasureLevelsEvent> | undefined, b: AudioMeasureLevelsEvent | PlainMessage<AudioMeasureLevelsEvent> | undefined): boolean;
|
|
11443
11519
|
}
|
|
11520
|
+
/**
|
|
11521
|
+
* @generated from message norsk.api.media.StreamTimestampReportConfiguration
|
|
11522
|
+
*/
|
|
11523
|
+
export declare class StreamTimestampReportConfiguration extends Message<StreamTimestampReportConfiguration> {
|
|
11524
|
+
/**
|
|
11525
|
+
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
11526
|
+
*/
|
|
11527
|
+
id?: MediaNodeId;
|
|
11528
|
+
constructor(data?: PartialMessage<StreamTimestampReportConfiguration>);
|
|
11529
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
11530
|
+
static readonly typeName = "norsk.api.media.StreamTimestampReportConfiguration";
|
|
11531
|
+
static readonly fields: FieldList;
|
|
11532
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamTimestampReportConfiguration;
|
|
11533
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamTimestampReportConfiguration;
|
|
11534
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamTimestampReportConfiguration;
|
|
11535
|
+
static equals(a: StreamTimestampReportConfiguration | PlainMessage<StreamTimestampReportConfiguration> | undefined, b: StreamTimestampReportConfiguration | PlainMessage<StreamTimestampReportConfiguration> | undefined): boolean;
|
|
11536
|
+
}
|
|
11537
|
+
/**
|
|
11538
|
+
* @generated from message norsk.api.media.StreamTimestampReportMessage
|
|
11539
|
+
*/
|
|
11540
|
+
export declare class StreamTimestampReportMessage extends Message<StreamTimestampReportMessage> {
|
|
11541
|
+
/**
|
|
11542
|
+
* @generated from oneof norsk.api.media.StreamTimestampReportMessage.message
|
|
11543
|
+
*/
|
|
11544
|
+
message: {
|
|
11545
|
+
/**
|
|
11546
|
+
* @generated from field: norsk.api.media.Subscription subscription = 1;
|
|
11547
|
+
*/
|
|
11548
|
+
value: Subscription;
|
|
11549
|
+
case: "subscription";
|
|
11550
|
+
} | {
|
|
11551
|
+
/**
|
|
11552
|
+
* @generated from field: norsk.api.media.StreamTimestampReportConfiguration configuration = 2;
|
|
11553
|
+
*/
|
|
11554
|
+
value: StreamTimestampReportConfiguration;
|
|
11555
|
+
case: "configuration";
|
|
11556
|
+
} | {
|
|
11557
|
+
case: undefined;
|
|
11558
|
+
value?: undefined;
|
|
11559
|
+
};
|
|
11560
|
+
constructor(data?: PartialMessage<StreamTimestampReportMessage>);
|
|
11561
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
11562
|
+
static readonly typeName = "norsk.api.media.StreamTimestampReportMessage";
|
|
11563
|
+
static readonly fields: FieldList;
|
|
11564
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamTimestampReportMessage;
|
|
11565
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamTimestampReportMessage;
|
|
11566
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamTimestampReportMessage;
|
|
11567
|
+
static equals(a: StreamTimestampReportMessage | PlainMessage<StreamTimestampReportMessage> | undefined, b: StreamTimestampReportMessage | PlainMessage<StreamTimestampReportMessage> | undefined): boolean;
|
|
11568
|
+
}
|
|
11569
|
+
/**
|
|
11570
|
+
* @generated from message norsk.api.media.StreamTimestampReport
|
|
11571
|
+
*/
|
|
11572
|
+
export declare class StreamTimestampReport extends Message<StreamTimestampReport> {
|
|
11573
|
+
/**
|
|
11574
|
+
* @generated from field: norsk.api.media.StreamKey stream = 1;
|
|
11575
|
+
*/
|
|
11576
|
+
stream?: StreamKey;
|
|
11577
|
+
/**
|
|
11578
|
+
* @generated from field: norsk.api.media.Interval pts = 2;
|
|
11579
|
+
*/
|
|
11580
|
+
pts?: Interval;
|
|
11581
|
+
constructor(data?: PartialMessage<StreamTimestampReport>);
|
|
11582
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
11583
|
+
static readonly typeName = "norsk.api.media.StreamTimestampReport";
|
|
11584
|
+
static readonly fields: FieldList;
|
|
11585
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamTimestampReport;
|
|
11586
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamTimestampReport;
|
|
11587
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamTimestampReport;
|
|
11588
|
+
static equals(a: StreamTimestampReport | PlainMessage<StreamTimestampReport> | undefined, b: StreamTimestampReport | PlainMessage<StreamTimestampReport> | undefined): boolean;
|
|
11589
|
+
}
|
|
11590
|
+
/**
|
|
11591
|
+
* @generated from message norsk.api.media.StreamTimestampReportEvent
|
|
11592
|
+
*/
|
|
11593
|
+
export declare class StreamTimestampReportEvent extends Message<StreamTimestampReportEvent> {
|
|
11594
|
+
/**
|
|
11595
|
+
* @generated from oneof norsk.api.media.StreamTimestampReportEvent.message
|
|
11596
|
+
*/
|
|
11597
|
+
message: {
|
|
11598
|
+
/**
|
|
11599
|
+
* @generated from field: norsk.api.media.MediaNodeId node_id = 1;
|
|
11600
|
+
*/
|
|
11601
|
+
value: MediaNodeId;
|
|
11602
|
+
case: "nodeId";
|
|
11603
|
+
} | {
|
|
11604
|
+
/**
|
|
11605
|
+
* @generated from field: norsk.api.media.StreamTimestampReport report = 2;
|
|
11606
|
+
*/
|
|
11607
|
+
value: StreamTimestampReport;
|
|
11608
|
+
case: "report";
|
|
11609
|
+
} | {
|
|
11610
|
+
/**
|
|
11611
|
+
* @generated from field: norsk.api.media.SubscriptionResponse subscription_response = 3;
|
|
11612
|
+
*/
|
|
11613
|
+
value: SubscriptionResponse;
|
|
11614
|
+
case: "subscriptionResponse";
|
|
11615
|
+
} | {
|
|
11616
|
+
/**
|
|
11617
|
+
* @generated from field: norsk.api.media.Context inbound_context = 4;
|
|
11618
|
+
*/
|
|
11619
|
+
value: Context;
|
|
11620
|
+
case: "inboundContext";
|
|
11621
|
+
} | {
|
|
11622
|
+
case: undefined;
|
|
11623
|
+
value?: undefined;
|
|
11624
|
+
};
|
|
11625
|
+
constructor(data?: PartialMessage<StreamTimestampReportEvent>);
|
|
11626
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
11627
|
+
static readonly typeName = "norsk.api.media.StreamTimestampReportEvent";
|
|
11628
|
+
static readonly fields: FieldList;
|
|
11629
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamTimestampReportEvent;
|
|
11630
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamTimestampReportEvent;
|
|
11631
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamTimestampReportEvent;
|
|
11632
|
+
static equals(a: StreamTimestampReportEvent | PlainMessage<StreamTimestampReportEvent> | undefined, b: StreamTimestampReportEvent | PlainMessage<StreamTimestampReportEvent> | undefined): boolean;
|
|
11633
|
+
}
|
|
11444
11634
|
/**
|
|
11445
11635
|
* ///////////////////////////////
|
|
11446
11636
|
* RTP Input
|