blob: f3116abbc81697a35b5f82c3761f9114ca9d901d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
Index: motion-3.2.11/ffmpeg.c
===================================================================
--- motion-3.2.11.orig/ffmpeg.c
+++ motion-3.2.11/ffmpeg.c
@@ -164,7 +164,7 @@ static int file_write(URLContext *h, uns
return write(fd, buf, size);
}
-static offset_t file_seek(URLContext *h, offset_t pos, int whence)
+static int64_t file_seek(URLContext *h, int64_t pos, int whence)
{
int fd = (size_t)h->priv_data;
return lseek(fd, pos, whence);
|