1 | /** @file
|
---|
2 | *
|
---|
3 | * VBox frontends: VRDE (headless Remote Desktop server):
|
---|
4 | * Header file with registration call for ffmpeg framebuffer
|
---|
5 | */
|
---|
6 |
|
---|
7 | /*
|
---|
8 | * Copyright (C) 2006-2010 Oracle Corporation
|
---|
9 | *
|
---|
10 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
11 | * available from http://www.virtualbox.org. This file is free software;
|
---|
12 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
13 | * General Public License (GPL) as published by the Free Software
|
---|
14 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
15 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
16 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
17 | */
|
---|
18 |
|
---|
19 | #ifndef __H_VBOXHEADLESS
|
---|
20 | #define __H_VBOXHEADLESS
|
---|
21 |
|
---|
22 | #include <VBox/com/VirtualBox.h>
|
---|
23 |
|
---|
24 | #include <iprt/uuid.h>
|
---|
25 |
|
---|
26 | #include <VBox/com/com.h>
|
---|
27 | #include <VBox/com/string.h>
|
---|
28 |
|
---|
29 | #include <iprt/initterm.h>
|
---|
30 | #include <iprt/critsect.h>
|
---|
31 |
|
---|
32 | /**
|
---|
33 | * Callback function to register an ffmpeg framebuffer.
|
---|
34 | *
|
---|
35 | * @returns COM status code.
|
---|
36 | * @param width Framebuffer width.
|
---|
37 | * @param height Framebuffer height.
|
---|
38 | * @param bitrate Bitrate of mpeg file to be created.
|
---|
39 | * @param pixelFormat Framebuffer pixel format
|
---|
40 | * @param filename Name of mpeg file to be created
|
---|
41 | * @retval retVal The new framebuffer
|
---|
42 | */
|
---|
43 | typedef DECLCALLBACK(HRESULT) FNREGISTERFFMPEGFB(ULONG width,
|
---|
44 | ULONG height, ULONG bitrate,
|
---|
45 | com::Bstr filename,
|
---|
46 | IFramebuffer **retVal);
|
---|
47 | typedef FNREGISTERFFMPEGFB *PFNREGISTERFFMPEGFB;
|
---|
48 |
|
---|
49 | #endif // __H_VBOXHEADLESS
|
---|