1 | /* $Id: VideoRec.cpp 52342 2014-08-11 15:01:48Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * Encodes the screen content in VPX format.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2012-2013 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 | #define LOG_GROUP LOG_GROUP_MAIN
|
---|
19 | #include <VBox/log.h>
|
---|
20 | #include <iprt/asm.h>
|
---|
21 | #include <iprt/assert.h>
|
---|
22 | #include <iprt/semaphore.h>
|
---|
23 | #include <iprt/thread.h>
|
---|
24 |
|
---|
25 | #include <VBox/com/VirtualBox.h>
|
---|
26 | #include <VBox/com/com.h>
|
---|
27 | #include <VBox/com/string.h>
|
---|
28 |
|
---|
29 | #include "EbmlWriter.h"
|
---|
30 | #include "VideoRec.h"
|
---|
31 |
|
---|
32 | #define VPX_CODEC_DISABLE_COMPAT 1
|
---|
33 | #include <vpx/vp8cx.h>
|
---|
34 | #include <vpx/vpx_image.h>
|
---|
35 |
|
---|
36 | /** Default VPX codec to use */
|
---|
37 | #define DEFAULTCODEC (vpx_codec_vp8_cx())
|
---|
38 |
|
---|
39 | static int videoRecEncodeAndWrite(PVIDEORECSTREAM pStrm);
|
---|
40 | static int videoRecRGBToYUV(PVIDEORECSTREAM pStrm);
|
---|
41 |
|
---|
42 | /* state to synchronized between threads */
|
---|
43 | enum
|
---|
44 | {
|
---|
45 | VIDREC_UNINITIALIZED = 0,
|
---|
46 | /* initialized, idle */
|
---|
47 | VIDREC_IDLE = 1,
|
---|
48 | /* currently in VideoRecCopyToIntBuf(), delay termination */
|
---|
49 | VIDREC_COPYING = 2,
|
---|
50 | /* signal that we are terminating */
|
---|
51 | VIDREC_TERMINATING = 3
|
---|
52 | };
|
---|
53 |
|
---|
54 | /* Must be always accessible and therefore cannot be part of VIDEORECCONTEXT */
|
---|
55 | static uint32_t g_enmState = VIDREC_UNINITIALIZED;
|
---|
56 |
|
---|
57 |
|
---|
58 | typedef struct VIDEORECSTREAM
|
---|
59 | {
|
---|
60 | /* container context */
|
---|
61 | WebMWriter Ebml;
|
---|
62 | /* VPX codec context */
|
---|
63 | vpx_codec_ctx_t VpxCodec;
|
---|
64 | /* VPX configuration */
|
---|
65 | vpx_codec_enc_cfg_t VpxConfig;
|
---|
66 | /* X resolution */
|
---|
67 | uint32_t uTargetWidth;
|
---|
68 | /* Y resolution */
|
---|
69 | uint32_t uTargetHeight;
|
---|
70 | /* X resolution of the last encoded picture */
|
---|
71 | uint32_t uLastSourceWidth;
|
---|
72 | /* Y resolution of the last encoded picture */
|
---|
73 | uint32_t uLastSourceHeight;
|
---|
74 | /* current frame number */
|
---|
75 | uint32_t cFrame;
|
---|
76 | /* RGB buffer containing the most recent frame of the framebuffer */
|
---|
77 | uint8_t *pu8RgbBuf;
|
---|
78 | /* YUV buffer the encode function fetches the frame from */
|
---|
79 | uint8_t *pu8YuvBuf;
|
---|
80 | /* VPX image context */
|
---|
81 | vpx_image_t VpxRawImage;
|
---|
82 | /* true if video recording is enabled */
|
---|
83 | bool fEnabled;
|
---|
84 | /* true if the RGB buffer is filled */
|
---|
85 | bool fRgbFilled;
|
---|
86 | /* pixel format of the current frame */
|
---|
87 | uint32_t u32PixelFormat;
|
---|
88 | /* minimal delay between two frames */
|
---|
89 | uint32_t uDelay;
|
---|
90 | /* time stamp of the last frame we encoded */
|
---|
91 | uint64_t u64LastTimeStamp;
|
---|
92 | /* time stamp of the current frame */
|
---|
93 | uint64_t u64TimeStamp;
|
---|
94 | /* encoder deadline */
|
---|
95 | unsigned int uEncoderDeadline;
|
---|
96 | } VIDEORECSTREAM;
|
---|
97 |
|
---|
98 | typedef struct VIDEORECCONTEXT
|
---|
99 | {
|
---|
100 | /* semaphore to signal the encoding worker thread */
|
---|
101 | RTSEMEVENT WaitEvent;
|
---|
102 | /* semaphore required during termination */
|
---|
103 | RTSEMEVENT TermEvent;
|
---|
104 | /* true if video recording is enabled */
|
---|
105 | bool fEnabled;
|
---|
106 | /* worker thread */
|
---|
107 | RTTHREAD Thread;
|
---|
108 | /* number of stream contexts */
|
---|
109 | uint32_t cScreens;
|
---|
110 | /* maximal time stamp */
|
---|
111 | uint64_t u64MaxTimeStamp;
|
---|
112 | /* maximal file size in MB */
|
---|
113 | uint32_t uMaxFileSize;
|
---|
114 | /* video recording stream contexts */
|
---|
115 | VIDEORECSTREAM Strm[1];
|
---|
116 | } VIDEORECCONTEXT;
|
---|
117 |
|
---|
118 |
|
---|
119 | /**
|
---|
120 | * Iterator class for running through a BGRA32 image buffer and converting
|
---|
121 | * it to RGB.
|
---|
122 | */
|
---|
123 | class ColorConvBGRA32Iter
|
---|
124 | {
|
---|
125 | private:
|
---|
126 | enum { PIX_SIZE = 4 };
|
---|
127 | public:
|
---|
128 | ColorConvBGRA32Iter(unsigned aWidth, unsigned aHeight, uint8_t *aBuf)
|
---|
129 | {
|
---|
130 | LogFlow(("width = %d height=%d aBuf=%lx\n", aWidth, aHeight, aBuf));
|
---|
131 | mPos = 0;
|
---|
132 | mSize = aWidth * aHeight * PIX_SIZE;
|
---|
133 | mBuf = aBuf;
|
---|
134 | }
|
---|
135 | /**
|
---|
136 | * Convert the next pixel to RGB.
|
---|
137 | * @returns true on success, false if we have reached the end of the buffer
|
---|
138 | * @param aRed where to store the red value
|
---|
139 | * @param aGreen where to store the green value
|
---|
140 | * @param aBlue where to store the blue value
|
---|
141 | */
|
---|
142 | bool getRGB(unsigned *aRed, unsigned *aGreen, unsigned *aBlue)
|
---|
143 | {
|
---|
144 | bool rc = false;
|
---|
145 | if (mPos + PIX_SIZE <= mSize)
|
---|
146 | {
|
---|
147 | *aRed = mBuf[mPos + 2];
|
---|
148 | *aGreen = mBuf[mPos + 1];
|
---|
149 | *aBlue = mBuf[mPos ];
|
---|
150 | mPos += PIX_SIZE;
|
---|
151 | rc = true;
|
---|
152 | }
|
---|
153 | return rc;
|
---|
154 | }
|
---|
155 |
|
---|
156 | /**
|
---|
157 | * Skip forward by a certain number of pixels
|
---|
158 | * @param aPixels how many pixels to skip
|
---|
159 | */
|
---|
160 | void skip(unsigned aPixels)
|
---|
161 | {
|
---|
162 | mPos += PIX_SIZE * aPixels;
|
---|
163 | }
|
---|
164 | private:
|
---|
165 | /** Size of the picture buffer */
|
---|
166 | unsigned mSize;
|
---|
167 | /** Current position in the picture buffer */
|
---|
168 | unsigned mPos;
|
---|
169 | /** Address of the picture buffer */
|
---|
170 | uint8_t *mBuf;
|
---|
171 | };
|
---|
172 |
|
---|
173 | /**
|
---|
174 | * Iterator class for running through an BGR24 image buffer and converting
|
---|
175 | * it to RGB.
|
---|
176 | */
|
---|
177 | class ColorConvBGR24Iter
|
---|
178 | {
|
---|
179 | private:
|
---|
180 | enum { PIX_SIZE = 3 };
|
---|
181 | public:
|
---|
182 | ColorConvBGR24Iter(unsigned aWidth, unsigned aHeight, uint8_t *aBuf)
|
---|
183 | {
|
---|
184 | mPos = 0;
|
---|
185 | mSize = aWidth * aHeight * PIX_SIZE;
|
---|
186 | mBuf = aBuf;
|
---|
187 | }
|
---|
188 | /**
|
---|
189 | * Convert the next pixel to RGB.
|
---|
190 | * @returns true on success, false if we have reached the end of the buffer
|
---|
191 | * @param aRed where to store the red value
|
---|
192 | * @param aGreen where to store the green value
|
---|
193 | * @param aBlue where to store the blue value
|
---|
194 | */
|
---|
195 | bool getRGB(unsigned *aRed, unsigned *aGreen, unsigned *aBlue)
|
---|
196 | {
|
---|
197 | bool rc = false;
|
---|
198 | if (mPos + PIX_SIZE <= mSize)
|
---|
199 | {
|
---|
200 | *aRed = mBuf[mPos + 2];
|
---|
201 | *aGreen = mBuf[mPos + 1];
|
---|
202 | *aBlue = mBuf[mPos ];
|
---|
203 | mPos += PIX_SIZE;
|
---|
204 | rc = true;
|
---|
205 | }
|
---|
206 | return rc;
|
---|
207 | }
|
---|
208 |
|
---|
209 | /**
|
---|
210 | * Skip forward by a certain number of pixels
|
---|
211 | * @param aPixels how many pixels to skip
|
---|
212 | */
|
---|
213 | void skip(unsigned aPixels)
|
---|
214 | {
|
---|
215 | mPos += PIX_SIZE * aPixels;
|
---|
216 | }
|
---|
217 | private:
|
---|
218 | /** Size of the picture buffer */
|
---|
219 | unsigned mSize;
|
---|
220 | /** Current position in the picture buffer */
|
---|
221 | unsigned mPos;
|
---|
222 | /** Address of the picture buffer */
|
---|
223 | uint8_t *mBuf;
|
---|
224 | };
|
---|
225 |
|
---|
226 | /**
|
---|
227 | * Iterator class for running through an BGR565 image buffer and converting
|
---|
228 | * it to RGB.
|
---|
229 | */
|
---|
230 | class ColorConvBGR565Iter
|
---|
231 | {
|
---|
232 | private:
|
---|
233 | enum { PIX_SIZE = 2 };
|
---|
234 | public:
|
---|
235 | ColorConvBGR565Iter(unsigned aWidth, unsigned aHeight, uint8_t *aBuf)
|
---|
236 | {
|
---|
237 | mPos = 0;
|
---|
238 | mSize = aWidth * aHeight * PIX_SIZE;
|
---|
239 | mBuf = aBuf;
|
---|
240 | }
|
---|
241 | /**
|
---|
242 | * Convert the next pixel to RGB.
|
---|
243 | * @returns true on success, false if we have reached the end of the buffer
|
---|
244 | * @param aRed where to store the red value
|
---|
245 | * @param aGreen where to store the green value
|
---|
246 | * @param aBlue where to store the blue value
|
---|
247 | */
|
---|
248 | bool getRGB(unsigned *aRed, unsigned *aGreen, unsigned *aBlue)
|
---|
249 | {
|
---|
250 | bool rc = false;
|
---|
251 | if (mPos + PIX_SIZE <= mSize)
|
---|
252 | {
|
---|
253 | unsigned uFull = (((unsigned) mBuf[mPos + 1]) << 8)
|
---|
254 | | ((unsigned) mBuf[mPos]);
|
---|
255 | *aRed = (uFull >> 8) & ~7;
|
---|
256 | *aGreen = (uFull >> 3) & ~3 & 0xff;
|
---|
257 | *aBlue = (uFull << 3) & ~7 & 0xff;
|
---|
258 | mPos += PIX_SIZE;
|
---|
259 | rc = true;
|
---|
260 | }
|
---|
261 | return rc;
|
---|
262 | }
|
---|
263 |
|
---|
264 | /**
|
---|
265 | * Skip forward by a certain number of pixels
|
---|
266 | * @param aPixels how many pixels to skip
|
---|
267 | */
|
---|
268 | void skip(unsigned aPixels)
|
---|
269 | {
|
---|
270 | mPos += PIX_SIZE * aPixels;
|
---|
271 | }
|
---|
272 | private:
|
---|
273 | /** Size of the picture buffer */
|
---|
274 | unsigned mSize;
|
---|
275 | /** Current position in the picture buffer */
|
---|
276 | unsigned mPos;
|
---|
277 | /** Address of the picture buffer */
|
---|
278 | uint8_t *mBuf;
|
---|
279 | };
|
---|
280 |
|
---|
281 | /**
|
---|
282 | * Convert an image to YUV420p format
|
---|
283 | * @returns true on success, false on failure
|
---|
284 | * @param aWidth width of image
|
---|
285 | * @param aHeight height of image
|
---|
286 | * @param aDestBuf an allocated memory buffer large enough to hold the
|
---|
287 | * destination image (i.e. width * height * 12bits)
|
---|
288 | * @param aSrcBuf the source image as an array of bytes
|
---|
289 | */
|
---|
290 | template <class T>
|
---|
291 | inline bool colorConvWriteYUV420p(unsigned aWidth, unsigned aHeight,
|
---|
292 | uint8_t *aDestBuf, uint8_t *aSrcBuf)
|
---|
293 | {
|
---|
294 | AssertReturn(0 == (aWidth & 1), false);
|
---|
295 | AssertReturn(0 == (aHeight & 1), false);
|
---|
296 | bool rc = true;
|
---|
297 | T iter1(aWidth, aHeight, aSrcBuf);
|
---|
298 | T iter2 = iter1;
|
---|
299 | iter2.skip(aWidth);
|
---|
300 | unsigned cPixels = aWidth * aHeight;
|
---|
301 | unsigned offY = 0;
|
---|
302 | unsigned offU = cPixels;
|
---|
303 | unsigned offV = cPixels + cPixels / 4;
|
---|
304 | for (unsigned i = 0; (i < aHeight / 2) && rc; ++i)
|
---|
305 | {
|
---|
306 | for (unsigned j = 0; (j < aWidth / 2) && rc; ++j)
|
---|
307 | {
|
---|
308 | unsigned red, green, blue, u, v;
|
---|
309 | rc = iter1.getRGB(&red, &green, &blue);
|
---|
310 | if (rc)
|
---|
311 | {
|
---|
312 | aDestBuf[offY] = ((66 * red + 129 * green + 25 * blue + 128) >> 8) + 16;
|
---|
313 | u = (((-38 * red - 74 * green + 112 * blue + 128) >> 8) + 128) / 4;
|
---|
314 | v = (((112 * red - 94 * green - 18 * blue + 128) >> 8) + 128) / 4;
|
---|
315 | rc = iter1.getRGB(&red, &green, &blue);
|
---|
316 | }
|
---|
317 | if (rc)
|
---|
318 | {
|
---|
319 | aDestBuf[offY + 1] = ((66 * red + 129 * green + 25 * blue + 128) >> 8) + 16;
|
---|
320 | u += (((-38 * red - 74 * green + 112 * blue + 128) >> 8) + 128) / 4;
|
---|
321 | v += (((112 * red - 94 * green - 18 * blue + 128) >> 8) + 128) / 4;
|
---|
322 | rc = iter2.getRGB(&red, &green, &blue);
|
---|
323 | }
|
---|
324 | if (rc)
|
---|
325 | {
|
---|
326 | aDestBuf[offY + aWidth] = ((66 * red + 129 * green + 25 * blue + 128) >> 8) + 16;
|
---|
327 | u += (((-38 * red - 74 * green + 112 * blue + 128) >> 8) + 128) / 4;
|
---|
328 | v += (((112 * red - 94 * green - 18 * blue + 128) >> 8) + 128) / 4;
|
---|
329 | rc = iter2.getRGB(&red, &green, &blue);
|
---|
330 | }
|
---|
331 | if (rc)
|
---|
332 | {
|
---|
333 | aDestBuf[offY + aWidth + 1] = ((66 * red + 129 * green + 25 * blue + 128) >> 8) + 16;
|
---|
334 | u += (((-38 * red - 74 * green + 112 * blue + 128) >> 8) + 128) / 4;
|
---|
335 | v += (((112 * red - 94 * green - 18 * blue + 128) >> 8) + 128) / 4;
|
---|
336 | aDestBuf[offU] = u;
|
---|
337 | aDestBuf[offV] = v;
|
---|
338 | offY += 2;
|
---|
339 | ++offU;
|
---|
340 | ++offV;
|
---|
341 | }
|
---|
342 | }
|
---|
343 | if (rc)
|
---|
344 | {
|
---|
345 | iter1.skip(aWidth);
|
---|
346 | iter2.skip(aWidth);
|
---|
347 | offY += aWidth;
|
---|
348 | }
|
---|
349 | }
|
---|
350 | return rc;
|
---|
351 | }
|
---|
352 |
|
---|
353 | /**
|
---|
354 | * Convert an image to RGB24 format
|
---|
355 | * @returns true on success, false on failure
|
---|
356 | * @param aWidth width of image
|
---|
357 | * @param aHeight height of image
|
---|
358 | * @param aDestBuf an allocated memory buffer large enough to hold the
|
---|
359 | * destination image (i.e. width * height * 12bits)
|
---|
360 | * @param aSrcBuf the source image as an array of bytes
|
---|
361 | */
|
---|
362 | template <class T>
|
---|
363 | inline bool colorConvWriteRGB24(unsigned aWidth, unsigned aHeight,
|
---|
364 | uint8_t *aDestBuf, uint8_t *aSrcBuf)
|
---|
365 | {
|
---|
366 | enum { PIX_SIZE = 3 };
|
---|
367 | bool rc = true;
|
---|
368 | AssertReturn(0 == (aWidth & 1), false);
|
---|
369 | AssertReturn(0 == (aHeight & 1), false);
|
---|
370 | T iter(aWidth, aHeight, aSrcBuf);
|
---|
371 | unsigned cPixels = aWidth * aHeight;
|
---|
372 | for (unsigned i = 0; i < cPixels && rc; ++i)
|
---|
373 | {
|
---|
374 | unsigned red, green, blue;
|
---|
375 | rc = iter.getRGB(&red, &green, &blue);
|
---|
376 | if (rc)
|
---|
377 | {
|
---|
378 | aDestBuf[i * PIX_SIZE ] = red;
|
---|
379 | aDestBuf[i * PIX_SIZE + 1] = green;
|
---|
380 | aDestBuf[i * PIX_SIZE + 2] = blue;
|
---|
381 | }
|
---|
382 | }
|
---|
383 | return rc;
|
---|
384 | }
|
---|
385 |
|
---|
386 | /**
|
---|
387 | * Worker thread for all streams.
|
---|
388 | *
|
---|
389 | * RGB/YUV conversion and encoding.
|
---|
390 | */
|
---|
391 | static DECLCALLBACK(int) videoRecThread(RTTHREAD Thread, void *pvUser)
|
---|
392 | {
|
---|
393 | PVIDEORECCONTEXT pCtx = (PVIDEORECCONTEXT)pvUser;
|
---|
394 | for (;;)
|
---|
395 | {
|
---|
396 | int rc = RTSemEventWait(pCtx->WaitEvent, RT_INDEFINITE_WAIT);
|
---|
397 | AssertRCBreak(rc);
|
---|
398 |
|
---|
399 | if (ASMAtomicReadU32(&g_enmState) == VIDREC_TERMINATING)
|
---|
400 | break;
|
---|
401 | for (unsigned uScreen = 0; uScreen < pCtx->cScreens; uScreen++)
|
---|
402 | {
|
---|
403 | PVIDEORECSTREAM pStrm = &pCtx->Strm[uScreen];
|
---|
404 | if ( pStrm->fEnabled
|
---|
405 | && ASMAtomicReadBool(&pStrm->fRgbFilled))
|
---|
406 | {
|
---|
407 | rc = videoRecRGBToYUV(pStrm);
|
---|
408 | ASMAtomicWriteBool(&pStrm->fRgbFilled, false);
|
---|
409 | if (RT_SUCCESS(rc))
|
---|
410 | rc = videoRecEncodeAndWrite(pStrm);
|
---|
411 | if (RT_FAILURE(rc))
|
---|
412 | {
|
---|
413 | static unsigned cErrors = 100;
|
---|
414 | if (cErrors > 0)
|
---|
415 | {
|
---|
416 | LogRel(("Error %Rrc encoding / writing video frame\n", rc));
|
---|
417 | cErrors--;
|
---|
418 | }
|
---|
419 | }
|
---|
420 | }
|
---|
421 | }
|
---|
422 | }
|
---|
423 |
|
---|
424 | return VINF_SUCCESS;
|
---|
425 | }
|
---|
426 |
|
---|
427 | /**
|
---|
428 | * VideoRec utility function to create video recording context.
|
---|
429 | *
|
---|
430 | * @returns IPRT status code.
|
---|
431 | * @param ppCtx Video recording context
|
---|
432 | * @param cScreens Number of screens.
|
---|
433 | */
|
---|
434 | int VideoRecContextCreate(PVIDEORECCONTEXT *ppCtx, uint32_t cScreens)
|
---|
435 | {
|
---|
436 | Assert(ASMAtomicReadU32(&g_enmState) == VIDREC_UNINITIALIZED);
|
---|
437 |
|
---|
438 | PVIDEORECCONTEXT pCtx = (PVIDEORECCONTEXT)RTMemAllocZ(RT_OFFSETOF(VIDEORECCONTEXT, Strm[cScreens]));
|
---|
439 | *ppCtx = pCtx;
|
---|
440 | AssertPtrReturn(pCtx, VERR_NO_MEMORY);
|
---|
441 |
|
---|
442 | pCtx->cScreens = cScreens;
|
---|
443 | for (unsigned uScreen = 0; uScreen < cScreens; uScreen++)
|
---|
444 | {
|
---|
445 | /* Since we allocate without using standard c++ new mechanism
|
---|
446 | * it is required to call placement new for correct initialization
|
---|
447 | * of some members */
|
---|
448 | new (&pCtx->Strm[uScreen] + RT_OFFSETOF(VIDEORECSTREAM, Ebml)) WebMWriter();
|
---|
449 | }
|
---|
450 |
|
---|
451 | int rc = RTSemEventCreate(&pCtx->WaitEvent);
|
---|
452 | AssertRCReturn(rc, rc);
|
---|
453 |
|
---|
454 | rc = RTSemEventCreate(&pCtx->TermEvent);
|
---|
455 | AssertRCReturn(rc, rc);
|
---|
456 |
|
---|
457 | rc = RTThreadCreate(&pCtx->Thread, videoRecThread, (void*)pCtx, 0,
|
---|
458 | RTTHREADTYPE_MAIN_WORKER, RTTHREADFLAGS_WAITABLE, "VideoRec");
|
---|
459 | AssertRCReturn(rc, rc);
|
---|
460 |
|
---|
461 | ASMAtomicWriteU32(&g_enmState, VIDREC_IDLE);
|
---|
462 | return VINF_SUCCESS;
|
---|
463 | }
|
---|
464 |
|
---|
465 | /**
|
---|
466 | * VideoRec utility function to initialize video recording context.
|
---|
467 | *
|
---|
468 | * @returns IPRT status code.
|
---|
469 | * @param pCtx Pointer to video recording context to initialize Framebuffer width.
|
---|
470 | * @param uScreeen Screen number.
|
---|
471 | * @param strFile File to save the recorded data
|
---|
472 | * @param uTargetWidth Width of the target image in the video recoriding file (movie)
|
---|
473 | * @param uTargetHeight Height of the target image in video recording file.
|
---|
474 | */
|
---|
475 | int VideoRecStrmInit(PVIDEORECCONTEXT pCtx, uint32_t uScreen, const char *pszFile,
|
---|
476 | uint32_t uWidth, uint32_t uHeight, uint32_t uRate, uint32_t uFps,
|
---|
477 | uint32_t uMaxTime, uint32_t uMaxFileSize, const char *pszOptions)
|
---|
478 | {
|
---|
479 | AssertPtrReturn(pCtx, VERR_INVALID_PARAMETER);
|
---|
480 | AssertReturn(uScreen < pCtx->cScreens, VERR_INVALID_PARAMETER);
|
---|
481 |
|
---|
482 | pCtx->u64MaxTimeStamp = (uMaxTime > 0 ? RTTimeProgramMilliTS() + uMaxTime * 1000 : 0);
|
---|
483 | pCtx->uMaxFileSize = uMaxFileSize;
|
---|
484 |
|
---|
485 | PVIDEORECSTREAM pStrm = &pCtx->Strm[uScreen];
|
---|
486 | pStrm->uTargetWidth = uWidth;
|
---|
487 | pStrm->uTargetHeight = uHeight;
|
---|
488 | pStrm->pu8RgbBuf = (uint8_t *)RTMemAllocZ(uWidth * uHeight * 4);
|
---|
489 | AssertReturn(pStrm->pu8RgbBuf, VERR_NO_MEMORY);
|
---|
490 |
|
---|
491 | pStrm->uEncoderDeadline = 1000000 / uFps;
|
---|
492 |
|
---|
493 | /* Play safe: the file must not exist, overwriting is potentially
|
---|
494 | * hazardous as nothing prevents the user from picking a file name of some
|
---|
495 | * other important file, causing unintentional data loss. */
|
---|
496 |
|
---|
497 | int rc = pStrm->Ebml.create(pszFile);
|
---|
498 | if (RT_FAILURE(rc))
|
---|
499 | {
|
---|
500 | LogRel(("Failed to create the video capture output file \"%s\" (%Rrc)\n", pszFile, rc));
|
---|
501 | return rc;
|
---|
502 | }
|
---|
503 |
|
---|
504 | vpx_codec_err_t rcv = vpx_codec_enc_config_default(DEFAULTCODEC, &pStrm->VpxConfig, 0);
|
---|
505 | if (rcv != VPX_CODEC_OK)
|
---|
506 | {
|
---|
507 | LogFlow(("Failed to configure codec\n", vpx_codec_err_to_string(rcv)));
|
---|
508 | return VERR_INVALID_PARAMETER;
|
---|
509 | }
|
---|
510 |
|
---|
511 | com::Utf8Str options(pszOptions);
|
---|
512 | size_t pos = 0;
|
---|
513 |
|
---|
514 | do {
|
---|
515 |
|
---|
516 | com::Utf8Str key, value;
|
---|
517 | pos = options.parseKeyValue(key, value, pos);
|
---|
518 |
|
---|
519 | if (key == "quality")
|
---|
520 | {
|
---|
521 | if (value == "realtime")
|
---|
522 | {
|
---|
523 | pStrm->uEncoderDeadline = VPX_DL_REALTIME;
|
---|
524 | }
|
---|
525 | else if (value == "good")
|
---|
526 | {
|
---|
527 | pStrm->uEncoderDeadline = 1000000 / uFps;
|
---|
528 | }
|
---|
529 | else if (value == "best")
|
---|
530 | {
|
---|
531 | pStrm->uEncoderDeadline = VPX_DL_BEST_QUALITY;
|
---|
532 | }
|
---|
533 | else
|
---|
534 | {
|
---|
535 | LogRel(("Settings quality deadline to = %s\n", value.c_str()));
|
---|
536 | pStrm->uEncoderDeadline = value.toUInt32();
|
---|
537 | }
|
---|
538 | }
|
---|
539 | else LogRel(("Getting unknown option: %s=%s\n", key.c_str(), value.c_str()));
|
---|
540 |
|
---|
541 | } while(pos != com::Utf8Str::npos);
|
---|
542 |
|
---|
543 | /* target bitrate in kilobits per second */
|
---|
544 | pStrm->VpxConfig.rc_target_bitrate = uRate;
|
---|
545 | /* frame width */
|
---|
546 | pStrm->VpxConfig.g_w = uWidth;
|
---|
547 | /* frame height */
|
---|
548 | pStrm->VpxConfig.g_h = uHeight;
|
---|
549 | /* 1ms per frame */
|
---|
550 | pStrm->VpxConfig.g_timebase.num = 1;
|
---|
551 | pStrm->VpxConfig.g_timebase.den = 1000;
|
---|
552 | /* disable multithreading */
|
---|
553 | pStrm->VpxConfig.g_threads = 0;
|
---|
554 |
|
---|
555 | pStrm->uDelay = 1000 / uFps;
|
---|
556 |
|
---|
557 | struct vpx_rational arg_framerate = { 30, 1 };
|
---|
558 | rc = pStrm->Ebml.writeHeader(&pStrm->VpxConfig, &arg_framerate);
|
---|
559 | AssertRCReturn(rc, rc);
|
---|
560 |
|
---|
561 | /* Initialize codec */
|
---|
562 | rcv = vpx_codec_enc_init(&pStrm->VpxCodec, DEFAULTCODEC, &pStrm->VpxConfig, 0);
|
---|
563 | if (rcv != VPX_CODEC_OK)
|
---|
564 | {
|
---|
565 | LogFlow(("Failed to initialize VP8 encoder %s", vpx_codec_err_to_string(rcv)));
|
---|
566 | return VERR_INVALID_PARAMETER;
|
---|
567 | }
|
---|
568 |
|
---|
569 | if (!vpx_img_alloc(&pStrm->VpxRawImage, VPX_IMG_FMT_I420, uWidth, uHeight, 1))
|
---|
570 | {
|
---|
571 | LogFlow(("Failed to allocate image %dx%d", uWidth, uHeight));
|
---|
572 | return VERR_NO_MEMORY;
|
---|
573 | }
|
---|
574 | pStrm->pu8YuvBuf = pStrm->VpxRawImage.planes[0];
|
---|
575 |
|
---|
576 | pCtx->fEnabled = true;
|
---|
577 | pStrm->fEnabled = true;
|
---|
578 | return VINF_SUCCESS;
|
---|
579 | }
|
---|
580 |
|
---|
581 | /**
|
---|
582 | * VideoRec utility function to close the video recording context.
|
---|
583 | *
|
---|
584 | * @param pCtx Pointer to video recording context.
|
---|
585 | */
|
---|
586 | void VideoRecContextClose(PVIDEORECCONTEXT pCtx)
|
---|
587 | {
|
---|
588 | if (!pCtx)
|
---|
589 | return;
|
---|
590 |
|
---|
591 | uint32_t enmState = VIDREC_IDLE;
|
---|
592 | for (;;)
|
---|
593 | {
|
---|
594 | if (ASMAtomicCmpXchgExU32(&g_enmState, VIDREC_TERMINATING, enmState, &enmState))
|
---|
595 | break;
|
---|
596 | if (enmState == VIDREC_UNINITIALIZED)
|
---|
597 | return;
|
---|
598 | }
|
---|
599 | if (enmState == VIDREC_COPYING)
|
---|
600 | {
|
---|
601 | int rc = RTSemEventWait(pCtx->TermEvent, RT_INDEFINITE_WAIT);
|
---|
602 | AssertRC(rc);
|
---|
603 | }
|
---|
604 |
|
---|
605 | RTSemEventSignal(pCtx->WaitEvent);
|
---|
606 | RTThreadWait(pCtx->Thread, 10000, NULL);
|
---|
607 | RTSemEventDestroy(pCtx->WaitEvent);
|
---|
608 | RTSemEventDestroy(pCtx->TermEvent);
|
---|
609 |
|
---|
610 | for (unsigned uScreen = 0; uScreen < pCtx->cScreens; uScreen++)
|
---|
611 | {
|
---|
612 | PVIDEORECSTREAM pStrm = &pCtx->Strm[uScreen];
|
---|
613 | if (pStrm->fEnabled)
|
---|
614 | {
|
---|
615 | int rc = pStrm->Ebml.writeFooter(0);
|
---|
616 | AssertRC(rc);
|
---|
617 | pStrm->Ebml.close();
|
---|
618 | vpx_img_free(&pStrm->VpxRawImage);
|
---|
619 | vpx_codec_err_t rcv = vpx_codec_destroy(&pStrm->VpxCodec);
|
---|
620 | Assert(rcv == VPX_CODEC_OK);
|
---|
621 | RTMemFree(pStrm->pu8RgbBuf);
|
---|
622 | pStrm->pu8RgbBuf = NULL;
|
---|
623 | }
|
---|
624 | /* explicit deinitilization of Ebml object since it was create using placement new */
|
---|
625 | pStrm->Ebml.~WebMWriter();
|
---|
626 | }
|
---|
627 |
|
---|
628 | RTMemFree(pCtx);
|
---|
629 |
|
---|
630 | ASMAtomicWriteU32(&g_enmState, VIDREC_UNINITIALIZED);
|
---|
631 | }
|
---|
632 |
|
---|
633 | /**
|
---|
634 | * VideoRec utility function to check if recording is enabled.
|
---|
635 | *
|
---|
636 | * @returns true if recording is enabled
|
---|
637 | * @param pCtx Pointer to video recording context.
|
---|
638 | */
|
---|
639 | bool VideoRecIsEnabled(PVIDEORECCONTEXT pCtx)
|
---|
640 | {
|
---|
641 | uint32_t enmState = ASMAtomicReadU32(&g_enmState);
|
---|
642 | return ( enmState == VIDREC_IDLE
|
---|
643 | || enmState == VIDREC_COPYING);
|
---|
644 | }
|
---|
645 |
|
---|
646 | /**
|
---|
647 | * VideoRec utility function to check if recording engine is ready to accept a new frame
|
---|
648 | * for the given screen.
|
---|
649 | *
|
---|
650 | * @returns true if recording engine is ready
|
---|
651 | * @param pCtx Pointer to video recording context.
|
---|
652 | * @param uScreen screen id.
|
---|
653 | * @param u64TimeStamp current time stamp
|
---|
654 | */
|
---|
655 | bool VideoRecIsReady(PVIDEORECCONTEXT pCtx, uint32_t uScreen, uint64_t u64TimeStamp)
|
---|
656 | {
|
---|
657 | uint32_t enmState = ASMAtomicReadU32(&g_enmState);
|
---|
658 | if (enmState != VIDREC_IDLE)
|
---|
659 | return false;
|
---|
660 |
|
---|
661 | PVIDEORECSTREAM pStrm = &pCtx->Strm[uScreen];
|
---|
662 | if (!pStrm->fEnabled)
|
---|
663 | return false;
|
---|
664 |
|
---|
665 | if (u64TimeStamp < pStrm->u64LastTimeStamp + pStrm->uDelay)
|
---|
666 | return false;
|
---|
667 |
|
---|
668 | if (ASMAtomicReadBool(&pStrm->fRgbFilled))
|
---|
669 | return false;
|
---|
670 |
|
---|
671 | return true;
|
---|
672 | }
|
---|
673 |
|
---|
674 | /**
|
---|
675 | * VideoRec utility function to check if the file size has reached
|
---|
676 | * specified limits (if any).
|
---|
677 | *
|
---|
678 | * @returns true if any limit has been reached
|
---|
679 | * @param pCtx Pointer to video recording context
|
---|
680 | * @param uScreen screen id
|
---|
681 | * @param u64TimeStamp current time stamp
|
---|
682 | */
|
---|
683 |
|
---|
684 | bool VideoRecIsFull(PVIDEORECCONTEXT pCtx, uint32_t uScreen, uint64_t u64TimeStamp)
|
---|
685 | {
|
---|
686 | PVIDEORECSTREAM pStrm = &pCtx->Strm[uScreen];
|
---|
687 | if(!pStrm->fEnabled)
|
---|
688 | return false;
|
---|
689 |
|
---|
690 | if(pCtx->u64MaxTimeStamp > 0 && u64TimeStamp >= pCtx->u64MaxTimeStamp)
|
---|
691 | return true;
|
---|
692 |
|
---|
693 | if (pCtx->uMaxFileSize > 0)
|
---|
694 | {
|
---|
695 | uint64_t sizeInMB = pStrm->Ebml.getFileSize() / (1024 * 1024);
|
---|
696 | if(sizeInMB >= pCtx->uMaxFileSize)
|
---|
697 | return true;
|
---|
698 | }
|
---|
699 | /* Check for available free disk space */
|
---|
700 | if (pStrm->Ebml.getAvailableSpace() < 0x100000)
|
---|
701 | {
|
---|
702 | LogRel(("Storage has not enough free space available, stopping video capture\n"));
|
---|
703 | return true;
|
---|
704 | }
|
---|
705 |
|
---|
706 | return false;
|
---|
707 | }
|
---|
708 |
|
---|
709 | /**
|
---|
710 | * VideoRec utility function to encode the source image and write the encoded
|
---|
711 | * image to target file.
|
---|
712 | *
|
---|
713 | * @returns IPRT status code.
|
---|
714 | * @param pCtx Pointer to video recording context.
|
---|
715 | * @param uSourceWidth Width of the source image.
|
---|
716 | * @param uSourceHeight Height of the source image.
|
---|
717 | */
|
---|
718 | static int videoRecEncodeAndWrite(PVIDEORECSTREAM pStrm)
|
---|
719 | {
|
---|
720 | /* presentation time stamp */
|
---|
721 | vpx_codec_pts_t pts = pStrm->u64TimeStamp;
|
---|
722 | vpx_codec_err_t rcv = vpx_codec_encode(&pStrm->VpxCodec,
|
---|
723 | &pStrm->VpxRawImage,
|
---|
724 | pts /* time stamp */,
|
---|
725 | 10 /* how long to show this frame */,
|
---|
726 | 0 /* flags */,
|
---|
727 | pStrm->uEncoderDeadline /* quality setting */);
|
---|
728 | if (rcv != VPX_CODEC_OK)
|
---|
729 | {
|
---|
730 | LogFlow(("Failed to encode:%s\n", vpx_codec_err_to_string(rcv)));
|
---|
731 | return VERR_GENERAL_FAILURE;
|
---|
732 | }
|
---|
733 |
|
---|
734 | vpx_codec_iter_t iter = NULL;
|
---|
735 | int rc = VERR_NO_DATA;
|
---|
736 | for (;;)
|
---|
737 | {
|
---|
738 | const vpx_codec_cx_pkt_t *pkt = vpx_codec_get_cx_data(&pStrm->VpxCodec, &iter);
|
---|
739 | if (!pkt)
|
---|
740 | break;
|
---|
741 | switch (pkt->kind)
|
---|
742 | {
|
---|
743 | case VPX_CODEC_CX_FRAME_PKT:
|
---|
744 | rc = pStrm->Ebml.writeBlock(&pStrm->VpxConfig, pkt);
|
---|
745 | break;
|
---|
746 | default:
|
---|
747 | LogFlow(("Unexpected CODEC Packet.\n"));
|
---|
748 | break;
|
---|
749 | }
|
---|
750 | }
|
---|
751 |
|
---|
752 | pStrm->cFrame++;
|
---|
753 | return rc;
|
---|
754 | }
|
---|
755 |
|
---|
756 | /**
|
---|
757 | * VideoRec utility function to convert RGB to YUV.
|
---|
758 | *
|
---|
759 | * @returns IPRT status code.
|
---|
760 | * @param pCtx Pointer to video recording context.
|
---|
761 | */
|
---|
762 | static int videoRecRGBToYUV(PVIDEORECSTREAM pStrm)
|
---|
763 | {
|
---|
764 | switch (pStrm->u32PixelFormat)
|
---|
765 | {
|
---|
766 | case VPX_IMG_FMT_RGB32:
|
---|
767 | LogFlow(("32 bit\n"));
|
---|
768 | if (!colorConvWriteYUV420p<ColorConvBGRA32Iter>(pStrm->uTargetWidth,
|
---|
769 | pStrm->uTargetHeight,
|
---|
770 | pStrm->pu8YuvBuf,
|
---|
771 | pStrm->pu8RgbBuf))
|
---|
772 | return VERR_GENERAL_FAILURE;
|
---|
773 | break;
|
---|
774 | case VPX_IMG_FMT_RGB24:
|
---|
775 | LogFlow(("24 bit\n"));
|
---|
776 | if (!colorConvWriteYUV420p<ColorConvBGR24Iter>(pStrm->uTargetWidth,
|
---|
777 | pStrm->uTargetHeight,
|
---|
778 | pStrm->pu8YuvBuf,
|
---|
779 | pStrm->pu8RgbBuf))
|
---|
780 | return VERR_GENERAL_FAILURE;
|
---|
781 | break;
|
---|
782 | case VPX_IMG_FMT_RGB565:
|
---|
783 | LogFlow(("565 bit\n"));
|
---|
784 | if (!colorConvWriteYUV420p<ColorConvBGR565Iter>(pStrm->uTargetWidth,
|
---|
785 | pStrm->uTargetHeight,
|
---|
786 | pStrm->pu8YuvBuf,
|
---|
787 | pStrm->pu8RgbBuf))
|
---|
788 | return VERR_GENERAL_FAILURE;
|
---|
789 | break;
|
---|
790 | default:
|
---|
791 | return VERR_GENERAL_FAILURE;
|
---|
792 | }
|
---|
793 | return VINF_SUCCESS;
|
---|
794 | }
|
---|
795 |
|
---|
796 | /**
|
---|
797 | * VideoRec utility function to copy a source image (FrameBuf) to the intermediate
|
---|
798 | * RGB buffer. This function is executed only once per time.
|
---|
799 | *
|
---|
800 | * @thread EMT
|
---|
801 | *
|
---|
802 | * @returns IPRT status code.
|
---|
803 | * @param pCtx Pointer to the video recording context.
|
---|
804 | * @param uScreen Screen number.
|
---|
805 | * @param x Starting x coordinate of the source buffer (Framebuffer).
|
---|
806 | * @param y Starting y coordinate of the source buffer (Framebuffer).
|
---|
807 | * @param uPixelFormat Pixel Format.
|
---|
808 | * @param uBitsPerPixel Bits Per Pixel
|
---|
809 | * @param uBytesPerLine Bytes per source scanlineName.
|
---|
810 | * @param uSourceWidth Width of the source image (framebuffer).
|
---|
811 | * @param uSourceHeight Height of the source image (framebuffer).
|
---|
812 | * @param pu8BufAddr Pointer to source image(framebuffer).
|
---|
813 | * @param u64TimeStamp Time stamp (milliseconds).
|
---|
814 | */
|
---|
815 | int VideoRecCopyToIntBuf(PVIDEORECCONTEXT pCtx, uint32_t uScreen, uint32_t x, uint32_t y,
|
---|
816 | uint32_t uPixelFormat, uint32_t uBitsPerPixel, uint32_t uBytesPerLine,
|
---|
817 | uint32_t uSourceWidth, uint32_t uSourceHeight, uint8_t *pu8BufAddr,
|
---|
818 | uint64_t u64TimeStamp)
|
---|
819 | {
|
---|
820 | /* Do not execute during termination and guard against termination */
|
---|
821 | if (!ASMAtomicCmpXchgU32(&g_enmState, VIDREC_COPYING, VIDREC_IDLE))
|
---|
822 | return VINF_TRY_AGAIN;
|
---|
823 |
|
---|
824 | int rc = VINF_SUCCESS;
|
---|
825 | do
|
---|
826 | {
|
---|
827 | AssertPtrBreakStmt(pu8BufAddr, rc = VERR_INVALID_PARAMETER);
|
---|
828 | AssertBreakStmt(uSourceWidth, rc = VERR_INVALID_PARAMETER);
|
---|
829 | AssertBreakStmt(uSourceHeight, rc = VERR_INVALID_PARAMETER);
|
---|
830 | AssertBreakStmt(uScreen < pCtx->cScreens, rc = VERR_INVALID_PARAMETER);
|
---|
831 |
|
---|
832 | PVIDEORECSTREAM pStrm = &pCtx->Strm[uScreen];
|
---|
833 | if (!pStrm->fEnabled)
|
---|
834 | {
|
---|
835 | rc = VINF_TRY_AGAIN; /* not (yet) enabled */
|
---|
836 | break;
|
---|
837 | }
|
---|
838 | if (u64TimeStamp < pStrm->u64LastTimeStamp + pStrm->uDelay)
|
---|
839 | {
|
---|
840 | rc = VINF_TRY_AGAIN; /* respect maximum frames per second */
|
---|
841 | break;
|
---|
842 | }
|
---|
843 | if (ASMAtomicReadBool(&pStrm->fRgbFilled))
|
---|
844 | {
|
---|
845 | rc = VERR_TRY_AGAIN; /* previous frame not yet encoded */
|
---|
846 | break;
|
---|
847 | }
|
---|
848 |
|
---|
849 | pStrm->u64LastTimeStamp = u64TimeStamp;
|
---|
850 |
|
---|
851 | int xDiff = ((int)pStrm->uTargetWidth - (int)uSourceWidth) / 2;
|
---|
852 | uint32_t w = uSourceWidth;
|
---|
853 | if ((int)w + xDiff + (int)x <= 0) /* nothing visible */
|
---|
854 | {
|
---|
855 | rc = VERR_INVALID_PARAMETER;
|
---|
856 | break;
|
---|
857 | }
|
---|
858 |
|
---|
859 | uint32_t destX;
|
---|
860 | if ((int)x < -xDiff)
|
---|
861 | {
|
---|
862 | w += xDiff + x;
|
---|
863 | x = -xDiff;
|
---|
864 | destX = 0;
|
---|
865 | }
|
---|
866 | else
|
---|
867 | destX = x + xDiff;
|
---|
868 |
|
---|
869 | uint32_t h = uSourceHeight;
|
---|
870 | int yDiff = ((int)pStrm->uTargetHeight - (int)uSourceHeight) / 2;
|
---|
871 | if ((int)h + yDiff + (int)y <= 0) /* nothing visible */
|
---|
872 | {
|
---|
873 | rc = VERR_INVALID_PARAMETER;
|
---|
874 | break;
|
---|
875 | }
|
---|
876 |
|
---|
877 | uint32_t destY;
|
---|
878 | if ((int)y < -yDiff)
|
---|
879 | {
|
---|
880 | h += yDiff + (int)y;
|
---|
881 | y = -yDiff;
|
---|
882 | destY = 0;
|
---|
883 | }
|
---|
884 | else
|
---|
885 | destY = y + yDiff;
|
---|
886 |
|
---|
887 | if ( destX > pStrm->uTargetWidth
|
---|
888 | || destY > pStrm->uTargetHeight)
|
---|
889 | {
|
---|
890 | rc = VERR_INVALID_PARAMETER; /* nothing visible */
|
---|
891 | break;
|
---|
892 | }
|
---|
893 |
|
---|
894 | if (destX + w > pStrm->uTargetWidth)
|
---|
895 | w = pStrm->uTargetWidth - destX;
|
---|
896 |
|
---|
897 | if (destY + h > pStrm->uTargetHeight)
|
---|
898 | h = pStrm->uTargetHeight - destY;
|
---|
899 |
|
---|
900 | /* Calculate bytes per pixel */
|
---|
901 | uint32_t bpp = 1;
|
---|
902 | if (uPixelFormat == BitmapFormat_BGR)
|
---|
903 | {
|
---|
904 | switch (uBitsPerPixel)
|
---|
905 | {
|
---|
906 | case 32:
|
---|
907 | pStrm->u32PixelFormat = VPX_IMG_FMT_RGB32;
|
---|
908 | bpp = 4;
|
---|
909 | break;
|
---|
910 | case 24:
|
---|
911 | pStrm->u32PixelFormat = VPX_IMG_FMT_RGB24;
|
---|
912 | bpp = 3;
|
---|
913 | break;
|
---|
914 | case 16:
|
---|
915 | pStrm->u32PixelFormat = VPX_IMG_FMT_RGB565;
|
---|
916 | bpp = 2;
|
---|
917 | break;
|
---|
918 | default:
|
---|
919 | AssertMsgFailed(("Unknown color depth! mBitsPerPixel=%d\n", uBitsPerPixel));
|
---|
920 | break;
|
---|
921 | }
|
---|
922 | }
|
---|
923 | else
|
---|
924 | AssertMsgFailed(("Unknown pixel format! mPixelFormat=%d\n", uPixelFormat));
|
---|
925 |
|
---|
926 | /* One of the dimensions of the current frame is smaller than before so
|
---|
927 | * clear the entire buffer to prevent artifacts from the previous frame */
|
---|
928 | if ( uSourceWidth < pStrm->uLastSourceWidth
|
---|
929 | || uSourceHeight < pStrm->uLastSourceHeight)
|
---|
930 | memset(pStrm->pu8RgbBuf, 0, pStrm->uTargetWidth * pStrm->uTargetHeight * 4);
|
---|
931 |
|
---|
932 | pStrm->uLastSourceWidth = uSourceWidth;
|
---|
933 | pStrm->uLastSourceHeight = uSourceHeight;
|
---|
934 |
|
---|
935 | /* Calculate start offset in source and destination buffers */
|
---|
936 | uint32_t offSrc = y * uBytesPerLine + x * bpp;
|
---|
937 | uint32_t offDst = (destY * pStrm->uTargetWidth + destX) * bpp;
|
---|
938 | /* do the copy */
|
---|
939 | for (unsigned int i = 0; i < h; i++)
|
---|
940 | {
|
---|
941 | /* Overflow check */
|
---|
942 | Assert(offSrc + w * bpp <= uSourceHeight * uBytesPerLine);
|
---|
943 | Assert(offDst + w * bpp <= pStrm->uTargetHeight * pStrm->uTargetWidth * bpp);
|
---|
944 | memcpy(pStrm->pu8RgbBuf + offDst, pu8BufAddr + offSrc, w * bpp);
|
---|
945 | offSrc += uBytesPerLine;
|
---|
946 | offDst += pStrm->uTargetWidth * bpp;
|
---|
947 | }
|
---|
948 |
|
---|
949 | pStrm->u64TimeStamp = u64TimeStamp;
|
---|
950 |
|
---|
951 | ASMAtomicWriteBool(&pStrm->fRgbFilled, true);
|
---|
952 | RTSemEventSignal(pCtx->WaitEvent);
|
---|
953 | } while (0);
|
---|
954 |
|
---|
955 | if (!ASMAtomicCmpXchgU32(&g_enmState, VIDREC_IDLE, VIDREC_COPYING))
|
---|
956 | {
|
---|
957 | rc = RTSemEventSignal(pCtx->TermEvent);
|
---|
958 | AssertRC(rc);
|
---|
959 | }
|
---|
960 |
|
---|
961 | return rc;
|
---|
962 | }
|
---|