- Timestamp:
- Apr 25, 2013 7:56:04 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/DisplayImpl.cpp
r45731 r45740 2725 2725 } 2726 2726 2727 if (RT_SUCCESS(rc) && pDisplay->maFramebuffers[aScreenId].u32ResizeStatus == ResizeStatus_Void) 2727 if ( RT_SUCCESS(rc) 2728 && pDisplay->maFramebuffers[aScreenId].u32ResizeStatus == ResizeStatus_Void) 2728 2729 pDisplay->mParent->consoleVRDPServer()->SendUpdateBitmap(aScreenId, x, y, width, height); 2729 2730 … … 3367 3368 } 3368 3369 3369 /* Just return in case of failure without any assertion */ 3370 /* Just return in case of failure without any assertion */ 3371 if (RT_SUCCESS(rc)) 3372 { 3373 rc = VideoRecDoRGBToYUV(pDisplay->mpVideoRecContext, u32VideoRecImgFormat); 3370 3374 if (RT_SUCCESS(rc)) 3371 if (RT_SUCCESS(VideoRecDoRGBToYUV(pDisplay->mpVideoRecContext, u32VideoRecImgFormat)))3372 VideoRecEncodeAndWrite(pDisplay->mpVideoRecContext, ulGuestWidth, ulGuestHeight);3375 VideoRecEncodeAndWrite(pDisplay->mpVideoRecContext, ulGuestWidth, ulGuestHeight); 3376 } 3373 3377 } 3374 3378 }
Note:
See TracChangeset
for help on using the changeset viewer.