video_common: Added a structure definition to represent a video window.

Signed-off-by: Rohit Consul <rohit.consul@xilinx.com>
Signed-off-by: Andrei-Liviu Simion <andrei.simion@xilinx.com>
This commit is contained in:
Rohit Consul 2014-12-16 14:53:29 -08:00 committed by Nava kishore Manne
parent 49899872e4
commit 86329977c8

View file

@ -269,6 +269,16 @@ typedef struct {
XVid_VideoTiming Timing;
} XVid_VideoStream;
/**
* Video window structure.
*/
typedef struct {
u32 StartX;
u32 StartY;
u32 Width;
u32 Height;
} XVid_VideoWindow;
typedef struct {
XVid_VideoMode VmId;
const char Name[21];