VideoDimensions
The video dimension.
struct VideoDimensions {
int width;
int height;
VideoDimensions() : width(640), height(480) {}
VideoDimensions(int w, int h) : width(w), height(h) {}
bool operator==(const VideoDimensions& rhs) const {
return width == rhs.width && height == rhs.height;
}
};
Attributes
- width
-
The width (pixels) of the video.
- height
- The height (pixels) of the video.