Changeset 75068 in vbox for trunk/src/VBox/Main
- Timestamp:
- Oct 25, 2018 1:15:19 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 126120
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/VideoRec.cpp
r75066 r75068 388 388 * @param uScreen Screen number of recording stream to look up. 389 389 */ 390 PVIDEORECSTREAM videoRecGetStream(PVIDEORECCONTEXT pCtx, uint32_t uScreen)390 PVIDEORECSTREAM VideoRecGetStream(PVIDEORECCONTEXT pCtx, uint32_t uScreen) 391 391 { 392 392 AssertPtrReturn(pCtx, NULL); … … 424 424 bool fIsReady = false; 425 425 426 PVIDEORECSTREAM pStream = videoRecGetStream(pCtx, uScreen);426 PVIDEORECSTREAM pStream = VideoRecGetStream(pCtx, uScreen); 427 427 if (pStream) 428 428 { … … 463 463 bool VideoRecIsLimitReached(PVIDEORECCONTEXT pCtx, uint32_t uScreen, uint64_t tsNowMs) 464 464 { 465 PVIDEORECSTREAM pStream = videoRecGetStream(pCtx, uScreen);465 PVIDEORECSTREAM pStream = VideoRecGetStream(pCtx, uScreen); 466 466 if ( !pStream 467 467 || !pStream->fEnabled) … … 608 608 AssertRC(rc); 609 609 610 PVIDEORECSTREAM pStream = videoRecGetStream(pCtx, uScreen);610 PVIDEORECSTREAM pStream = VideoRecGetStream(pCtx, uScreen); 611 611 if (!pStream) 612 612 {
Note:
See TracChangeset
for help on using the changeset viewer.