summaryrefslogtreecommitdiffstats
path: root/ext/ivorbis
diff options
context:
space:
mode:
authorJosep Torre Valles <josep@fluendo.com>2008-02-10 19:01:43 +0000
committerJan Schmidt <thaytan@mad.scientist.com>2008-02-10 19:01:43 +0000
commit9a395d1efe7f3fc641224bfad4b59385ee1995e9 (patch)
tree07a46038cc2e1e26a207e727d50c208d78f144ca /ext/ivorbis
parentd86770610ef6df52af1d1cd780af9840f6d559ef (diff)
downloadgst-plugins-bad-9a395d1efe7f3fc641224bfad4b59385ee1995e9.tar.gz
gst-plugins-bad-9a395d1efe7f3fc641224bfad4b59385ee1995e9.tar.bz2
gst-plugins-bad-9a395d1efe7f3fc641224bfad4b59385ee1995e9.zip
ext/ivorbis/vorbisfile.c: Trivial fix for build warning.
Original commit message from CVS: * ext/ivorbis/vorbisfile.c: Trivial fix for build warning. Patch by: Josep Torre Valles <josep@fluendo.com> Fixes: #515588
Diffstat (limited to 'ext/ivorbis')
-rw-r--r--ext/ivorbis/vorbisfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/ivorbis/vorbisfile.c b/ext/ivorbis/vorbisfile.c
index 82743bd1..6ee71ef0 100644
--- a/ext/ivorbis/vorbisfile.c
+++ b/ext/ivorbis/vorbisfile.c
@@ -386,7 +386,7 @@ gst_ivorbisfile_read (void *ptr, size_t size, size_t nmemb, void *datasource)
}
static int
-gst_ivorbisfile_seek (void *datasource, int64_t offset, int whence)
+gst_ivorbisfile_seek (void *datasource, ogg_int64_t offset, int whence)
{
Ivorbisfile *ivorbisfile = GST_IVORBISFILE (datasource);
guint64 pending_offset = ivorbisfile->offset;