Changeset 96322 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Aug 19, 2022 7:45:57 AM (2 years ago)
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/Recording.h
r96260 r96322 70 70 bool IsLimitReached(void); 71 71 bool IsLimitReached(uint32_t uScreen, uint64_t msTimestamp); 72 bool NeedsUpdate( uint32_t uScreen, uint64_t msTimestamp); 72 73 73 74 DECLCALLBACK(int) OnLimitReached(uint32_t uScreen, int rc); -
trunk/src/VBox/Main/include/RecordingInternals.h
r96285 r96322 454 454 int recordingCodecEncode(PRECORDINGCODEC pCodec, const PRECORDINGFRAME pFrame, size_t *pcEncoded, size_t *pcbEncoded); 455 455 int recordingCodecFinalize(PRECORDINGCODEC pCodec); 456 uint32_t recordingCodecGetWritable(PRECORDINGCODEC pCodec, uint64_t msTimestamp); 456 bool recordingCodecIsInitialized(const PRECORDINGCODEC pCodec); 457 uint32_t recordingCodecGetWritable(const PRECORDINGCODEC pCodec, uint64_t msTimestamp); 457 458 #endif /* !MAIN_INCLUDED_RecordingInternals_h */ -
trunk/src/VBox/Main/include/RecordingStream.h
r96260 r96322 130 130 #endif 131 131 PRECORDINGCODEC GetVideoCodec(void) { return &this->CodecVideo; }; 132 132 133 bool IsLimitReached(uint64_t msTimestamp) const; 133 134 bool IsReady(void) const; 135 bool NeedsUpdate(uint64_t msTimestamp) const; 134 136 135 137 public:
Note:
See TracChangeset
for help on using the changeset viewer.