Changeset 45914 in vbox for trunk/src/VBox/Main
- Timestamp:
- May 6, 2013 3:11:12 PM (12 years ago)
- Location:
- trunk/src/VBox/Main/src-client
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/DisplayImpl.cpp
r45890 r45914 3930 3930 3931 3931 /* @todo new SendUpdate entry which can get a separate cmd header or coords. */ 3932 pThis->mParent->consoleVRDPServer()->SendUpdate (uScreenId, pCmd, cbCmd);3932 pThis->mParent->consoleVRDPServer()->SendUpdate (uScreenId, pCmd, (uint32_t)cbCmd); 3933 3933 3934 3934 *pHdrUnconst = hdrSaved; -
trunk/src/VBox/Main/src-client/EbmlWriter.cpp
r45913 r45914 390 390 block_timecode = 0; 391 391 glob->cluster_open = 1; 392 glob->cluster_timecode = pts_ms;392 glob->cluster_timecode = (uint32_t)pts_ms; 393 393 glob->cluster_pos = RTFileTell(glob->file); 394 394 if (RT_SUCCESS(rc)) -
trunk/src/VBox/Main/src-client/EbmlWriter.h
r45913 r45914 253 253 struct cue_entry 254 254 { 255 uint 64_t time;255 uint32_t time; 256 256 uint64_t loc; 257 257 }; … … 276 276 uint64_t startCluster; 277 277 278 uint 64_t cluster_timecode;278 uint32_t cluster_timecode; 279 279 int cluster_open; 280 280
Note:
See TracChangeset
for help on using the changeset viewer.