org.kurento.client.VideoCaps Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kurento-client Show documentation
Show all versions of kurento-client Show documentation
Kurento Client
The Kurento Client project allows server applications to control media server resources.
/**
* This file is generated with Kurento ktool-rom-processor.
* Please don't edit. Changes should go to kms-interface-rom and
* ktool-rom-processor templates.
*/
package org.kurento.client;
/**
*
* Format for video media
*
**/
@org.kurento.client.internal.ModuleName ("kurento")
public class VideoCaps {
/**
*
* Video codec
*
**/
private org.kurento.client.VideoCodec codec;
/**
*
* Framerate
*
**/
private org.kurento.client.Fraction framerate;
/**
*
* Default private constructor of VideoCaps for serialization with Jackson
*
**/
protected VideoCaps() {
super();
}
/**
*
* Create a VideoCaps
*
**/
public VideoCaps(@org.kurento.client.internal.server.Param("codec") org.kurento.client.VideoCodec codec, @org.kurento.client.internal.server.Param("framerate") org.kurento.client.Fraction framerate) {
super();
this.codec = codec;
this.framerate = framerate;
}
/**
*
* get Video codec
*
**/
public org.kurento.client.VideoCodec getCodec(){
return codec;
}
/**
*
* set Video codec
*
**/
public void setCodec(org.kurento.client.VideoCodec codec){
this.codec = codec;
}
/**
*
* get Framerate
*
**/
public org.kurento.client.Fraction getFramerate(){
return framerate;
}
/**
*
* set Framerate
*
**/
public void setFramerate(org.kurento.client.Fraction framerate){
this.framerate = framerate;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy