git.videolan.org
/
ffmpeg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Remove a few occurences of "long long" from the libraries.
[ffmpeg.git]
/
libavformat
/
libnut.c
diff --git
a/libavformat/libnut.c
b/libavformat/libnut.c
index
4a9a21a
..
92623ed
100644
(file)
--- a/
libavformat/libnut.c
+++ b/
libavformat/libnut.c
@@
-179,7
+179,7
@@
static size_t av_read(void * h, size_t len, uint8_t * buf) {
return avio_read(bc, buf, len);
}
-static off_t av_seek(void * h,
long long
pos, int whence) {
+static off_t av_seek(void * h,
int64_t
pos, int whence) {
AVIOContext * bc = h;
if (whence == SEEK_END) {
pos = avio_size(bc) + pos;