diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-01-06 23:20:15 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-01-06 23:20:15 +0000 |
commit | e27d606714997a74b94842a55c1f8bef3bbc6c75 (patch) | |
tree | 533b6a70ed12f1a6e08e95204be0ccc3d80f065c /stream | |
parent | 3dc7792ae3b3176d115fbc20deeea5f587620860 (diff) |
Fix illegal identifiers: Names starting with __ or _ and uppercase are reserved
for the system, names starting with _ are reserved at file level.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25635 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream')
-rw-r--r-- | stream/tvi_dshow.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/stream/tvi_dshow.h b/stream/tvi_dshow.h index ee75c11d40..d5047ef361 100644 --- a/stream/tvi_dshow.h +++ b/stream/tvi_dshow.h @@ -116,7 +116,7 @@ typedef enum tagPhysicalConnectorType { PhysConn_Video_Tuner = 1, PhysConn_Audio_AudioDecoder = PhysConn_Audio_USB + 1 } PhysicalConnectorType; -typedef struct _VIDEO_STREAM_CONFIG_CAPS { +typedef struct VIDEO_STREAM_CONFIG_CAPS { GUID guid; // will be MEDIATYPE_Video ULONG VideoStandard; // logical OR of all AnalogVideoStandards // supported @@ -142,7 +142,7 @@ typedef struct _VIDEO_STREAM_CONFIG_CAPS { LONG MaxBitsPerSecond; } VIDEO_STREAM_CONFIG_CAPS, *PVIDEO_STREAM_CONFIG_CAPS; -typedef struct _AUDIO_STREAM_CONFIG_CAPS { +typedef struct AUDIO_STREAM_CONFIG_CAPS { GUID guid; ULONG MinimumChannels; ULONG MaximumChannels; @@ -238,12 +238,12 @@ typedef enum tagTVAudioMode { AMTVAUDIO_MODE_LANG_C = 0x0040, } TVAudioMode; -typedef struct _FilterInfo { +typedef struct FilterInfo { WCHAR achName[128]; LPFILTERGRAPH pGraph; } FILTER_INFO; -typedef struct _PinInfo { +typedef struct PinInfo { LPBASEFILTER pFilter; PIN_DIRECTION dir; unsigned short achName[128]; |