diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-10-16 21:32:06 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-10-16 21:51:28 +0200 |
commit | 74dbb5388e356c085b2f426a5533c08cdc163488 (patch) | |
tree | b93f0769155db5cfa26f622428a50e8eac9ab38c /libavformat/cache.c | |
parent | 482aabd59a9da807e88fc7796b0764290b62cf11 (diff) | |
download | ffmpeg-74dbb5388e356c085b2f426a5533c08cdc163488.tar.gz |
av_tempfile: Pass int log_offset, void *log_ctx
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/cache.c')
-rw-r--r-- | libavformat/cache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/cache.c b/libavformat/cache.c index a95ad53713..74f008e0d1 100644 --- a/libavformat/cache.c +++ b/libavformat/cache.c @@ -63,7 +63,7 @@ static int cache_open(URLContext *h, const char *arg, int flags) av_strstart(arg, "cache:", &arg); - c->fd = av_tempfile("ffcache", &buffername); + c->fd = av_tempfile("ffcache", &buffername, 0, h); if (c->fd < 0){ av_log(h, AV_LOG_ERROR, "Failed to create tempfile\n"); return c->fd; |