diff avio.c @ 2840:f51675f78402 libavformat

Make recently added and still unused read_seek functions return offset_t.
author michael
date Wed, 19 Dec 2007 21:11:08 +0000
parents b51319dd86e5
children 7a9a045dcdc3
line wrap: on
line diff
--- a/avio.c	Wed Dec 19 20:57:13 2007 +0000
+++ b/avio.c	Wed Dec 19 21:11:08 2007 +0000
@@ -199,7 +199,7 @@
     return h->prot->url_read_pause(h, pause);
 }
 
-int av_url_read_seek(URLContext *h,
+offset_t av_url_read_seek(URLContext *h,
         int stream_index, int64_t timestamp, int flags)
 {
     if (!h->prot->url_read_seek)