- Timestamp:
- Jul 8, 2015 9:58:39 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/DisplayImpl.cpp
r56840 r56853 877 877 uint32_t cbLine, uint32_t w, uint32_t h, uint16_t flags) 878 878 { 879 LogRel(("Display::handleDisplayResize(): uScreenId = %d, pvVRAM=%p " 880 "w=%d h=%d bpp=%d cbLine=0x%X, flags=0x%X\n", 881 uScreenId, pvVRAM, w, h, bpp, cbLine, flags)); 879 LogRel(("Display::handleDisplayResize: uScreenId=%d pvVRAM=%p w=%d h=%d bpp=%d cbLine=0x%X flags=0x%X\n", uScreenId, 880 pvVRAM, w, h, bpp, cbLine, flags)); 882 881 883 882 if (uScreenId >= mcMonitors) … … 2321 2320 2322 2321 if (RT_SUCCESS(rc)) 2323 LogRel(("WebM/VP8 video recording screen #%u with %ux%u @ %u kbps, %u fps to '%s' enabled.\n", 2324 uScreen, ulWidth, ulHeight, ulRate, ulFPS, pszName)); 2322 { 2323 LogRel(("Display::VideoCaptureStart: WebM/VP8 video recording screen #%u with %ux%u @ %u kbps, %u fps to '%s' " 2324 "enabled\n", uScreen, ulWidth, ulHeight, ulRate, ulFPS, pszName)); 2325 } 2325 2326 else 2326 LogRel((" Failed to initialize video recording context #%u (%Rrc)!\n", uScreen, rc));2327 LogRel(("Display::VideoCaptureStart: Failed to initialize video recording context #%u (%Rrc)!\n", uScreen, rc)); 2327 2328 RTStrFree(pszName); 2328 2329 RTStrFree(pszSuff); … … 2342 2343 #ifdef VBOX_WITH_VPX 2343 2344 if (VideoRecIsEnabled(mpVideoRecCtx)) 2344 LogRel((" WebM/VP8 video recording stopped.\n"));2345 LogRel(("Display::VideoCaptureStop: WebM/VP8 video recording stopped\n")); 2345 2346 VideoRecContextClose(mpVideoRecCtx); 2346 2347 mpVideoRecCtx = NULL;
Note:
See TracChangeset
for help on using the changeset viewer.