package com.sxit.dreamiya.utils.video;
public class ByteInfo {
private int length;
private byte[] stream;
public int getLength() {
return length;
}
public void setLength(int length) {
this.length = length;
}
public byte[] getStream() {
return stream;
}
public void setStream(byte[] stream) {
this.stream = stream;
}
}