Mercurial > libavformat.hg
diff nut.c @ 4076:a5c615b9d8ec libavformat
remove _t for POSIX compatibility.
| author | michael |
|---|---|
| date | Thu, 11 Dec 2008 19:06:24 +0000 |
| parents | 6f61c3b36632 |
| children | 6b9c2a6d8fa4 |
line wrap: on
line diff
--- a/nut.c Thu Dec 11 18:48:08 2008 +0000 +++ b/nut.c Thu Dec 11 19:06:24 2008 +0000 @@ -47,16 +47,16 @@ 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;
