1 | /* $Id: DrvAudioRec.h 75361 2018-11-09 12:56:40Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VirtualBox driver interface video recording audio backend.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2017-2018 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_DRVAUDIORECORDING
|
---|
19 | #define ____H_DRVAUDIORECORDING
|
---|
20 |
|
---|
21 | #include <VBox/com/ptr.h>
|
---|
22 | #include <VBox/settings.h>
|
---|
23 | #include <VBox/vmm/pdmdrv.h>
|
---|
24 | #include <VBox/vmm/pdmifs.h>
|
---|
25 |
|
---|
26 | #include "AudioDriver.h"
|
---|
27 | #include "Recording.h"
|
---|
28 |
|
---|
29 | using namespace com;
|
---|
30 |
|
---|
31 | class Console;
|
---|
32 |
|
---|
33 | class AudioVideoRec : public AudioDriver
|
---|
34 | {
|
---|
35 |
|
---|
36 | public:
|
---|
37 |
|
---|
38 | AudioVideoRec(Console *pConsole);
|
---|
39 | virtual ~AudioVideoRec(void);
|
---|
40 |
|
---|
41 | public:
|
---|
42 |
|
---|
43 | static const PDMDRVREG DrvReg;
|
---|
44 |
|
---|
45 | public:
|
---|
46 |
|
---|
47 | int applyConfiguration(const settings::RecordingSettings &Settings);
|
---|
48 |
|
---|
49 | public:
|
---|
50 |
|
---|
51 | static DECLCALLBACK(int) drvConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfg, uint32_t fFlags);
|
---|
52 | static DECLCALLBACK(void) drvDestruct(PPDMDRVINS pDrvIns);
|
---|
53 | static DECLCALLBACK(int) drvAttach(PPDMDRVINS pDrvIns, uint32_t fFlags);
|
---|
54 | static DECLCALLBACK(void) drvDetach(PPDMDRVINS pDrvIns, uint32_t fFlags);
|
---|
55 |
|
---|
56 | private:
|
---|
57 |
|
---|
58 | int configureDriver(PCFGMNODE pLunCfg);
|
---|
59 |
|
---|
60 | /** Pointer to the associated video recording audio driver. */
|
---|
61 | struct DRVAUDIORECORDING *mpDrv;
|
---|
62 | /** Capturing configuration used for configuring the driver. */
|
---|
63 | struct settings::RecordingSettings mVideoRecCfg;
|
---|
64 | };
|
---|
65 |
|
---|
66 | #endif /* !____H_DRVAUDIORECORDING */
|
---|
67 |
|
---|