summaryrefslogtreecommitdiffstats
path: root/libmpdemux/demux_nuv.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-01-06 23:20:15 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-01-06 23:20:15 +0000
commite27d606714997a74b94842a55c1f8bef3bbc6c75 (patch)
tree533b6a70ed12f1a6e08e95204be0ccc3d80f065c /libmpdemux/demux_nuv.c
parent3dc7792ae3b3176d115fbc20deeea5f587620860 (diff)
downloadmpv-e27d606714997a74b94842a55c1f8bef3bbc6c75.tar.bz2
mpv-e27d606714997a74b94842a55c1f8bef3bbc6c75.tar.xz
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 'libmpdemux/demux_nuv.c')
-rw-r--r--libmpdemux/demux_nuv.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libmpdemux/demux_nuv.c b/libmpdemux/demux_nuv.c
index b9cfdd0782..5e33412d93 100644
--- a/libmpdemux/demux_nuv.c
+++ b/libmpdemux/demux_nuv.c
@@ -25,9 +25,9 @@ struct nuv_signature
char version[5]; /* "0.05" + \0 */
};
-typedef struct _nuv_position_t nuv_position_t;
+typedef struct nuv_position_t nuv_position_t;
-struct _nuv_position_t
+struct nuv_position_t
{
off_t offset;
float time;
@@ -35,7 +35,7 @@ struct _nuv_position_t
nuv_position_t* next;
};
-typedef struct _nuv_info_t
+typedef struct nuv_info_t
{
int current_audio_frame;
int current_video_frame;