VirtualBox

source: vbox/trunk/src/VBox/Main/src-client/VideoRec.h@ 70772

Last change on this file since 70772 was 70035, checked in by vboxsync, 6 years ago

Main/VideoRec: Made the audio driver's LUN assignment more flexible by keeping the initial LUN# around when (re-)attaching the driver.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
  • Property svn:mergeinfo set to (toggle deleted branches)
    /branches/VBox-3.0/src/VBox/Frontends/VBoxHeadless/VideoCapture/EncodeAndWrite.h58652,​70973
    /branches/VBox-3.2/src/VBox/Frontends/VBoxHeadless/VideoCapture/EncodeAndWrite.h66309,​66318
    /branches/VBox-4.0/src/VBox/Frontends/VBoxHeadless/VideoCapture/EncodeAndWrite.h70873
    /branches/VBox-4.1/src/VBox/Frontends/VBoxHeadless/VideoCapture/EncodeAndWrite.h74233
    /branches/VBox-4.2/src/VBox/Main/src-client/VideoRec.h91503-91504,​91506-91508,​91510,​91514-91515,​91521
    /branches/VBox-4.3/src/VBox/Main/src-client/VideoRec.h91223
    /branches/VBox-4.3/trunk/src/VBox/Main/src-client/VideoRec.h91223
    /branches/dsen/gui/src/VBox/Frontends/VBoxHeadless/VideoCapture/EncodeAndWrite.h79076-79078,​79089,​79109-79110,​79112-79113,​79127-79130,​79134,​79141,​79151,​79155,​79157-79159,​79193,​79197
    /branches/dsen/gui2/src/VBox/Frontends/VBoxHeadless/VideoCapture/EncodeAndWrite.h79224,​79228,​79233,​79235,​79258,​79262-79263,​79273,​79341,​79345,​79354,​79357,​79387-79388,​79559-79569,​79572-79573,​79578,​79581-79582,​79590-79591,​79598-79599,​79602-79603,​79605-79606,​79632,​79635,​79637,​79644
    /branches/dsen/gui3/src/VBox/Frontends/VBoxHeadless/VideoCapture/EncodeAndWrite.h79645-79692
File size: 5.6 KB
Line 
1/* $Id: VideoRec.h 70035 2017-12-08 15:50:01Z vboxsync $ */
2/** @file
3 * Encodes the screen content in VPX format.
4 */
5
6/*
7 * Copyright (C) 2012-2017 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#ifndef ____H_VIDEOREC
19#define ____H_VIDEOREC
20
21#include <VBox/com/array.h>
22
23struct VIDEORECCONTEXT;
24typedef struct VIDEORECCONTEXT *PVIDEORECCONTEXT;
25
26struct VIDEORECSTREAM;
27typedef struct VIDEORECSTREAM *PVIDEORECSTREAM;
28
29/**
30 * Enumeration for video recording destinations.
31 */
32typedef enum VIDEORECDEST
33{
34 /** Invalid destination, do not use. */
35 VIDEORECDEST_INVALID = 0,
36 /** Write to a file. */
37 VIDEORECDEST_FILE = 1
38} VIDEORECDEST;
39
40/**
41 * Enumeration for definining a video / audio
42 * profile setting.
43 */
44typedef enum VIDEORECPROFILE
45{
46 VIDEORECPROFILE_NONE = 0,
47 VIDEORECPROFILE_LOW,
48 VIDEORECPROFILE_MEDIUM,
49 VIDEORECPROFILE_HIGH,
50 VIDEORECPROFILE_BEST,
51 VIDEORECPROFILE_REALTIME
52} VIDEORECPROFILE;
53
54/**
55 * Structure for keeping a video recording configuration.
56 */
57typedef struct VIDEORECCFG
58{
59 VIDEORECCFG(void)
60 : fEnabled(false)
61 , enmDst(VIDEORECDEST_INVALID)
62 , uMaxTimeS(0)
63 {
64#ifdef VBOX_WITH_AUDIO_VIDEOREC
65 RT_ZERO(Audio);
66#endif
67 RT_ZERO(Video);
68 }
69
70 /** Whether recording is enabled or not (as a whole). */
71 bool fEnabled;
72 /** Array of all screens containing whether they're enabled
73 * for recording or not. */
74 com::SafeArray<BOOL> aScreens;
75 /** Destination where to write the stream to. */
76 VIDEORECDEST enmDst;
77
78 /**
79 * Structure for keeping recording parameters if
80 * destination is a file.
81 */
82 struct
83 {
84 /** File name (as absolute path). */
85 com::Bstr strName;
86 /** Maximum file size (in MB) to record. */
87 uint32_t uMaxSizeMB;
88 } File;
89
90#ifdef VBOX_WITH_AUDIO_VIDEOREC
91 /**
92 * Structure for keeping the audio recording parameters.
93 */
94 struct
95 {
96 /** Whether audio recording is enabled or not. */
97 bool fEnabled;
98 /** The device LUN the audio driver is attached / configured to. */
99 unsigned uLUN;
100 /** Hertz (Hz) rate. */
101 uint16_t uHz;
102 /** Bits per sample. */
103 uint8_t cBits;
104 /** Number of audio channels. */
105 uint8_t cChannels;
106 /** Audio profile which is being used. */
107 VIDEORECPROFILE enmProfile;
108 } Audio;
109#endif
110
111 /**
112 * Structure for keeping the video recording parameters.
113 */
114 struct
115 {
116 /** Whether video recording is enabled or not. */
117 bool fEnabled;
118 /** Target width (in pixels). */
119 uint32_t uWidth;
120 /** Target height (in pixels). */
121 uint32_t uHeight;
122 /** Target encoding rate. */
123 uint32_t uRate;
124 /** Target FPS. */
125 uint32_t uFPS;
126
127#ifdef VBOX_WITH_LIBVPX
128 union
129 {
130 struct
131 {
132 /** Encoder deadline. */
133 unsigned int uEncoderDeadline;
134 } VPX;
135 } Codec;
136#endif
137
138 } Video;
139 /** Maximum time (in s) to record.
140 * Specify 0 to disable this check. */
141 uint32_t uMaxTimeS;
142
143 VIDEORECCFG& operator=(const VIDEORECCFG &that)
144 {
145 fEnabled = that.fEnabled;
146
147 aScreens.resize(that.aScreens.size());
148 for (size_t i = 0; i < that.aScreens.size(); ++i)
149 aScreens[i] = that.aScreens[i];
150
151 enmDst = that.enmDst;
152
153 File.strName = that.File.strName;
154 File.uMaxSizeMB = that.File.uMaxSizeMB;
155#ifdef VBOX_WITH_AUDIO_VIDEOREC
156 Audio = that.Audio;
157#endif
158 Video = that.Video;
159 uMaxTimeS = that.uMaxTimeS;
160 return *this;
161 }
162
163} VIDEORECCFG, *PVIDEORECCFG;
164
165/** Stores video recording features. */
166typedef uint32_t VIDEORECFEATURES;
167
168/** Video recording is disabled completely. */
169#define VIDEORECFEATURE_NONE 0
170/** Capturing video is enabled. */
171#define VIDEORECFEATURE_VIDEO RT_BIT(0)
172/** Capturing audio is enabled. */
173#define VIDEORECFEATURE_AUDIO RT_BIT(1)
174
175int VideoRecContextCreate(uint32_t cScreens, PVIDEORECCFG pVideoRecCfg, PVIDEORECCONTEXT *ppCtx);
176int VideoRecContextDestroy(PVIDEORECCONTEXT pCtx);
177
178int VideoRecStreamInit(PVIDEORECCONTEXT pCtx, uint32_t uScreen);
179int VideoRecStreamUninit(PVIDEORECCONTEXT pCtx, uint32_t uScreen);
180
181VIDEORECFEATURES VideoRecGetEnabled(PVIDEORECCFG pCfg);
182
183int VideoRecSendAudioFrame(PVIDEORECCONTEXT pCtx, const void *pvData, size_t cbData, uint64_t uTimestampMs);
184int VideoRecSendVideoFrame(PVIDEORECCONTEXT pCtx, uint32_t uScreen,
185 uint32_t x, uint32_t y, uint32_t uPixelFormat, uint32_t uBPP,
186 uint32_t uBytesPerLine, uint32_t uSrcWidth, uint32_t uSrcHeight,
187 uint8_t *puSrcData, uint64_t uTimeStampMs);
188bool VideoRecIsReady(PVIDEORECCONTEXT pCtx, uint32_t uScreen, uint64_t uTimeStampMs);
189bool VideoRecIsActive(PVIDEORECCONTEXT pCtx);
190bool VideoRecIsLimitReached(PVIDEORECCONTEXT pCtx, uint32_t uScreen, uint64_t tsNowMs);
191
192#endif /* !____H_VIDEOREC */
193
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use