video_common: Added structure definition to represent a video stream.

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:52:13 -08:00 committed by Nava kishore Manne
parent 28e98ff731
commit 49899872e4

View file

@ -257,6 +257,18 @@ typedef struct {
u32 VSyncPolarity;
} XVid_VideoTiming;
/**
* Video stream structure.
*/
typedef struct {
XVid_ColorFormat ColorFormatId;
XVid_DataWidth Bpc;
XVid_FrameRate FrameRate;
u32 IsInterlaced;
XVid_VideoMode ResId;
XVid_VideoTiming Timing;
} XVid_VideoStream;
typedef struct {
XVid_VideoMode VmId;
const char Name[21];