comparison loader/dmo/DMO_VideoDecoder.c @ 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 dfc8e126ac86
children e5bce92eb572
comparison
equal deleted inserted replaced
25793:ac1a2c121d3a 25794:2c8cdb9123b8
15 #include "dshow/libwin32.h" 15 #include "dshow/libwin32.h"
16 #include "DMO_Filter.h" 16 #include "DMO_Filter.h"
17 17
18 #include "DMO_VideoDecoder.h" 18 #include "DMO_VideoDecoder.h"
19 19
20 struct _DMO_VideoDecoder 20 struct DMO_VideoDecoder
21 { 21 {
22 IVideoDecoder iv; 22 IVideoDecoder iv;
23 23
24 DMO_Filter* m_pDMO_Filter; 24 DMO_Filter* m_pDMO_Filter;
25 AM_MEDIA_TYPE m_sOurType, m_sDestType; 25 AM_MEDIA_TYPE m_sOurType, m_sDestType;
52 #define true 1 52 #define true 1
53 53
54 54
55 //int DMO_VideoDecoder_GetCapabilities(DMO_VideoDecoder *this){return this->m_Caps;} 55 //int DMO_VideoDecoder_GetCapabilities(DMO_VideoDecoder *this){return this->m_Caps;}
56 56
57 typedef struct _ct ct; 57 typedef struct ct ct;
58 58
59 struct _ct { 59 struct ct {
60 fourcc_t fcc; 60 fourcc_t fcc;
61 unsigned int bits; 61 unsigned int bits;
62 const GUID* subtype; 62 const GUID* subtype;
63 int cap; 63 int cap;
64 char *name; 64 char *name;