You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
124 lines
3.8 KiB
Java
124 lines
3.8 KiB
Java
2 years ago
|
/* */ package com.dowse.devicesdk.rv1126;
|
||
|
/* */
|
||
|
/* */ public class VideoEncodeParam
|
||
|
/* */ {
|
||
|
/* */ private short width;
|
||
|
/* */ private short height;
|
||
|
/* */ private short enc_type;
|
||
|
/* */ private short quilty;
|
||
|
/* */ private short gop;
|
||
|
/* */ private short flow_type;
|
||
|
/* */ private short frame_rate;
|
||
|
/* */ private long bitrateRate;
|
||
|
/* */ private short profile;
|
||
|
/* */ private short frame_priority;
|
||
|
/* */ private short minQFactor;
|
||
|
/* */ private short maxQFactor;
|
||
|
/* */
|
||
|
/* */ public short getWidth()
|
||
|
/* */ {
|
||
|
/* 42 */ return this.width;
|
||
|
/* */ }
|
||
|
/* */
|
||
|
/* */ public void setWidth(short width) {
|
||
|
/* 46 */ this.width = width;
|
||
|
/* */ }
|
||
|
/* */
|
||
|
/* */ public short getHeight() {
|
||
|
/* 50 */ return this.height;
|
||
|
/* */ }
|
||
|
/* */
|
||
|
/* */ public void setHeight(short height) {
|
||
|
/* 54 */ this.height = height;
|
||
|
/* */ }
|
||
|
/* */
|
||
|
/* */ public short getEnc_type() {
|
||
|
/* 58 */ return this.enc_type;
|
||
|
/* */ }
|
||
|
/* */
|
||
|
/* */ public void setEnc_type(short enc_type) {
|
||
|
/* 62 */ this.enc_type = enc_type;
|
||
|
/* */ }
|
||
|
/* */
|
||
|
/* */ public short getQuilty() {
|
||
|
/* 66 */ return this.quilty;
|
||
|
/* */ }
|
||
|
/* */
|
||
|
/* */ public void setQuilty(short quilty) {
|
||
|
/* 70 */ this.quilty = quilty;
|
||
|
/* */ }
|
||
|
/* */
|
||
|
/* */ public short getGop() {
|
||
|
/* 74 */ return this.gop;
|
||
|
/* */ }
|
||
|
/* */
|
||
|
/* */ public void setGop(short gop) {
|
||
|
/* 78 */ this.gop = gop;
|
||
|
/* */ }
|
||
|
/* */
|
||
|
/* */ public short getFlow_type() {
|
||
|
/* 82 */ return this.flow_type;
|
||
|
/* */ }
|
||
|
/* */
|
||
|
/* */ public void setFlow_type(short flow_type) {
|
||
|
/* 86 */ this.flow_type = flow_type;
|
||
|
/* */ }
|
||
|
/* */
|
||
|
/* */ public long getBitrateRate() {
|
||
|
/* 90 */ return this.bitrateRate;
|
||
|
/* */ }
|
||
|
/* */
|
||
|
/* */ public void setBitrateRate(long bitrateRate) {
|
||
|
/* 94 */ this.bitrateRate = bitrateRate;
|
||
|
/* */ }
|
||
|
/* */
|
||
|
/* */ public short getProfile() {
|
||
|
/* 98 */ return this.profile;
|
||
|
/* */ }
|
||
|
/* */
|
||
|
/* */ public void setProfile(short profile) {
|
||
|
/* 102 */ this.profile = profile;
|
||
|
/* */ }
|
||
|
/* */
|
||
|
/* */ public short getFrame_priority() {
|
||
|
/* 106 */ return this.frame_priority;
|
||
|
/* */ }
|
||
|
/* */
|
||
|
/* */ public void setFrame_priority(short frame_priority) {
|
||
|
/* 110 */ this.frame_priority = frame_priority;
|
||
|
/* */ }
|
||
|
/* */
|
||
|
/* */ public short getMinQFactor() {
|
||
|
/* 114 */ return this.minQFactor;
|
||
|
/* */ }
|
||
|
/* */
|
||
|
/* */ public void setMinQFactor(short minQFactor) {
|
||
|
/* 118 */ this.minQFactor = minQFactor;
|
||
|
/* */ }
|
||
|
/* */
|
||
|
/* */ public short getMaxQFactor() {
|
||
|
/* 122 */ return this.maxQFactor;
|
||
|
/* */ }
|
||
|
/* */
|
||
|
/* */ public void setMaxQFactor(short maxQFactor) {
|
||
|
/* 126 */ this.maxQFactor = maxQFactor;
|
||
|
/* */ }
|
||
|
/* */
|
||
|
/* */ public short getFrame_rate() {
|
||
|
/* 130 */ return this.frame_rate;
|
||
|
/* */ }
|
||
|
/* */
|
||
|
/* */ public void setFrame_rate(short frame_rate) {
|
||
|
/* 134 */ this.frame_rate = frame_rate;
|
||
|
/* */ }
|
||
|
/* */
|
||
|
/* */ public String toString()
|
||
|
/* */ {
|
||
|
/* 139 */ return "VideoEncodeParam{width=" + this.width + ", height=" + this.height + ", enc_type=" + this.enc_type + ", quilty=" + this.quilty + ", gop=" + this.gop + ", flow_type=" + this.flow_type + ", frame_rate=" + this.frame_rate + ", bitrateRate=" + this.bitrateRate + ", profile=" + this.profile + ", frame_priority=" + this.frame_priority + ", minQFactor=" + this.minQFactor + ", maxQFactor=" + this.maxQFactor + '}';
|
||
|
/* */ }
|
||
|
/* */ }
|
||
|
|
||
|
/* Location: C:\Users\JingJing\Desktop\i1aar\dsdevicesdk1.3\classes.jar
|
||
|
* Qualified Name: com.dowse.devicesdk.rv1126.VideoEncodeParam
|
||
|
* JD-Core Version: 0.6.0
|
||
|
*/
|