Mercurial > mplayer.hg
changeset 5292:1863e0c6af59
sys/types.h required for off_t
author | arpi |
---|---|
date | Sat, 23 Mar 2002 21:52:13 +0000 |
parents | 421969d55d5f |
children | fd992ece4367 |
files | libmpdemux/stream.h |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/libmpdemux/stream.h Sat Mar 23 21:48:55 2002 +0000 +++ b/libmpdemux/stream.h Sat Mar 23 21:52:13 2002 +0000 @@ -3,6 +3,7 @@ #include "mp_msg.h" #include <inttypes.h> +#include <sys/types.h> #define STREAM_BUFFER_SIZE 2048 @@ -53,7 +54,7 @@ // no cache #define cache_stream_fill_buffer(x) stream_fill_buffer(x) #define cache_stream_seek_long(x,y) stream_seek_long(x,y) -#define stream_enable_cache(x,y) 1 +#define stream_enable_cache(x,y,z,w) 1 #endif int cache_stream_fill_buffer(stream_t *s);