Changeset 75355 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- Nov 9, 2018 11:27:45 AM (6 years ago)
- Location:
- trunk/src/VBox/Main/src-client
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/Recording.cpp
r75354 r75355 172 172 173 173 /** 174 * Creates a videorecording context.174 * Creates a recording context. 175 175 * 176 176 * @returns IPRT status code. … … 269 269 270 270 /** 271 * Destroys a videorecording context.271 * Destroys a recording context. 272 272 */ 273 273 int RecordingContext::destroyInternal(void) -
trunk/src/VBox/Main/src-client/RecordingInternals.cpp
r75354 r75355 23 23 #ifdef VBOX_WITH_AUDIO_RECORDING 24 24 /** 25 * Frees a previously allocated videorecording audio frame.25 * Frees a previously allocated recording audio frame. 26 26 * 27 27 * @param pFrame Audio frame to free. The pointer will be invalid after return. … … 43 43 44 44 /** 45 * Frees a videorecording video frame.45 * Frees a recording video frame. 46 46 * 47 47 * @returns IPRT status code. … … 62 62 63 63 /** 64 * Frees a videorecording (data) block.64 * Frees a recording (data) block. 65 65 * 66 66 * @returns IPRT status code. 67 67 * @param pBlock Video recording (data) block to free. The pointer will be invalid after return. 68 68 */ 69 void R ECORDINGBLOCKFree(PRECORDINGBLOCK pBlock)69 void RecordingFree(PRECORDINGBLOCK pBlock) 70 70 { 71 71 if (!pBlock)
Note:
See TracChangeset
for help on using the changeset viewer.