VirtualBox

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

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

(C) 2016

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.7 KB
Line 
1/* $Id: DrvAudioVideoRec.h 62485 2016-07-22 18:36:43Z 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 int handleVideoRecSvrCmdAudioInputIntercept(bool fIntercept);
44 int handleVideoRecSvrCmdAudioInputEventBegin(void *pvContext, int iSampleHz, int cChannels, int cBits, bool fUnsigned);
45 int handleVideoRecSvrCmdAudioInputEventData(void *pvContext, const void *pvData, uint32_t cbData);
46 int handleVideoRecSvrCmdAudioInputEventEnd(void *pvContext);
47
48public:
49
50 static DECLCALLBACK(int) drvConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfg, uint32_t fFlags);
51 static DECLCALLBACK(void) drvDestruct(PPDMDRVINS pDrvIns);
52
53private:
54
55 /** Pointer to the associated video recording audio driver. */
56 struct DRVAUDIOVIDEOREC *mpDrv;
57 /** Pointer to parent. */
58 Console * const mParent;
59};
60
61#endif /* !____H_DRVAUDIOVIDEOREC */
62
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