From 52afa376b8cab31595241c896beb5b7d8baf18d3 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 11 Dec 2008 19:06:24 +0000 Subject: remove _t for POSIX compatibility. Originally committed as revision 16057 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/nut.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libavformat/nut.c') diff --git a/libavformat/nut.c b/libavformat/nut.c index 7a978a5f11..6fdc298f8e 100644 --- a/libavformat/nut.c +++ b/libavformat/nut.c @@ -47,16 +47,16 @@ int64_t ff_lsb2full(StreamContext *stream, int64_t lsb){ return ((lsb - delta)&mask) + delta; } -int ff_nut_sp_pos_cmp(syncpoint_t *a, syncpoint_t *b){ +int ff_nut_sp_pos_cmp(Syncpoint *a, Syncpoint *b){ return ((a->pos - b->pos) >> 32) - ((b->pos - a->pos) >> 32); } -int ff_nut_sp_pts_cmp(syncpoint_t *a, syncpoint_t *b){ +int ff_nut_sp_pts_cmp(Syncpoint *a, Syncpoint *b){ return ((a->ts - b->ts) >> 32) - ((b->ts - a->ts) >> 32); } void ff_nut_add_sp(NUTContext *nut, int64_t pos, int64_t back_ptr, int64_t ts){ - syncpoint_t *sp= av_mallocz(sizeof(syncpoint_t)); + Syncpoint *sp= av_mallocz(sizeof(Syncpoint)); struct AVTreeNode *node= av_mallocz(av_tree_node_size); sp->pos= pos; -- cgit v1.2.3