Changeset 65418 in vbox for trunk/src/VBox/Main
- Timestamp:
- Jan 24, 2017 10:55:33 AM (8 years ago)
- Location:
- trunk/src/VBox/Main/src-client
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/DisplayImpl.cpp
r65412 r65418 3208 3208 continue; 3209 3209 3210 if (VideoRec LimitReached(pDisplay->mpVideoRecCtx, uScreenId, u64Now))3210 if (VideoRecIsLimitReached(pDisplay->mpVideoRecCtx, uScreenId, u64Now)) 3211 3211 { 3212 3212 pDisplay->i_videoCaptureStop(); -
trunk/src/VBox/Main/src-client/VideoRec.cpp
r65415 r65418 918 918 */ 919 919 920 bool VideoRec LimitReached(PVIDEORECCONTEXT pCtx, uint32_t uScreen, uint64_t tsNowMs)920 bool VideoRecIsLimitReached(PVIDEORECCONTEXT pCtx, uint32_t uScreen, uint64_t tsNowMs) 921 921 { 922 922 PVIDEORECSTREAM pStream = videoRecStreamGet(pCtx, uScreen); … … 1047 1047 } 1048 1048 1049 /** 1050 * Sends an audio frame to the video encoding thread. 1051 * 1052 * @returns IPRT status code. 1053 * @param pCtx Pointer to the video recording context. 1054 * @param pvData Audio frame data to send. 1055 * @param cbData Size (in bytes) of audio frame data. 1056 * @param uTimestampMs Time stamp (in ms) of audio playback. 1057 */ 1049 1058 int VideoRecSendAudioFrame(PVIDEORECCONTEXT pCtx, const void *pvData, size_t cbData, uint64_t uTimestampMs) 1050 1059 { -
trunk/src/VBox/Main/src-client/VideoRec.h
r65412 r65418 39 39 uint8_t *pu8BufferAddress, uint64_t u64TimeStampMs); 40 40 bool VideoRecIsReady(PVIDEORECCONTEXT pCtx, uint32_t uScreen, uint64_t u64TimeStampMs); 41 bool VideoRec LimitReached(PVIDEORECCONTEXT pCtx, uint32_t uScreen, uint64_t u64TimeStampMs);41 bool VideoRecIsLimitReached(PVIDEORECCONTEXT pCtx, uint32_t uScreen, uint64_t u64TimeStampMs); 42 42 43 43 #endif /* !____H_VIDEOREC */
Note:
See TracChangeset
for help on using the changeset viewer.