summaryrefslogtreecommitdiff
path: root/libavformat/avio.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2007-12-19 21:11:08 +0000
committerMichael Niedermayer <michaelni@gmx.at>2007-12-19 21:11:08 +0000
commitb075e5205915a5ffcbcb5452b8586c11351f0758 (patch)
treeef18da9c356ad06e2f4e2da697c9b695b1bac4df /libavformat/avio.c
parent502bdf68937d71006d55aebd9da98e750bce4010 (diff)
Make recently added and still unused read_seek functions return offset_t.
Originally committed as revision 11274 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avio.c')
-rw-r--r--libavformat/avio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/avio.c b/libavformat/avio.c
index 8466cd5ee8..b39f80a5f4 100644
--- a/libavformat/avio.c
+++ b/libavformat/avio.c
@@ -199,7 +199,7 @@ int av_url_read_pause(URLContext *h, int pause)
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)