@norskvideo/norsk-api 1.0.360 → 1.0.363
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/media_pb.d.ts +7 -3
- package/lib/media_pb.js +9 -4
- package/lib/media_pb.js.map +1 -1
- package/lib/media_pb.ts +11 -5
- package/package.json +1 -1
package/lib/media_pb.d.ts
CHANGED
|
@@ -3996,11 +3996,15 @@ export declare class DeltacastInputConfiguration extends Message<DeltacastInputC
|
|
|
3996
3996
|
*/
|
|
3997
3997
|
deviceId: number;
|
|
3998
3998
|
/**
|
|
3999
|
-
* @generated from field: uint32
|
|
3999
|
+
* @generated from field: uint32 channel_index = 4;
|
|
4000
4000
|
*/
|
|
4001
|
-
|
|
4001
|
+
channelIndex: number;
|
|
4002
4002
|
/**
|
|
4003
|
-
* @generated from field:
|
|
4003
|
+
* @generated from field: uint32 audio_channel_mask = 5;
|
|
4004
|
+
*/
|
|
4005
|
+
audioChannelMask: number;
|
|
4006
|
+
/**
|
|
4007
|
+
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 6;
|
|
4004
4008
|
*/
|
|
4005
4009
|
statsSampling?: StreamStatisticsSampling;
|
|
4006
4010
|
constructor(data?: PartialMessage<DeltacastInputConfiguration>);
|
package/lib/media_pb.js
CHANGED
|
@@ -5041,9 +5041,13 @@ class DeltacastInputConfiguration extends protobuf_1.Message {
|
|
|
5041
5041
|
*/
|
|
5042
5042
|
this.deviceId = 0;
|
|
5043
5043
|
/**
|
|
5044
|
-
* @generated from field: uint32
|
|
5044
|
+
* @generated from field: uint32 channel_index = 4;
|
|
5045
5045
|
*/
|
|
5046
|
-
this.
|
|
5046
|
+
this.channelIndex = 0;
|
|
5047
|
+
/**
|
|
5048
|
+
* @generated from field: uint32 audio_channel_mask = 5;
|
|
5049
|
+
*/
|
|
5050
|
+
this.audioChannelMask = 0;
|
|
5047
5051
|
protobuf_1.proto3.util.initPartial(data, this);
|
|
5048
5052
|
}
|
|
5049
5053
|
static fromBinary(bytes, options) {
|
|
@@ -5066,8 +5070,9 @@ DeltacastInputConfiguration.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
|
5066
5070
|
{ no: 1, name: "id", kind: "message", T: MediaNodeId },
|
|
5067
5071
|
{ no: 2, name: "source_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
5068
5072
|
{ no: 3, name: "device_id", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
5069
|
-
{ no: 4, name: "
|
|
5070
|
-
{ no: 5, name: "
|
|
5073
|
+
{ no: 4, name: "channel_index", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
5074
|
+
{ no: 5, name: "audio_channel_mask", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
5075
|
+
{ no: 6, name: "stats_sampling", kind: "message", T: StreamStatisticsSampling },
|
|
5071
5076
|
]);
|
|
5072
5077
|
/**
|
|
5073
5078
|
* @generated from message norsk.api.media.DeltacastInputMessage
|