diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-12-11 19:06:24 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-12-11 19:06:24 +0000 |
commit | 52afa376b8cab31595241c896beb5b7d8baf18d3 (patch) | |
tree | eec09244c9bc9bcf6ebd5b9ede8f56c0c41e465b /libavformat/nut.h | |
parent | 76f940b21e589341be28666755d13d8794b3d6af (diff) | |
download | ffmpeg-52afa376b8cab31595241c896beb5b7d8baf18d3.tar.gz |
remove _t for POSIX compatibility.
Originally committed as revision 16057 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/nut.h')
-rw-r--r-- | libavformat/nut.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavformat/nut.h b/libavformat/nut.h index 713d27dd3b..f2bb62bb5b 100644 --- a/libavformat/nut.h +++ b/libavformat/nut.h @@ -50,14 +50,14 @@ typedef enum{ FLAG_MATCH_TIME =2048, ///<If set, match_time_delta is coded in the frame header FLAG_CODED =4096, ///<if set, coded_flags are stored in the frame header FLAG_INVALID =8192, ///<if set, frame_code is invalid -}flag_t; +} Flag; typedef struct { uint64_t pos; uint64_t back_ptr; // uint64_t global_key_pts; int64_t ts; -} syncpoint_t; +} Syncpoint; typedef struct { uint16_t flags; @@ -106,8 +106,8 @@ typedef struct { void ff_nut_reset_ts(NUTContext *nut, AVRational time_base, int64_t val); int64_t ff_lsb2full(StreamContext *stream, int64_t lsb); -int ff_nut_sp_pos_cmp(syncpoint_t *a, syncpoint_t *b); -int ff_nut_sp_pts_cmp(syncpoint_t *a, syncpoint_t *b); +int ff_nut_sp_pos_cmp(Syncpoint *a, Syncpoint *b); +int ff_nut_sp_pts_cmp(Syncpoint *a, Syncpoint *b); void ff_nut_add_sp(NUTContext *nut, int64_t pos, int64_t back_ptr, int64_t ts); extern const Dispositions ff_nut_dispositions[]; |