@stinkycomputing/sesame-api-client 1.8.0 → 1.9.0-alpha.1

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.
@@ -2240,6 +2240,15 @@ export namespace sesame {
2240
2240
  /** CommandListItem takePlaylist */
2241
2241
  takePlaylist?: (sesame.v1.sources.ITakePlaylistRequest|null);
2242
2242
 
2243
+ /** CommandListItem outputControl */
2244
+ outputControl?: (sesame.v1.outputs.IOutputControlRequest|null);
2245
+
2246
+ /** CommandListItem setSideData */
2247
+ setSideData?: (sesame.v1.compositor.ISideDataSetRequest|null);
2248
+
2249
+ /** CommandListItem removeSideData */
2250
+ removeSideData?: (sesame.v1.compositor.ISideDataRemoveRequest|null);
2251
+
2243
2252
  /** CommandListItem transactionId */
2244
2253
  transactionId?: (number|null);
2245
2254
 
@@ -2343,6 +2352,15 @@ export namespace sesame {
2343
2352
  /** CommandListItem takePlaylist. */
2344
2353
  public takePlaylist?: (sesame.v1.sources.ITakePlaylistRequest|null);
2345
2354
 
2355
+ /** CommandListItem outputControl. */
2356
+ public outputControl?: (sesame.v1.outputs.IOutputControlRequest|null);
2357
+
2358
+ /** CommandListItem setSideData. */
2359
+ public setSideData?: (sesame.v1.compositor.ISideDataSetRequest|null);
2360
+
2361
+ /** CommandListItem removeSideData. */
2362
+ public removeSideData?: (sesame.v1.compositor.ISideDataRemoveRequest|null);
2363
+
2346
2364
  /** CommandListItem transactionId. */
2347
2365
  public transactionId?: (number|null);
2348
2366
 
@@ -2350,7 +2368,7 @@ export namespace sesame {
2350
2368
  public transactionDeps: number[];
2351
2369
 
2352
2370
  /** CommandListItem item. */
2353
- public item?: ("addSource"|"updateSource"|"removeSource"|"addOutput"|"updateOutput"|"removeOutput"|"addCompositor"|"removeCompositor"|"clearCompositor"|"addNode"|"removeNode"|"setProperty"|"animateProperty"|"addAudioMixer"|"updateAudioMixer"|"removeAudioMixer"|"addAudioChannel"|"removeAudioChannel"|"updateSourceTransport"|"loadPlaylist"|"ejectPlaylist"|"callback"|"setSourceMetadata"|"setMetadataBindings"|"addEncoder"|"updateEncoder"|"removeEncoder"|"takePlaylist");
2371
+ public item?: ("addSource"|"updateSource"|"removeSource"|"addOutput"|"updateOutput"|"removeOutput"|"addCompositor"|"removeCompositor"|"clearCompositor"|"addNode"|"removeNode"|"setProperty"|"animateProperty"|"addAudioMixer"|"updateAudioMixer"|"removeAudioMixer"|"addAudioChannel"|"removeAudioChannel"|"updateSourceTransport"|"loadPlaylist"|"ejectPlaylist"|"callback"|"setSourceMetadata"|"setMetadataBindings"|"addEncoder"|"updateEncoder"|"removeEncoder"|"takePlaylist"|"outputControl"|"setSideData"|"removeSideData");
2354
2372
 
2355
2373
  /**
2356
2374
  * Creates a new CommandListItem instance using the specified properties.
@@ -2848,7 +2866,8 @@ export namespace sesame {
2848
2866
  CONNECTION_STATE_ONLINE = 3,
2849
2867
  CONNECTION_STATE_DEGRADED = 4,
2850
2868
  CONNECTION_STATE_OFFLINE = 5,
2851
- CONNECTION_STATE_ERROR = 6
2869
+ CONNECTION_STATE_ERROR = 6,
2870
+ CONNECTION_STATE_DISABLED = 7
2852
2871
  }
2853
2872
 
2854
2873
  /** VideoFormat enum. */
@@ -11752,6 +11771,13 @@ export namespace sesame {
11752
11771
  public static getTypeUrl(typeUrlPrefix?: string): string;
11753
11772
  }
11754
11773
 
11774
+ /** SrtStreamControl enum. */
11775
+ enum SrtStreamControl {
11776
+ SRT_STREAM_CONTROL_UNSPECIFIED = 0,
11777
+ SRT_STREAM_CONTROL_STARTED = 1,
11778
+ SRT_STREAM_CONTROL_MANUAL = 2
11779
+ }
11780
+
11755
11781
  /** Properties of an EncodedSrtOutputConfig. */
11756
11782
  interface IEncodedSrtOutputConfig {
11757
11783
 
@@ -11760,6 +11786,9 @@ export namespace sesame {
11760
11786
 
11761
11787
  /** EncodedSrtOutputConfig encoderId */
11762
11788
  encoderId?: (string|null);
11789
+
11790
+ /** EncodedSrtOutputConfig control */
11791
+ control?: (sesame.v1.outputs.SrtStreamControl|null);
11763
11792
  }
11764
11793
 
11765
11794
  /** Represents an EncodedSrtOutputConfig. */
@@ -11777,6 +11806,9 @@ export namespace sesame {
11777
11806
  /** EncodedSrtOutputConfig encoderId. */
11778
11807
  public encoderId: string;
11779
11808
 
11809
+ /** EncodedSrtOutputConfig control. */
11810
+ public control: sesame.v1.outputs.SrtStreamControl;
11811
+
11780
11812
  /**
11781
11813
  * Creates a new EncodedSrtOutputConfig instance using the specified properties.
11782
11814
  * @param [properties] Properties to set
@@ -12490,6 +12522,116 @@ export namespace sesame {
12490
12522
  public static getTypeUrl(typeUrlPrefix?: string): string;
12491
12523
  }
12492
12524
 
12525
+ /** OutputControlAction enum. */
12526
+ enum OutputControlAction {
12527
+ OUTPUT_CONTROL_ACTION_UNSPECIFIED = 0,
12528
+ OUTPUT_CONTROL_ACTION_START = 1,
12529
+ OUTPUT_CONTROL_ACTION_STOP = 2
12530
+ }
12531
+
12532
+ /** Properties of an OutputControlRequest. */
12533
+ interface IOutputControlRequest {
12534
+
12535
+ /** OutputControlRequest id */
12536
+ id?: (string|null);
12537
+
12538
+ /** OutputControlRequest action */
12539
+ action?: (sesame.v1.outputs.OutputControlAction|null);
12540
+ }
12541
+
12542
+ /** Represents an OutputControlRequest. */
12543
+ class OutputControlRequest implements IOutputControlRequest {
12544
+
12545
+ /**
12546
+ * Constructs a new OutputControlRequest.
12547
+ * @param [properties] Properties to set
12548
+ */
12549
+ constructor(properties?: sesame.v1.outputs.IOutputControlRequest);
12550
+
12551
+ /** OutputControlRequest id. */
12552
+ public id: string;
12553
+
12554
+ /** OutputControlRequest action. */
12555
+ public action: sesame.v1.outputs.OutputControlAction;
12556
+
12557
+ /**
12558
+ * Creates a new OutputControlRequest instance using the specified properties.
12559
+ * @param [properties] Properties to set
12560
+ * @returns OutputControlRequest instance
12561
+ */
12562
+ public static create(properties?: sesame.v1.outputs.IOutputControlRequest): sesame.v1.outputs.OutputControlRequest;
12563
+
12564
+ /**
12565
+ * Encodes the specified OutputControlRequest message. Does not implicitly {@link sesame.v1.outputs.OutputControlRequest.verify|verify} messages.
12566
+ * @param message OutputControlRequest message or plain object to encode
12567
+ * @param [writer] Writer to encode to
12568
+ * @returns Writer
12569
+ */
12570
+ public static encode(message: sesame.v1.outputs.IOutputControlRequest, writer?: $protobuf.Writer): $protobuf.Writer;
12571
+
12572
+ /**
12573
+ * Encodes the specified OutputControlRequest message, length delimited. Does not implicitly {@link sesame.v1.outputs.OutputControlRequest.verify|verify} messages.
12574
+ * @param message OutputControlRequest message or plain object to encode
12575
+ * @param [writer] Writer to encode to
12576
+ * @returns Writer
12577
+ */
12578
+ public static encodeDelimited(message: sesame.v1.outputs.IOutputControlRequest, writer?: $protobuf.Writer): $protobuf.Writer;
12579
+
12580
+ /**
12581
+ * Decodes an OutputControlRequest message from the specified reader or buffer.
12582
+ * @param reader Reader or buffer to decode from
12583
+ * @param [length] Message length if known beforehand
12584
+ * @returns OutputControlRequest
12585
+ * @throws {Error} If the payload is not a reader or valid buffer
12586
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
12587
+ */
12588
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.outputs.OutputControlRequest;
12589
+
12590
+ /**
12591
+ * Decodes an OutputControlRequest message from the specified reader or buffer, length delimited.
12592
+ * @param reader Reader or buffer to decode from
12593
+ * @returns OutputControlRequest
12594
+ * @throws {Error} If the payload is not a reader or valid buffer
12595
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
12596
+ */
12597
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.outputs.OutputControlRequest;
12598
+
12599
+ /**
12600
+ * Verifies an OutputControlRequest message.
12601
+ * @param message Plain object to verify
12602
+ * @returns `null` if valid, otherwise the reason why it is not
12603
+ */
12604
+ public static verify(message: { [k: string]: any }): (string|null);
12605
+
12606
+ /**
12607
+ * Creates an OutputControlRequest message from a plain object. Also converts values to their respective internal types.
12608
+ * @param object Plain object
12609
+ * @returns OutputControlRequest
12610
+ */
12611
+ public static fromObject(object: { [k: string]: any }): sesame.v1.outputs.OutputControlRequest;
12612
+
12613
+ /**
12614
+ * Creates a plain object from an OutputControlRequest message. Also converts values to other types if specified.
12615
+ * @param message OutputControlRequest
12616
+ * @param [options] Conversion options
12617
+ * @returns Plain object
12618
+ */
12619
+ public static toObject(message: sesame.v1.outputs.OutputControlRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
12620
+
12621
+ /**
12622
+ * Converts this OutputControlRequest to JSON.
12623
+ * @returns JSON object
12624
+ */
12625
+ public toJSON(): { [k: string]: any };
12626
+
12627
+ /**
12628
+ * Gets the default type url for OutputControlRequest
12629
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
12630
+ * @returns The default type url
12631
+ */
12632
+ public static getTypeUrl(typeUrlPrefix?: string): string;
12633
+ }
12634
+
12493
12635
  /** Properties of a KeyframeRequest. */
12494
12636
  interface IKeyframeRequest {
12495
12637
 
@@ -12613,6 +12755,9 @@ export namespace sesame {
12613
12755
 
12614
12756
  /** OutputStatus encoderId */
12615
12757
  encoderId?: (string|null);
12758
+
12759
+ /** OutputStatus control */
12760
+ control?: (sesame.v1.outputs.SrtStreamControl|null);
12616
12761
  }
12617
12762
 
12618
12763
  /** Represents an OutputStatus. */
@@ -12648,6 +12793,9 @@ export namespace sesame {
12648
12793
  /** OutputStatus encoderId. */
12649
12794
  public encoderId: string;
12650
12795
 
12796
+ /** OutputStatus control. */
12797
+ public control: sesame.v1.outputs.SrtStreamControl;
12798
+
12651
12799
  /**
12652
12800
  * Creates a new OutputStatus instance using the specified properties.
12653
12801
  * @param [properties] Properties to set
@@ -13519,6 +13667,212 @@ export namespace sesame {
13519
13667
  public static getTypeUrl(typeUrlPrefix?: string): string;
13520
13668
  }
13521
13669
 
13670
+ /** Properties of a SideDataSetRequest. */
13671
+ interface ISideDataSetRequest {
13672
+
13673
+ /** SideDataSetRequest compositorId */
13674
+ compositorId?: (string|null);
13675
+
13676
+ /** SideDataSetRequest sideData */
13677
+ sideData?: (sesame.v1.sidedata.ISideData|null);
13678
+ }
13679
+
13680
+ /** Represents a SideDataSetRequest. */
13681
+ class SideDataSetRequest implements ISideDataSetRequest {
13682
+
13683
+ /**
13684
+ * Constructs a new SideDataSetRequest.
13685
+ * @param [properties] Properties to set
13686
+ */
13687
+ constructor(properties?: sesame.v1.compositor.ISideDataSetRequest);
13688
+
13689
+ /** SideDataSetRequest compositorId. */
13690
+ public compositorId: string;
13691
+
13692
+ /** SideDataSetRequest sideData. */
13693
+ public sideData?: (sesame.v1.sidedata.ISideData|null);
13694
+
13695
+ /**
13696
+ * Creates a new SideDataSetRequest instance using the specified properties.
13697
+ * @param [properties] Properties to set
13698
+ * @returns SideDataSetRequest instance
13699
+ */
13700
+ public static create(properties?: sesame.v1.compositor.ISideDataSetRequest): sesame.v1.compositor.SideDataSetRequest;
13701
+
13702
+ /**
13703
+ * Encodes the specified SideDataSetRequest message. Does not implicitly {@link sesame.v1.compositor.SideDataSetRequest.verify|verify} messages.
13704
+ * @param message SideDataSetRequest message or plain object to encode
13705
+ * @param [writer] Writer to encode to
13706
+ * @returns Writer
13707
+ */
13708
+ public static encode(message: sesame.v1.compositor.ISideDataSetRequest, writer?: $protobuf.Writer): $protobuf.Writer;
13709
+
13710
+ /**
13711
+ * Encodes the specified SideDataSetRequest message, length delimited. Does not implicitly {@link sesame.v1.compositor.SideDataSetRequest.verify|verify} messages.
13712
+ * @param message SideDataSetRequest message or plain object to encode
13713
+ * @param [writer] Writer to encode to
13714
+ * @returns Writer
13715
+ */
13716
+ public static encodeDelimited(message: sesame.v1.compositor.ISideDataSetRequest, writer?: $protobuf.Writer): $protobuf.Writer;
13717
+
13718
+ /**
13719
+ * Decodes a SideDataSetRequest message from the specified reader or buffer.
13720
+ * @param reader Reader or buffer to decode from
13721
+ * @param [length] Message length if known beforehand
13722
+ * @returns SideDataSetRequest
13723
+ * @throws {Error} If the payload is not a reader or valid buffer
13724
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
13725
+ */
13726
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.compositor.SideDataSetRequest;
13727
+
13728
+ /**
13729
+ * Decodes a SideDataSetRequest message from the specified reader or buffer, length delimited.
13730
+ * @param reader Reader or buffer to decode from
13731
+ * @returns SideDataSetRequest
13732
+ * @throws {Error} If the payload is not a reader or valid buffer
13733
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
13734
+ */
13735
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.compositor.SideDataSetRequest;
13736
+
13737
+ /**
13738
+ * Verifies a SideDataSetRequest message.
13739
+ * @param message Plain object to verify
13740
+ * @returns `null` if valid, otherwise the reason why it is not
13741
+ */
13742
+ public static verify(message: { [k: string]: any }): (string|null);
13743
+
13744
+ /**
13745
+ * Creates a SideDataSetRequest message from a plain object. Also converts values to their respective internal types.
13746
+ * @param object Plain object
13747
+ * @returns SideDataSetRequest
13748
+ */
13749
+ public static fromObject(object: { [k: string]: any }): sesame.v1.compositor.SideDataSetRequest;
13750
+
13751
+ /**
13752
+ * Creates a plain object from a SideDataSetRequest message. Also converts values to other types if specified.
13753
+ * @param message SideDataSetRequest
13754
+ * @param [options] Conversion options
13755
+ * @returns Plain object
13756
+ */
13757
+ public static toObject(message: sesame.v1.compositor.SideDataSetRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
13758
+
13759
+ /**
13760
+ * Converts this SideDataSetRequest to JSON.
13761
+ * @returns JSON object
13762
+ */
13763
+ public toJSON(): { [k: string]: any };
13764
+
13765
+ /**
13766
+ * Gets the default type url for SideDataSetRequest
13767
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
13768
+ * @returns The default type url
13769
+ */
13770
+ public static getTypeUrl(typeUrlPrefix?: string): string;
13771
+ }
13772
+
13773
+ /** Properties of a SideDataRemoveRequest. */
13774
+ interface ISideDataRemoveRequest {
13775
+
13776
+ /** SideDataRemoveRequest compositorId */
13777
+ compositorId?: (string|null);
13778
+
13779
+ /** SideDataRemoveRequest id */
13780
+ id?: (string|null);
13781
+ }
13782
+
13783
+ /** Represents a SideDataRemoveRequest. */
13784
+ class SideDataRemoveRequest implements ISideDataRemoveRequest {
13785
+
13786
+ /**
13787
+ * Constructs a new SideDataRemoveRequest.
13788
+ * @param [properties] Properties to set
13789
+ */
13790
+ constructor(properties?: sesame.v1.compositor.ISideDataRemoveRequest);
13791
+
13792
+ /** SideDataRemoveRequest compositorId. */
13793
+ public compositorId: string;
13794
+
13795
+ /** SideDataRemoveRequest id. */
13796
+ public id: string;
13797
+
13798
+ /**
13799
+ * Creates a new SideDataRemoveRequest instance using the specified properties.
13800
+ * @param [properties] Properties to set
13801
+ * @returns SideDataRemoveRequest instance
13802
+ */
13803
+ public static create(properties?: sesame.v1.compositor.ISideDataRemoveRequest): sesame.v1.compositor.SideDataRemoveRequest;
13804
+
13805
+ /**
13806
+ * Encodes the specified SideDataRemoveRequest message. Does not implicitly {@link sesame.v1.compositor.SideDataRemoveRequest.verify|verify} messages.
13807
+ * @param message SideDataRemoveRequest message or plain object to encode
13808
+ * @param [writer] Writer to encode to
13809
+ * @returns Writer
13810
+ */
13811
+ public static encode(message: sesame.v1.compositor.ISideDataRemoveRequest, writer?: $protobuf.Writer): $protobuf.Writer;
13812
+
13813
+ /**
13814
+ * Encodes the specified SideDataRemoveRequest message, length delimited. Does not implicitly {@link sesame.v1.compositor.SideDataRemoveRequest.verify|verify} messages.
13815
+ * @param message SideDataRemoveRequest message or plain object to encode
13816
+ * @param [writer] Writer to encode to
13817
+ * @returns Writer
13818
+ */
13819
+ public static encodeDelimited(message: sesame.v1.compositor.ISideDataRemoveRequest, writer?: $protobuf.Writer): $protobuf.Writer;
13820
+
13821
+ /**
13822
+ * Decodes a SideDataRemoveRequest message from the specified reader or buffer.
13823
+ * @param reader Reader or buffer to decode from
13824
+ * @param [length] Message length if known beforehand
13825
+ * @returns SideDataRemoveRequest
13826
+ * @throws {Error} If the payload is not a reader or valid buffer
13827
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
13828
+ */
13829
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.compositor.SideDataRemoveRequest;
13830
+
13831
+ /**
13832
+ * Decodes a SideDataRemoveRequest message from the specified reader or buffer, length delimited.
13833
+ * @param reader Reader or buffer to decode from
13834
+ * @returns SideDataRemoveRequest
13835
+ * @throws {Error} If the payload is not a reader or valid buffer
13836
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
13837
+ */
13838
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.compositor.SideDataRemoveRequest;
13839
+
13840
+ /**
13841
+ * Verifies a SideDataRemoveRequest message.
13842
+ * @param message Plain object to verify
13843
+ * @returns `null` if valid, otherwise the reason why it is not
13844
+ */
13845
+ public static verify(message: { [k: string]: any }): (string|null);
13846
+
13847
+ /**
13848
+ * Creates a SideDataRemoveRequest message from a plain object. Also converts values to their respective internal types.
13849
+ * @param object Plain object
13850
+ * @returns SideDataRemoveRequest
13851
+ */
13852
+ public static fromObject(object: { [k: string]: any }): sesame.v1.compositor.SideDataRemoveRequest;
13853
+
13854
+ /**
13855
+ * Creates a plain object from a SideDataRemoveRequest message. Also converts values to other types if specified.
13856
+ * @param message SideDataRemoveRequest
13857
+ * @param [options] Conversion options
13858
+ * @returns Plain object
13859
+ */
13860
+ public static toObject(message: sesame.v1.compositor.SideDataRemoveRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
13861
+
13862
+ /**
13863
+ * Converts this SideDataRemoveRequest to JSON.
13864
+ * @returns JSON object
13865
+ */
13866
+ public toJSON(): { [k: string]: any };
13867
+
13868
+ /**
13869
+ * Gets the default type url for SideDataRemoveRequest
13870
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
13871
+ * @returns The default type url
13872
+ */
13873
+ public static getTypeUrl(typeUrlPrefix?: string): string;
13874
+ }
13875
+
13522
13876
  /** Properties of a PropertySetRequest. */
13523
13877
  interface IPropertySetRequest {
13524
13878
 
@@ -13762,47 +14116,514 @@ export namespace sesame {
13762
14116
  }
13763
14117
  }
13764
14118
 
13765
- /** Namespace jobs. */
13766
- namespace jobs {
14119
+ /** Namespace sidedata. */
14120
+ namespace sidedata {
13767
14121
 
13768
- /** JobType enum. */
13769
- enum JobType {
13770
- JOB_TYPE_UNSPECIFIED = 0,
13771
- JOB_TYPE_EXPORT = 1,
13772
- JOB_TYPE_IMPORT = 2
13773
- }
14122
+ /** Properties of an AtlasEntry. */
14123
+ interface IAtlasEntry {
13774
14124
 
13775
- /** JobStatus enum. */
13776
- enum JobStatus {
13777
- JOB_STATUS_UNSPECIFIED = 0,
13778
- JOB_STATUS_PENDING = 1,
13779
- JOB_STATUS_IN_PROGRESS = 2,
13780
- JOB_STATUS_COMPLETE = 3,
13781
- JOB_STATUS_ABORTED = 4,
13782
- JOB_STATUS_ERROR = 5
13783
- }
14125
+ /** AtlasEntry sourceId */
14126
+ sourceId?: (string|null);
13784
14127
 
13785
- /** ContainerFormat enum. */
13786
- enum ContainerFormat {
13787
- CONTAINER_FORMAT_UNSPECIFIED = 0,
13788
- CONTAINER_FORMAT_MP4 = 1,
13789
- CONTAINER_FORMAT_MOV = 2,
13790
- CONTAINER_FORMAT_MKV = 3,
13791
- CONTAINER_FORMAT_MXF = 4
13792
- }
14128
+ /** AtlasEntry x */
14129
+ x?: (number|null);
13793
14130
 
13794
- /** RateControlMode enum. */
13795
- enum RateControlMode {
13796
- RATE_CONTROL_MODE_UNSPECIFIED = 0,
13797
- RATE_CONTROL_MODE_CBR = 1,
13798
- RATE_CONTROL_MODE_VBR = 2,
13799
- RATE_CONTROL_MODE_CQ = 3
13800
- }
14131
+ /** AtlasEntry y */
14132
+ y?: (number|null);
13801
14133
 
13802
- /** Properties of a TimingInfo. */
13803
- interface ITimingInfo {
14134
+ /** AtlasEntry width */
14135
+ width?: (number|null);
13804
14136
 
13805
- /** TimingInfo tcIn */
14137
+ /** AtlasEntry height */
14138
+ height?: (number|null);
14139
+
14140
+ /** AtlasEntry sourceWidth */
14141
+ sourceWidth?: (number|null);
14142
+
14143
+ /** AtlasEntry sourceHeight */
14144
+ sourceHeight?: (number|null);
14145
+ }
14146
+
14147
+ /** Represents an AtlasEntry. */
14148
+ class AtlasEntry implements IAtlasEntry {
14149
+
14150
+ /**
14151
+ * Constructs a new AtlasEntry.
14152
+ * @param [properties] Properties to set
14153
+ */
14154
+ constructor(properties?: sesame.v1.sidedata.IAtlasEntry);
14155
+
14156
+ /** AtlasEntry sourceId. */
14157
+ public sourceId: string;
14158
+
14159
+ /** AtlasEntry x. */
14160
+ public x: number;
14161
+
14162
+ /** AtlasEntry y. */
14163
+ public y: number;
14164
+
14165
+ /** AtlasEntry width. */
14166
+ public width: number;
14167
+
14168
+ /** AtlasEntry height. */
14169
+ public height: number;
14170
+
14171
+ /** AtlasEntry sourceWidth. */
14172
+ public sourceWidth: number;
14173
+
14174
+ /** AtlasEntry sourceHeight. */
14175
+ public sourceHeight: number;
14176
+
14177
+ /**
14178
+ * Creates a new AtlasEntry instance using the specified properties.
14179
+ * @param [properties] Properties to set
14180
+ * @returns AtlasEntry instance
14181
+ */
14182
+ public static create(properties?: sesame.v1.sidedata.IAtlasEntry): sesame.v1.sidedata.AtlasEntry;
14183
+
14184
+ /**
14185
+ * Encodes the specified AtlasEntry message. Does not implicitly {@link sesame.v1.sidedata.AtlasEntry.verify|verify} messages.
14186
+ * @param message AtlasEntry message or plain object to encode
14187
+ * @param [writer] Writer to encode to
14188
+ * @returns Writer
14189
+ */
14190
+ public static encode(message: sesame.v1.sidedata.IAtlasEntry, writer?: $protobuf.Writer): $protobuf.Writer;
14191
+
14192
+ /**
14193
+ * Encodes the specified AtlasEntry message, length delimited. Does not implicitly {@link sesame.v1.sidedata.AtlasEntry.verify|verify} messages.
14194
+ * @param message AtlasEntry message or plain object to encode
14195
+ * @param [writer] Writer to encode to
14196
+ * @returns Writer
14197
+ */
14198
+ public static encodeDelimited(message: sesame.v1.sidedata.IAtlasEntry, writer?: $protobuf.Writer): $protobuf.Writer;
14199
+
14200
+ /**
14201
+ * Decodes an AtlasEntry message from the specified reader or buffer.
14202
+ * @param reader Reader or buffer to decode from
14203
+ * @param [length] Message length if known beforehand
14204
+ * @returns AtlasEntry
14205
+ * @throws {Error} If the payload is not a reader or valid buffer
14206
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
14207
+ */
14208
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.sidedata.AtlasEntry;
14209
+
14210
+ /**
14211
+ * Decodes an AtlasEntry message from the specified reader or buffer, length delimited.
14212
+ * @param reader Reader or buffer to decode from
14213
+ * @returns AtlasEntry
14214
+ * @throws {Error} If the payload is not a reader or valid buffer
14215
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
14216
+ */
14217
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.sidedata.AtlasEntry;
14218
+
14219
+ /**
14220
+ * Verifies an AtlasEntry message.
14221
+ * @param message Plain object to verify
14222
+ * @returns `null` if valid, otherwise the reason why it is not
14223
+ */
14224
+ public static verify(message: { [k: string]: any }): (string|null);
14225
+
14226
+ /**
14227
+ * Creates an AtlasEntry message from a plain object. Also converts values to their respective internal types.
14228
+ * @param object Plain object
14229
+ * @returns AtlasEntry
14230
+ */
14231
+ public static fromObject(object: { [k: string]: any }): sesame.v1.sidedata.AtlasEntry;
14232
+
14233
+ /**
14234
+ * Creates a plain object from an AtlasEntry message. Also converts values to other types if specified.
14235
+ * @param message AtlasEntry
14236
+ * @param [options] Conversion options
14237
+ * @returns Plain object
14238
+ */
14239
+ public static toObject(message: sesame.v1.sidedata.AtlasEntry, options?: $protobuf.IConversionOptions): { [k: string]: any };
14240
+
14241
+ /**
14242
+ * Converts this AtlasEntry to JSON.
14243
+ * @returns JSON object
14244
+ */
14245
+ public toJSON(): { [k: string]: any };
14246
+
14247
+ /**
14248
+ * Gets the default type url for AtlasEntry
14249
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
14250
+ * @returns The default type url
14251
+ */
14252
+ public static getTypeUrl(typeUrlPrefix?: string): string;
14253
+ }
14254
+
14255
+ /** Properties of an AtlasLayout. */
14256
+ interface IAtlasLayout {
14257
+
14258
+ /** AtlasLayout width */
14259
+ width?: (number|null);
14260
+
14261
+ /** AtlasLayout height */
14262
+ height?: (number|null);
14263
+
14264
+ /** AtlasLayout entries */
14265
+ entries?: (sesame.v1.sidedata.IAtlasEntry[]|null);
14266
+ }
14267
+
14268
+ /** Represents an AtlasLayout. */
14269
+ class AtlasLayout implements IAtlasLayout {
14270
+
14271
+ /**
14272
+ * Constructs a new AtlasLayout.
14273
+ * @param [properties] Properties to set
14274
+ */
14275
+ constructor(properties?: sesame.v1.sidedata.IAtlasLayout);
14276
+
14277
+ /** AtlasLayout width. */
14278
+ public width: number;
14279
+
14280
+ /** AtlasLayout height. */
14281
+ public height: number;
14282
+
14283
+ /** AtlasLayout entries. */
14284
+ public entries: sesame.v1.sidedata.IAtlasEntry[];
14285
+
14286
+ /**
14287
+ * Creates a new AtlasLayout instance using the specified properties.
14288
+ * @param [properties] Properties to set
14289
+ * @returns AtlasLayout instance
14290
+ */
14291
+ public static create(properties?: sesame.v1.sidedata.IAtlasLayout): sesame.v1.sidedata.AtlasLayout;
14292
+
14293
+ /**
14294
+ * Encodes the specified AtlasLayout message. Does not implicitly {@link sesame.v1.sidedata.AtlasLayout.verify|verify} messages.
14295
+ * @param message AtlasLayout message or plain object to encode
14296
+ * @param [writer] Writer to encode to
14297
+ * @returns Writer
14298
+ */
14299
+ public static encode(message: sesame.v1.sidedata.IAtlasLayout, writer?: $protobuf.Writer): $protobuf.Writer;
14300
+
14301
+ /**
14302
+ * Encodes the specified AtlasLayout message, length delimited. Does not implicitly {@link sesame.v1.sidedata.AtlasLayout.verify|verify} messages.
14303
+ * @param message AtlasLayout message or plain object to encode
14304
+ * @param [writer] Writer to encode to
14305
+ * @returns Writer
14306
+ */
14307
+ public static encodeDelimited(message: sesame.v1.sidedata.IAtlasLayout, writer?: $protobuf.Writer): $protobuf.Writer;
14308
+
14309
+ /**
14310
+ * Decodes an AtlasLayout message from the specified reader or buffer.
14311
+ * @param reader Reader or buffer to decode from
14312
+ * @param [length] Message length if known beforehand
14313
+ * @returns AtlasLayout
14314
+ * @throws {Error} If the payload is not a reader or valid buffer
14315
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
14316
+ */
14317
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.sidedata.AtlasLayout;
14318
+
14319
+ /**
14320
+ * Decodes an AtlasLayout message from the specified reader or buffer, length delimited.
14321
+ * @param reader Reader or buffer to decode from
14322
+ * @returns AtlasLayout
14323
+ * @throws {Error} If the payload is not a reader or valid buffer
14324
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
14325
+ */
14326
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.sidedata.AtlasLayout;
14327
+
14328
+ /**
14329
+ * Verifies an AtlasLayout message.
14330
+ * @param message Plain object to verify
14331
+ * @returns `null` if valid, otherwise the reason why it is not
14332
+ */
14333
+ public static verify(message: { [k: string]: any }): (string|null);
14334
+
14335
+ /**
14336
+ * Creates an AtlasLayout message from a plain object. Also converts values to their respective internal types.
14337
+ * @param object Plain object
14338
+ * @returns AtlasLayout
14339
+ */
14340
+ public static fromObject(object: { [k: string]: any }): sesame.v1.sidedata.AtlasLayout;
14341
+
14342
+ /**
14343
+ * Creates a plain object from an AtlasLayout message. Also converts values to other types if specified.
14344
+ * @param message AtlasLayout
14345
+ * @param [options] Conversion options
14346
+ * @returns Plain object
14347
+ */
14348
+ public static toObject(message: sesame.v1.sidedata.AtlasLayout, options?: $protobuf.IConversionOptions): { [k: string]: any };
14349
+
14350
+ /**
14351
+ * Converts this AtlasLayout to JSON.
14352
+ * @returns JSON object
14353
+ */
14354
+ public toJSON(): { [k: string]: any };
14355
+
14356
+ /**
14357
+ * Gets the default type url for AtlasLayout
14358
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
14359
+ * @returns The default type url
14360
+ */
14361
+ public static getTypeUrl(typeUrlPrefix?: string): string;
14362
+ }
14363
+
14364
+ /** Properties of a SideData. */
14365
+ interface ISideData {
14366
+
14367
+ /** SideData id */
14368
+ id?: (string|null);
14369
+
14370
+ /** SideData version */
14371
+ version?: (number|Long|null);
14372
+
14373
+ /** SideData atlas */
14374
+ atlas?: (sesame.v1.sidedata.IAtlasLayout|null);
14375
+
14376
+ /** SideData json */
14377
+ json?: (string|null);
14378
+
14379
+ /** SideData binary */
14380
+ binary?: (Uint8Array|null);
14381
+ }
14382
+
14383
+ /** Represents a SideData. */
14384
+ class SideData implements ISideData {
14385
+
14386
+ /**
14387
+ * Constructs a new SideData.
14388
+ * @param [properties] Properties to set
14389
+ */
14390
+ constructor(properties?: sesame.v1.sidedata.ISideData);
14391
+
14392
+ /** SideData id. */
14393
+ public id: string;
14394
+
14395
+ /** SideData version. */
14396
+ public version: (number|Long);
14397
+
14398
+ /** SideData atlas. */
14399
+ public atlas?: (sesame.v1.sidedata.IAtlasLayout|null);
14400
+
14401
+ /** SideData json. */
14402
+ public json?: (string|null);
14403
+
14404
+ /** SideData binary. */
14405
+ public binary?: (Uint8Array|null);
14406
+
14407
+ /** SideData payload. */
14408
+ public payload?: ("atlas"|"json"|"binary");
14409
+
14410
+ /**
14411
+ * Creates a new SideData instance using the specified properties.
14412
+ * @param [properties] Properties to set
14413
+ * @returns SideData instance
14414
+ */
14415
+ public static create(properties?: sesame.v1.sidedata.ISideData): sesame.v1.sidedata.SideData;
14416
+
14417
+ /**
14418
+ * Encodes the specified SideData message. Does not implicitly {@link sesame.v1.sidedata.SideData.verify|verify} messages.
14419
+ * @param message SideData message or plain object to encode
14420
+ * @param [writer] Writer to encode to
14421
+ * @returns Writer
14422
+ */
14423
+ public static encode(message: sesame.v1.sidedata.ISideData, writer?: $protobuf.Writer): $protobuf.Writer;
14424
+
14425
+ /**
14426
+ * Encodes the specified SideData message, length delimited. Does not implicitly {@link sesame.v1.sidedata.SideData.verify|verify} messages.
14427
+ * @param message SideData message or plain object to encode
14428
+ * @param [writer] Writer to encode to
14429
+ * @returns Writer
14430
+ */
14431
+ public static encodeDelimited(message: sesame.v1.sidedata.ISideData, writer?: $protobuf.Writer): $protobuf.Writer;
14432
+
14433
+ /**
14434
+ * Decodes a SideData message from the specified reader or buffer.
14435
+ * @param reader Reader or buffer to decode from
14436
+ * @param [length] Message length if known beforehand
14437
+ * @returns SideData
14438
+ * @throws {Error} If the payload is not a reader or valid buffer
14439
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
14440
+ */
14441
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.sidedata.SideData;
14442
+
14443
+ /**
14444
+ * Decodes a SideData message from the specified reader or buffer, length delimited.
14445
+ * @param reader Reader or buffer to decode from
14446
+ * @returns SideData
14447
+ * @throws {Error} If the payload is not a reader or valid buffer
14448
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
14449
+ */
14450
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.sidedata.SideData;
14451
+
14452
+ /**
14453
+ * Verifies a SideData message.
14454
+ * @param message Plain object to verify
14455
+ * @returns `null` if valid, otherwise the reason why it is not
14456
+ */
14457
+ public static verify(message: { [k: string]: any }): (string|null);
14458
+
14459
+ /**
14460
+ * Creates a SideData message from a plain object. Also converts values to their respective internal types.
14461
+ * @param object Plain object
14462
+ * @returns SideData
14463
+ */
14464
+ public static fromObject(object: { [k: string]: any }): sesame.v1.sidedata.SideData;
14465
+
14466
+ /**
14467
+ * Creates a plain object from a SideData message. Also converts values to other types if specified.
14468
+ * @param message SideData
14469
+ * @param [options] Conversion options
14470
+ * @returns Plain object
14471
+ */
14472
+ public static toObject(message: sesame.v1.sidedata.SideData, options?: $protobuf.IConversionOptions): { [k: string]: any };
14473
+
14474
+ /**
14475
+ * Converts this SideData to JSON.
14476
+ * @returns JSON object
14477
+ */
14478
+ public toJSON(): { [k: string]: any };
14479
+
14480
+ /**
14481
+ * Gets the default type url for SideData
14482
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
14483
+ * @returns The default type url
14484
+ */
14485
+ public static getTypeUrl(typeUrlPrefix?: string): string;
14486
+ }
14487
+
14488
+ /** Properties of a SideDataSet. */
14489
+ interface ISideDataSet {
14490
+
14491
+ /** SideDataSet entries */
14492
+ entries?: (sesame.v1.sidedata.ISideData[]|null);
14493
+ }
14494
+
14495
+ /** Represents a SideDataSet. */
14496
+ class SideDataSet implements ISideDataSet {
14497
+
14498
+ /**
14499
+ * Constructs a new SideDataSet.
14500
+ * @param [properties] Properties to set
14501
+ */
14502
+ constructor(properties?: sesame.v1.sidedata.ISideDataSet);
14503
+
14504
+ /** SideDataSet entries. */
14505
+ public entries: sesame.v1.sidedata.ISideData[];
14506
+
14507
+ /**
14508
+ * Creates a new SideDataSet instance using the specified properties.
14509
+ * @param [properties] Properties to set
14510
+ * @returns SideDataSet instance
14511
+ */
14512
+ public static create(properties?: sesame.v1.sidedata.ISideDataSet): sesame.v1.sidedata.SideDataSet;
14513
+
14514
+ /**
14515
+ * Encodes the specified SideDataSet message. Does not implicitly {@link sesame.v1.sidedata.SideDataSet.verify|verify} messages.
14516
+ * @param message SideDataSet message or plain object to encode
14517
+ * @param [writer] Writer to encode to
14518
+ * @returns Writer
14519
+ */
14520
+ public static encode(message: sesame.v1.sidedata.ISideDataSet, writer?: $protobuf.Writer): $protobuf.Writer;
14521
+
14522
+ /**
14523
+ * Encodes the specified SideDataSet message, length delimited. Does not implicitly {@link sesame.v1.sidedata.SideDataSet.verify|verify} messages.
14524
+ * @param message SideDataSet message or plain object to encode
14525
+ * @param [writer] Writer to encode to
14526
+ * @returns Writer
14527
+ */
14528
+ public static encodeDelimited(message: sesame.v1.sidedata.ISideDataSet, writer?: $protobuf.Writer): $protobuf.Writer;
14529
+
14530
+ /**
14531
+ * Decodes a SideDataSet message from the specified reader or buffer.
14532
+ * @param reader Reader or buffer to decode from
14533
+ * @param [length] Message length if known beforehand
14534
+ * @returns SideDataSet
14535
+ * @throws {Error} If the payload is not a reader or valid buffer
14536
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
14537
+ */
14538
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.sidedata.SideDataSet;
14539
+
14540
+ /**
14541
+ * Decodes a SideDataSet message from the specified reader or buffer, length delimited.
14542
+ * @param reader Reader or buffer to decode from
14543
+ * @returns SideDataSet
14544
+ * @throws {Error} If the payload is not a reader or valid buffer
14545
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
14546
+ */
14547
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.sidedata.SideDataSet;
14548
+
14549
+ /**
14550
+ * Verifies a SideDataSet message.
14551
+ * @param message Plain object to verify
14552
+ * @returns `null` if valid, otherwise the reason why it is not
14553
+ */
14554
+ public static verify(message: { [k: string]: any }): (string|null);
14555
+
14556
+ /**
14557
+ * Creates a SideDataSet message from a plain object. Also converts values to their respective internal types.
14558
+ * @param object Plain object
14559
+ * @returns SideDataSet
14560
+ */
14561
+ public static fromObject(object: { [k: string]: any }): sesame.v1.sidedata.SideDataSet;
14562
+
14563
+ /**
14564
+ * Creates a plain object from a SideDataSet message. Also converts values to other types if specified.
14565
+ * @param message SideDataSet
14566
+ * @param [options] Conversion options
14567
+ * @returns Plain object
14568
+ */
14569
+ public static toObject(message: sesame.v1.sidedata.SideDataSet, options?: $protobuf.IConversionOptions): { [k: string]: any };
14570
+
14571
+ /**
14572
+ * Converts this SideDataSet to JSON.
14573
+ * @returns JSON object
14574
+ */
14575
+ public toJSON(): { [k: string]: any };
14576
+
14577
+ /**
14578
+ * Gets the default type url for SideDataSet
14579
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
14580
+ * @returns The default type url
14581
+ */
14582
+ public static getTypeUrl(typeUrlPrefix?: string): string;
14583
+ }
14584
+ }
14585
+
14586
+ /** Namespace jobs. */
14587
+ namespace jobs {
14588
+
14589
+ /** JobType enum. */
14590
+ enum JobType {
14591
+ JOB_TYPE_UNSPECIFIED = 0,
14592
+ JOB_TYPE_EXPORT = 1,
14593
+ JOB_TYPE_IMPORT = 2
14594
+ }
14595
+
14596
+ /** JobStatus enum. */
14597
+ enum JobStatus {
14598
+ JOB_STATUS_UNSPECIFIED = 0,
14599
+ JOB_STATUS_PENDING = 1,
14600
+ JOB_STATUS_IN_PROGRESS = 2,
14601
+ JOB_STATUS_COMPLETE = 3,
14602
+ JOB_STATUS_ABORTED = 4,
14603
+ JOB_STATUS_ERROR = 5
14604
+ }
14605
+
14606
+ /** ContainerFormat enum. */
14607
+ enum ContainerFormat {
14608
+ CONTAINER_FORMAT_UNSPECIFIED = 0,
14609
+ CONTAINER_FORMAT_MP4 = 1,
14610
+ CONTAINER_FORMAT_MOV = 2,
14611
+ CONTAINER_FORMAT_MKV = 3,
14612
+ CONTAINER_FORMAT_MXF = 4
14613
+ }
14614
+
14615
+ /** RateControlMode enum. */
14616
+ enum RateControlMode {
14617
+ RATE_CONTROL_MODE_UNSPECIFIED = 0,
14618
+ RATE_CONTROL_MODE_CBR = 1,
14619
+ RATE_CONTROL_MODE_VBR = 2,
14620
+ RATE_CONTROL_MODE_CQ = 3
14621
+ }
14622
+
14623
+ /** Properties of a TimingInfo. */
14624
+ interface ITimingInfo {
14625
+
14626
+ /** TimingInfo tcIn */
13806
14627
  tcIn?: (number|Long|null);
13807
14628
 
13808
14629
  /** TimingInfo tcOut */
@@ -16250,6 +17071,9 @@ export namespace sesame {
16250
17071
 
16251
17072
  /** MediaFrameData codecData */
16252
17073
  codecData?: (sesame.v1.wire.IMediaCodecData|null);
17074
+
17075
+ /** MediaFrameData sideData */
17076
+ sideData?: (sesame.v1.sidedata.ISideDataSet|null);
16253
17077
  }
16254
17078
 
16255
17079
  /** Represents a MediaFrameData. */
@@ -16270,6 +17094,9 @@ export namespace sesame {
16270
17094
  /** MediaFrameData codecData. */
16271
17095
  public codecData?: (sesame.v1.wire.IMediaCodecData|null);
16272
17096
 
17097
+ /** MediaFrameData sideData. */
17098
+ public sideData?: (sesame.v1.sidedata.ISideDataSet|null);
17099
+
16273
17100
  /**
16274
17101
  * Creates a new MediaFrameData instance using the specified properties.
16275
17102
  * @param [properties] Properties to set
@@ -16356,7 +17183,10 @@ export namespace sesame {
16356
17183
  DATA_TYPE_AUDIO_STATE = 3,
16357
17184
  DATA_TYPE_TRANSPORT_CONTROL = 4,
16358
17185
  DATA_TYPE_AUDIO_CONTROL = 5,
16359
- DATA_TYPE_BINARY = 6
17186
+ DATA_TYPE_BINARY = 6,
17187
+ DATA_TYPE_OUTPUT_STATUS = 7,
17188
+ DATA_TYPE_OUTPUT_CONTROL = 8,
17189
+ DATA_TYPE_ENGINE_STATUS = 9
16360
17190
  }
16361
17191
 
16362
17192
  /** Properties of a DataFrameData. */