Changeset 104751 in vbox for trunk/src/VBox
- Timestamp:
- May 22, 2024 9:46:55 AM (7 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/RecordingStream.cpp
r98278 r104751 419 419 * Sends a raw (e.g. not yet encoded) video frame to the recording stream. 420 420 * 421 * @returns VBox status code. Will return VINF_RECORDING_LIMIT_REACHED if the stream's recording422 * limit has been reached or VINF_RECORDING_THROTTLED if the frame is too early for the current423 * 421 * @returns VBox status code. 422 * @retval VINF_RECORDING_LIMIT_REACHED if the stream's recording limit has been reached. 423 * @retval VINF_RECORDING_THROTTLED if the frame is too early for the current FPS setting. 424 424 * @param x Upper left (X) coordinate where the video frame starts. 425 425 * @param y Upper left (Y) coordinate where the video frame starts. … … 436 436 { 437 437 AssertPtrReturn(m_pCtx, VERR_WRONG_ORDER); 438 AssertReturn(NeedsUpdate(msTimestamp), VINF_RECORDING_THROTTLED); /* We ASSUME that the caller checked that first. */ 438 439 if RT_UNLIKELY(!NeedsUpdate(msTimestamp)) 440 return VINF_RECORDING_THROTTLED; 439 441 440 442 lock();
Note:
See TracChangeset
for help on using the changeset viewer.