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/nutdec.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libavformat/nutdec.c') diff --git a/libavformat/nutdec.c b/libavformat/nutdec.c index cf41f62b56..098bc84079 100644 --- a/libavformat/nutdec.c +++ b/libavformat/nutdec.c @@ -846,9 +846,9 @@ assert(0); static int read_seek(AVFormatContext *s, int stream_index, int64_t pts, int flags){ NUTContext *nut = s->priv_data; AVStream *st= s->streams[stream_index]; - syncpoint_t dummy={.ts= pts*av_q2d(st->time_base)*AV_TIME_BASE}; - syncpoint_t nopts_sp= {.ts= AV_NOPTS_VALUE, .back_ptr= AV_NOPTS_VALUE}; - syncpoint_t *sp, *next_node[2]= {&nopts_sp, &nopts_sp}; + Syncpoint dummy={.ts= pts*av_q2d(st->time_base)*AV_TIME_BASE}; + Syncpoint nopts_sp= {.ts= AV_NOPTS_VALUE, .back_ptr= AV_NOPTS_VALUE}; + Syncpoint *sp, *next_node[2]= {&nopts_sp, &nopts_sp}; int64_t pos, pos2, ts; int i; -- cgit v1.2.3