VirtualBox

source: vbox/trunk/src/VBox/Devices/Graphics/shaderlib/wine/include/mediaobj.idl

最後變更 在這個檔案是 53206,由 vboxsync 提交於 10 年 前

Devices/vmsvga: header fixes

  • 屬性 svn:eol-style 設為 native
  • 屬性 svn:keywords 設為 Author Date Id Revision
檔案大小: 2.2 KB
 
1/*
2 * Copyright (C) 2002 Alexandre Julliard
3 * Copyright (C) 2004 Vincent Béron
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
18 */
19
20/*
21 * Oracle LGPL Disclaimer: For the avoidance of doubt, except that if any license choice
22 * other than GPL or LGPL is available it will apply instead, Oracle elects to use only
23 * the Lesser General Public License version 2.1 (LGPLv2) at this time for any software where
24 * a choice of LGPL license versions is made available with the language indicating
25 * that LGPLv2 or any later version may be used, or where a choice of which version
26 * of the LGPL is applied is otherwise unspecified.
27 */
28
29import "unknwn.idl";
30import "objidl.idl";
31
32interface IDMOQualityControl;
33interface IDMOVideoOutputOptimizations;
34interface IMediaBuffer;
35interface IMediaObject;
36interface IMediaObjectInPlace;
37
38typedef struct _DMOMediaType
39{
40 GUID majortype;
41 GUID subtype;
42 BOOL bFixedSizeSamples;
43 BOOL bTemporalCompression;
44 ULONG lSampleSize;
45 GUID formattype;
46 IUnknown *pUnk;
47 ULONG cbFormat;
48 BYTE *pbFormat;
49} DMO_MEDIA_TYPE;
50
51/*****************************************************************************
52 * IEnumDMO interface
53 */
54[
55 object,
56 uuid(2C3CD98A-2BFA-4A53-9C27-5249BA64BA0F),
57 pointer_default(unique)
58]
59interface IEnumDMO : IUnknown
60{
61 [local]
62 HRESULT Next(
63 [in] DWORD cItemsToFetch,
64 [out] CLSID *pCLSID,
65 [out] WCHAR **Names,
66 [out] DWORD *pcItemsFetched
67 );
68
69 HRESULT Skip(
70 [in] DWORD cItemsToSkip
71 );
72
73 HRESULT Reset();
74
75 HRESULT Clone(
76 [out] IEnumDMO **ppEnum
77 );
78}
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

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