VirtualBox

source: vbox/trunk/src/VBox/Main/include/DrvAudioVideoRec.h@ 75309

Last change on this file since 75309 was 75254, checked in by vboxsync, 6 years ago

Capturing: Build fix.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.8 KB
Line 
1/* $Id: DrvAudioVideoRec.h 75254 2018-11-05 18:35:21Z 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_DRVAUDIOVIDEOREC
19#define ____H_DRVAUDIOVIDEOREC
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 "VideoRec.h"
28
29using namespace com;
30
31class Console;
32
33class AudioVideoRec : public AudioDriver
34{
35
36public:
37
38 AudioVideoRec(Console *pConsole);
39 virtual ~AudioVideoRec(void);
40
41public:
42
43 static const PDMDRVREG DrvReg;
44
45public:
46
47 int applyConfiguration(const settings::CaptureSettings &Settings);
48
49public:
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
56private:
57
58 int configureDriver(PCFGMNODE pLunCfg);
59
60 /** Pointer to the associated video recording audio driver. */
61 struct DRVAUDIOVIDEOREC *mpDrv;
62 /** Capturing configuration used for configuring the driver. */
63 struct settings::CaptureSettings mVideoRecCfg;
64};
65
66#endif /* !____H_DRVAUDIOVIDEOREC */
67
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette