ReactOS Fundraising Campaign 2012
 
€ 4,410 / € 30,000

Information | Donate

Home | Info | Community | Development | myReactOS | Contact Us

  1. Home
  2. Community
  3. Development
  4. myReactOS
  5. Fundraiser 2012

  1. Main Page
  2. Alphabetical List
  3. Data Structures
  4. Directories
  5. File List
  6. Data Fields
  7. Globals
  8. Related Pages

ReactOS Development > Doxygen

mediaobj.idl
Go to the documentation of this file.
00001 /*
00002  * Copyright (C) 2002 Alexandre Julliard
00003  * Copyright (C) 2004 Vincent Béron
00004  *
00005  * This library is free software; you can redistribute it and/or
00006  * modify it under the terms of the GNU Lesser General Public
00007  * License as published by the Free Software Foundation; either
00008  * version 2.1 of the License, or (at your option) any later version.
00009  *
00010  * This library is distributed in the hope that it will be useful,
00011  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00012  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00013  * Lesser General Public License for more details.
00014  *
00015  * You should have received a copy of the GNU Lesser General Public
00016  * License along with this library; if not, write to the Free Software
00017  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
00018  */
00019 
00020 cpp_quote("#if !defined(COM_NO_WINDOWS_H) && !defined(__WINESRC__)")
00021 cpp_quote("#include <windows.h>")
00022 cpp_quote("#include <ole2.h>")
00023 cpp_quote("#endif")
00024 
00025 import "unknwn.idl";
00026 import "objidl.idl";
00027 
00028 interface IDMOQualityControl;
00029 interface IDMOVideoOutputOptimizations;
00030 interface IMediaBuffer;
00031 interface IMediaObject;
00032 interface IMediaObjectInPlace;
00033 
00034 typedef struct _DMOMediaType
00035 {
00036     GUID majortype;
00037     GUID subtype;
00038     BOOL bFixedSizeSamples;
00039     BOOL bTemporalCompression;
00040     ULONG lSampleSize;
00041     GUID formattype;
00042     IUnknown *pUnk;
00043     ULONG cbFormat;
00044     BYTE *pbFormat;
00045 } DMO_MEDIA_TYPE;
00046 
00047 /*****************************************************************************
00048  * IEnumDMO interface
00049  */
00050 [
00051     object,
00052     uuid(2C3CD98A-2BFA-4A53-9C27-5249BA64BA0F),
00053     pointer_default(unique)
00054 ]
00055 interface IEnumDMO : IUnknown
00056 {
00057     [local]
00058     HRESULT Next(
00059         [in] DWORD cItemsToFetch,
00060         [out] CLSID *pCLSID,
00061         [out] WCHAR **Names,
00062         [out] DWORD *pcItemsFetched
00063     );
00064 
00065     HRESULT Skip(
00066         [in] DWORD cItemsToSkip
00067     );
00068 
00069     HRESULT Reset();
00070 
00071     HRESULT Clone(
00072         [out] IEnumDMO **ppEnum
00073     );
00074 }

Generated on Sat May 26 2012 04:29:22 for ReactOS by doxygen 1.7.6.1

ReactOS is a registered trademark or a trademark of ReactOS Foundation in the United States and other countries.