Mercurial > libavformat.hg
comparison swf.h @ 3973:549a09cf23fe libavformat
Remove offset_t typedef and use int64_t directly instead.
The name offset_t is easily confused with the standard off_t type and
*_t is POSIX reserved namespace if any POSIX header is included.
author | diego |
---|---|
date | Fri, 03 Oct 2008 10:16:29 +0000 |
parents | 1b6245500d8c |
children | 77e0c7511d41 |
comparison
equal
deleted
inserted
replaced
3972:c7a831579a13 | 3973:549a09cf23fe |
---|---|
64 #undef NDEBUG | 64 #undef NDEBUG |
65 #include <assert.h> | 65 #include <assert.h> |
66 | 66 |
67 typedef struct { | 67 typedef struct { |
68 int audio_stream_index; | 68 int audio_stream_index; |
69 offset_t duration_pos; | 69 int64_t duration_pos; |
70 offset_t tag_pos; | 70 int64_t tag_pos; |
71 offset_t vframes_pos; | 71 int64_t vframes_pos; |
72 int samples_per_frame; | 72 int samples_per_frame; |
73 int sound_samples; | 73 int sound_samples; |
74 int swf_frame_number; | 74 int swf_frame_number; |
75 int video_frame_number; | 75 int video_frame_number; |
76 int frame_rate; | 76 int frame_rate; |