diff oggdec.c @ 3973:549a09cf23fe libavformat

Remove offset_t typedef and use int64_t directly instead. The name offset_t is easily confused with the standard off_t type and *_t is POSIX reserved namespace if any POSIX header is included.
author diego
date Fri, 03 Oct 2008 10:16:29 +0000
parents 6c71b789c69e
children 6cd006bc2de9
line wrap: on
line diff
--- a/oggdec.c	Thu Oct 02 21:15:48 2008 +0000
+++ b/oggdec.c	Fri Oct 03 10:16:29 2008 +0000
@@ -438,7 +438,7 @@
 {
     ogg_t *ogg = s->priv_data;
     int idx = -1, i;
-    offset_t size, end;
+    int64_t size, end;
 
     if(url_is_streamed(s->pb))
         return 0;