comparison loader/dmo/DMO_Filter.h @ 25794:2c8cdb9123b8

Fix a ton of illegal identifiers. Identifiers starting with __ or _ and a capital letter are reserved for the system, those starting with _ are reserved at the file level.
author diego
date Sun, 20 Jan 2008 17:16:39 +0000
parents de09fcf0b4f1
children a8ea87c71d18
comparison
equal deleted inserted replaced
25793:ac1a2c121d3a 25794:2c8cdb9123b8
6 6
7 #if defined(__cplusplus) 7 #if defined(__cplusplus)
8 extern "C" { 8 extern "C" {
9 #endif 9 #endif
10 10
11 typedef struct _DMO_Filter 11 typedef struct DMO_Filter
12 { 12 {
13 int m_iHandle; 13 int m_iHandle;
14 IDMOVideoOutputOptimizations* m_pOptim; 14 IDMOVideoOutputOptimizations* m_pOptim;
15 IMediaObject* m_pMedia; 15 IMediaObject* m_pMedia;
16 IMediaObjectInPlace* m_pInPlace; 16 IMediaObjectInPlace* m_pInPlace;
17 AM_MEDIA_TYPE *m_pOurType, *m_pDestType; 17 AM_MEDIA_TYPE *m_pOurType, *m_pDestType;
18 } DMO_Filter; 18 } DMO_Filter;
19 19
20 typedef struct _CMediaBuffer CMediaBuffer; 20 typedef struct CMediaBuffer CMediaBuffer;
21 21
22 /** 22 /**
23 * Create DMO_Filter object - similar syntax as for DS_Filter 23 * Create DMO_Filter object - similar syntax as for DS_Filter
24 */ 24 */
25 DMO_Filter* DMO_FilterCreate(const char* dllname, const GUID* id, 25 DMO_Filter* DMO_FilterCreate(const char* dllname, const GUID* id,