Changeset 72014 in vbox for trunk/src/VBox/Main/src-client/VideoRec.h
- Timestamp:
- Apr 25, 2018 1:28:31 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/VideoRec.h
r70035 r72014 58 58 { 59 59 VIDEORECCFG(void) 60 : fEnabled(false) 61 , enmDst(VIDEORECDEST_INVALID) 60 : enmDst(VIDEORECDEST_INVALID) 62 61 , uMaxTimeS(0) 63 62 { … … 69 68 70 69 /** Whether recording is enabled or not (as a whole). */ 71 bool fEnabled;70 //bool fEnabled; 72 71 /** Array of all screens containing whether they're enabled 73 72 * for recording or not. */ … … 143 142 VIDEORECCFG& operator=(const VIDEORECCFG &that) 144 143 { 145 fEnabled = that.fEnabled;146 147 144 aScreens.resize(that.aScreens.size()); 148 145 for (size_t i = 0; i < that.aScreens.size(); ++i) … … 179 176 int VideoRecStreamUninit(PVIDEORECCONTEXT pCtx, uint32_t uScreen); 180 177 181 VIDEORECFEATURES VideoRecGet Enabled(PVIDEORECCFG pCfg);178 VIDEORECFEATURES VideoRecGetFeatures(PVIDEORECCFG pCfg); 182 179 183 180 int VideoRecSendAudioFrame(PVIDEORECCONTEXT pCtx, const void *pvData, size_t cbData, uint64_t uTimestampMs); … … 187 184 uint8_t *puSrcData, uint64_t uTimeStampMs); 188 185 bool VideoRecIsReady(PVIDEORECCONTEXT pCtx, uint32_t uScreen, uint64_t uTimeStampMs); 189 bool VideoRecIs Active(PVIDEORECCONTEXT pCtx);186 bool VideoRecIsStarted(PVIDEORECCONTEXT pCtx); 190 187 bool VideoRecIsLimitReached(PVIDEORECCONTEXT pCtx, uint32_t uScreen, uint64_t tsNowMs); 191 188
Note:
See TracChangeset
for help on using the changeset viewer.