Changeset 62211 in vbox
- Timestamp:
- Jul 13, 2016 9:12:03 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 108720
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/USB/DrvVUSBRootHub.cpp
r61576 r62211 468 468 } 469 469 470 if (uNewFrameRate != pThis->uFrameRate) 470 if ( uNewFrameRate != pThis->uFrameRate 471 && uNewFrameRate) 471 472 { 472 473 LogFlow(("Frame rate changed from %u to %u\n", pThis->uFrameRate, uNewFrameRate)); … … 553 554 rc = RTSemEventMultiWait(pThis->hSemEventPeriodFrame, RT_INDEFINITE_WAIT); 554 555 RTSemEventMultiReset(pThis->hSemEventPeriodFrame); 556 557 /* 558 * Notify the device above about the frame rate changed if we are supposed to 559 * process frames. 560 */ 561 uint32_t uFrameRate = ASMAtomicReadU32(&pThis->uFrameRateDefault); 562 if (uFrameRate) 563 vusbRhR3CalcTimerIntervals(pThis, uFrameRate); 555 564 } 556 565
Note:
See TracChangeset
for help on using the changeset viewer.