AliVCSDK  4.5.1
阿里云音视频SDK,为视频开发者提供一站式接入服务
AlivcLiveMixStream.java
1 package com.alivc.live.pusher;
2 
3 
11 @Visible
12 public class AlivcLiveMixStream {
13 
14  private String userId;
15 
16  private int x;
17 
18  private int y;
19 
20  private int width;
21 
22  private int height;
23 
24  private int zOrder;
25 
32  public String getUserId() {
33  return userId;
34  }
35 
42  public void setUserId(String userId) {
43  this.userId = userId;
44  }
45 
52  public int getX() {
53  return x;
54  }
55 
62  public void setX(int x) {
63  this.x = x;
64  }
65 
72  public int getY() {
73  return y;
74  }
75 
82  public void setY(int y) {
83  this.y = y;
84  }
85 
92  public int getWidth() {
93  return width;
94  }
95 
102  public void setWidth(int width) {
103  this.width = width;
104  }
105 
112  public int getHeight() {
113  return height;
114  }
115 
122  public void setHeight(int height) {
123  this.height = height;
124  }
125 
132  public int getZOrder() {
133  return zOrder;
134  }
135 
142  public void setZOrder(int zOrder) {
143  this.zOrder = zOrder;
144  }
145 
146  @Override
147  public String toString() {
148  return "AlivcLiveMixStream{" +
149  "userId='" + userId + '\'' +
150  ", x=" + x +
151  ", y=" + y +
152  ", width=" + width +
153  ", height=" + height +
154  ", zOrder=" + zOrder +
155  '}';
156  }
157 }
The position info of each sub stream when mixing stream on the cloud.