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 --- libmpdemux/yuv4mpeg.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libmpdemux/yuv4mpeg.h') diff --git a/libmpdemux/yuv4mpeg.h b/libmpdemux/yuv4mpeg.h index 2db6136ce1..157d426c0e 100644 --- a/libmpdemux/yuv4mpeg.h +++ b/libmpdemux/yuv4mpeg.h @@ -55,7 +55,7 @@ * 'ratio' datatype, for rational numbers * (see 'ratio' functions down below) ************************************************************************/ -typedef struct _y4m_ratio { +typedef struct y4m_ratio { int n; /* numerator */ int d; /* denominator */ } y4m_ratio_t; @@ -99,7 +99,7 @@ extern const y4m_ratio_t y4m_sar_PAL_SVCD_16_9; /* PAL SVCD 16:9 */ ************************************************************************/ #define Y4M_MAX_XTAGS 32 /* maximum number of xtags in list */ #define Y4M_MAX_XTAG_SIZE 32 /* max length of an xtag (including 'X') */ -typedef struct _y4m_xtag_list { +typedef struct y4m_xtag_list { int count; char *tags[Y4M_MAX_XTAGS]; } y4m_xtag_list_t; @@ -114,7 +114,7 @@ typedef struct _y4m_xtag_list { * Use the y4m_si_*() functions (see below). * You must initialize/finalize this structure before/after use. ************************************************************************/ -typedef struct _y4m_stream_info { +typedef struct y4m_stream_info { /* values from header */ int width; int height; @@ -141,7 +141,7 @@ typedef struct _y4m_stream_info { * Use the y4m_fi_*() functions (see below). * You must initialize/finalize this structure before/after use. ************************************************************************/ -typedef struct _y4m_frame_info { +typedef struct y4m_frame_info { /* mystical X tags */ y4m_xtag_list_t x_tags; } y4m_frame_info_t; -- cgit v1.2.3