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/nutdec.c | |
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/nutdec.c')
-rw-r--r-- | libavformat/nutdec.c | 6 |
1 files changed, 3 insertions, 3 deletions
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; |