VirtualBox

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

Last change on this file since 73768 was 70644, checked in by vboxsync, 6 years ago

Audio/Main: More code needed for attaching / detaching host backends at runtime.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.5 KB
Line 
1/* $Id: DrvAudioVideoRec.h 70644 2018-01-19 12:20:33Z 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/vmm/pdmdrv.h>
23#include <VBox/vmm/pdmifs.h>
24
25#include "AudioDriver.h"
26
27using namespace com;
28
29class Console;
30
31class AudioVideoRec : public AudioDriver
32{
33
34public:
35
36 AudioVideoRec(Console *pConsole);
37 virtual ~AudioVideoRec(void);
38
39public:
40
41 static const PDMDRVREG DrvReg;
42
43public:
44
45 static DECLCALLBACK(int) drvConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfg, uint32_t fFlags);
46 static DECLCALLBACK(void) drvDestruct(PPDMDRVINS pDrvIns);
47 static DECLCALLBACK(int) drvAttach(PPDMDRVINS pDrvIns, uint32_t fFlags);
48 static DECLCALLBACK(void) drvDetach(PPDMDRVINS pDrvIns, uint32_t fFlags);
49
50private:
51
52 int configureDriver(PCFGMNODE pLunCfg);
53
54 /** Pointer to the associated video recording audio driver. */
55 struct DRVAUDIOVIDEOREC *mpDrv;
56};
57
58#endif /* !____H_DRVAUDIOVIDEOREC */
59
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use