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:
parent
28e98ff731
commit
49899872e4
1 changed files with 12 additions and 0 deletions
|
@ -257,6 +257,18 @@ typedef struct {
|
||||||
u32 VSyncPolarity;
|
u32 VSyncPolarity;
|
||||||
} XVid_VideoTiming;
|
} 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 {
|
typedef struct {
|
||||||
XVid_VideoMode VmId;
|
XVid_VideoMode VmId;
|
||||||
const char Name[21];
|
const char Name[21];
|
||||||
|
|
Loading…
Add table
Reference in a new issue