summaryrefslogtreecommitdiffstats
path: root/libmpdemux/yuv4mpeg.h
diff options
context:
space:
mode:
Diffstat (limited to 'libmpdemux/yuv4mpeg.h')
-rw-r--r--libmpdemux/yuv4mpeg.h8
1 files changed, 4 insertions, 4 deletions
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;