19 lines
281 B
Java
19 lines
281 B
Java
|
|
package org.jcodec.api;
|
||
|
|
|
||
|
|
import org.jcodec.common.model.Size;
|
||
|
|
|
||
|
|
public class MediaInfo {
|
||
|
|
private Size dim;
|
||
|
|
|
||
|
|
public MediaInfo(Size dim) {
|
||
|
|
this.dim = dim;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Size getDim() {
|
||
|
|
return this.dim;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setDim(Size dim) {
|
||
|
|
this.dim = dim;
|
||
|
|
}
|
||
|
|
}
|