From e27d606714997a74b94842a55c1f8bef3bbc6c75 Mon Sep 17 00:00:00 2001 From: diego Date: Sun, 6 Jan 2008 23:20:15 +0000 Subject: 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 --- stream/tvi_dshow.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'stream') 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]; -- cgit v1.2.3