Changeset 44284 in vbox
- Timestamp:
- Jan 14, 2013 12:11:00 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 83191
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/RemoteDesktop/VRDEVideoIn.h
r44276 r44284 235 235 #define VRDE_VIDEOIN_F_FMT_COMPQUALITY 0x08 /* If the format supports an adjustable compression quality. */ 236 236 237 typedef struct VRDEVIDEOINFRAMESIZE238 {239 uint16_t u16Width;240 uint16_t u16Height;241 } VRDEVIDEOINFRAMESIZE;242 243 237 typedef struct VRDEVIDEOINFRAMEDESC 244 238 { … … 246 240 uint8_t u8FrameId; /* The unique identifier of the frame for the corresponding format on the client. */ 247 241 uint8_t u8FrameFlags; 248 VRDEVIDEOINFRAMESIZE frameSize; 242 uint16_t u16Width; 243 uint16_t u16Height; 249 244 uint32_t u32NumFrameIntervals; /* The number of supported frame intervals. */ 250 245 uint32_t u32MinFrameInterval; /* Shortest frame interval supported (at highest frame rate), in 100ns units. */ … … 606 601 uint8_t u8FormatId; /* The format id on the client: VRDEVIDEOINFORMATDESC::u8FormatId. */ 607 602 uint8_t u8FramingInfo; /* VRDEVIDEOINCTRL_F_VS_START_*. Set by the client. */ 608 VRDEVIDEOINFRAMESIZE frameSize; 603 uint16_t u16Width; 604 uint16_t u16Height; 609 605 uint32_t u32FrameInterval; /* Frame interval in 100 ns units, 0 means a still image capture. 610 606 * The client may choose a different interval if this value is
Note:
See TracChangeset
for help on using the changeset viewer.