diff nutdec.c @ 4076:a5c615b9d8ec libavformat

remove _t for POSIX compatibility.
author michael
date Thu, 11 Dec 2008 19:06:24 +0000
parents 27537074f2a9
children 7d2f3f1b68d8
line wrap: on
line diff
--- a/nutdec.c	Thu Dec 11 18:48:08 2008 +0000
+++ b/nutdec.c	Thu Dec 11 19:06:24 2008 +0000
@@ -846,9 +846,9 @@
 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;