]> git.sesse.net Git - vlc/blobdiff - modules/codec/dmo/dmo.h
Removes trailing spaces. Removes tabs.
[vlc] / modules / codec / dmo / dmo.h
index b1ea174adaf20948438e36aad37420b9bb95225c..658b2eab843ab19b284ea908a3720787c86ea8ca 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * dmo.h : DirectMedia Object codec module for vlc
  *****************************************************************************
- * Copyright (C) 2002, 2003 VideoLAN
+ * Copyright (C) 2002, 2003 the VideoLAN team
  * $Id$
  *
  * Author: Gildas Bazin <gbazin@videolan.org>
@@ -18,7 +18,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
 static const GUID IID_IUnknown = {0x00000000, 0x0000, 0x0000, {0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46}};
@@ -37,6 +37,12 @@ static const GUID MEDIASUBTYPE_YV12 = {0x32315659, 0x0000, 0x0010, {0x80, 0x00,
 static const GUID MEDIASUBTYPE_RGB24 = {0xe436eb7d, 0x524f, 0x11ce, {0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70}};
 static const GUID MEDIASUBTYPE_RGB565 = {0xe436eb7b, 0x524f, 0x11ce, {0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70}};
 
+
+#ifndef WIN32
+void* CoTaskMemAlloc(unsigned long cb);
+void CoTaskMemFree(void* cb);
+#endif
+
 #define IUnknown IUnknownHack
 #define IClassFactory IClassFactoryHack
 typedef struct _IUnknown IUnknown;
@@ -143,7 +149,7 @@ typedef struct IWMCodecPrivateData_vt
     long (STDCALL *AddRef)(IUnknown *This) ;
     long (STDCALL *Release)(IUnknown *This) ;
 
-        
     long (STDCALL *SetPartialOutputType)(IWMCodecPrivateData * This,
                                          DMO_MEDIA_TYPE *pmt);