Changeset 65402 in vbox for trunk/src/VBox/Main
- Timestamp:
- Jan 23, 2017 1:39:33 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/VideoRec.cpp
r65401 r65402 164 164 /** Worker thread. */ 165 165 RTTHREAD Thread; 166 uint64_t tsStartMs;167 166 /** Maximal time (in ms) to record. */ 168 167 uint64_t uMaxTimeMs; … … 923 922 924 923 if ( pCtx->uMaxTimeMs 925 && (tsNowMs - pCtx->tsStartMs)>= pCtx->uMaxTimeMs)924 && tsNowMs >= pCtx->uMaxTimeMs) 926 925 { 927 926 return true;
Note:
See TracChangeset
for help on using the changeset viewer.