VirtualBox

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

Last change on this file since 65162 was 65162, checked in by vboxsync, 8 years ago

Audio/Main: Some (ground) work for audio support for video recording.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.3 KB
Line 
1/* $Id: DrvAudioVideoRec.h 65162 2017-01-05 17:26:48Z vboxsync $ */
2/** @file
3 * VirtualBox driver interface to video recording backend.
4 */
5
6/*
7 * Copyright (C) 2014-2016 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
25class Console;
26
27class AudioVideoRec
28{
29
30public:
31
32 AudioVideoRec(Console *pConsole);
33 virtual ~AudioVideoRec(void);
34
35public:
36
37 static const PDMDRVREG DrvReg;
38
39 Console *getParent(void) { return mParent; }
40
41public:
42
43 static DECLCALLBACK(int) drvConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfg, uint32_t fFlags);
44 static DECLCALLBACK(void) drvDestruct(PPDMDRVINS pDrvIns);
45
46private:
47
48 /** Pointer to the associated video recording audio driver. */
49 struct DRVAUDIOVIDEOREC *mpDrv;
50 /** Pointer to parent. */
51 Console * const mParent;
52};
53
54#endif /* !____H_DRVAUDIOVIDEOREC */
55
Note: See TracBrowser for help on using the repository browser.

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