]> git.sesse.net Git - ffmpeg/commitdiff
av_tempfile: Pass int log_offset, void *log_ctx
authorMichael Niedermayer <michaelni@gmx.at>
Sun, 16 Oct 2011 19:32:06 +0000 (21:32 +0200)
committerMichael Niedermayer <michaelni@gmx.at>
Sun, 16 Oct 2011 19:51:28 +0000 (21:51 +0200)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavcodec/libxvid_rc.c
libavcodec/libxvidff.c
libavformat/cache.c
libavutil/file.c
libavutil/file.h

index 37716acc4a4022cf36e73ad4ce8049165f98c7af..8a2b487122a768bd9ec39191e5d5fca7f55baabb 100644 (file)
@@ -41,7 +41,7 @@ int ff_xvid_rate_control_init(MpegEncContext *s){
 
 //xvid_debug=-1;
 
-    fd=av_tempfile("xvidrc.", &tmp_name);
+    fd=av_tempfile("xvidrc.", &tmp_name, 0, s->avctx);
     if (fd == -1) {
         av_log(NULL, AV_LOG_ERROR, "Can't create temporary pass2 file.\n");
         return -1;
index ba950edc399c59a01ddbfe85cd602399fd2ce1c6..f7aa7fd44e0a6b71c1350060364f57f8648632a8 100644 (file)
@@ -232,7 +232,7 @@ static av_cold int xvid_encode_init(AVCodecContext *avctx)  {
         rc2pass2.version = XVID_VERSION;
         rc2pass2.bitrate = avctx->bit_rate;
 
-        fd = av_tempfile("xvidff.", &(x->twopassfile));
+        fd = av_tempfile("xvidff.", &(x->twopassfile), 0, avctx);
         if( fd == -1 ) {
             av_log(avctx, AV_LOG_ERROR,
                 "Xvid: Cannot write 2-pass pipe\n");
index a95ad53713965784c1c05935d225cc0ff6b93c80..74f008e0d1b1a05cfe42589fa2923691e47d6901 100644 (file)
@@ -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;
index e2cfc2f1ddcafc316722c2154f24bee6dda607a6..882a9855ef2f216e596d752c951b9f37183f2bed 100644 (file)
@@ -130,7 +130,8 @@ void av_file_unmap(uint8_t *bufptr, size_t size)
 #endif
 }
 
-int av_tempfile(const char *prefix, char **filename) {
+int av_tempfile(const char *prefix, char **filename, int log_offset, void *log_ctx) {
+    FileLogContext file_log_ctx = { &file_log_ctx_class, log_offset, log_ctx };
     int fd=-1;
 #if !HAVE_MKSTEMP
     void *ptr= tempnam(NULL, prefix);
@@ -145,7 +146,7 @@ int av_tempfile(const char *prefix, char **filename) {
 #endif
     /* -----common section-----*/
     if (*filename == NULL) {
-        av_log(NULL, AV_LOG_ERROR, "ff_tempfile: Cannot allocate file name\n");
+        av_log(&file_log_ctx, AV_LOG_ERROR, "ff_tempfile: Cannot allocate file name\n");
         return AVERROR(ENOMEM);
     }
 #if !HAVE_MKSTEMP
@@ -167,7 +168,7 @@ int av_tempfile(const char *prefix, char **filename) {
     /* -----common section-----*/
     if (fd < 0) {
         int err = AVERROR(errno);
-        av_log(NULL, AV_LOG_ERROR, "ff_tempfile: Cannot open temporary file %s\n", *filename);
+        av_log(&file_log_ctx, AV_LOG_ERROR, "ff_tempfile: Cannot open temporary file %s\n", *filename);
         return err;
     }
     return fd; /* success */
index c6d2692d52fe726939e7f0c71b47e36eade131e9..f3af9ef7e57aceb11b72d32165b84f88668d3eca 100644 (file)
@@ -56,6 +56,6 @@ void av_file_unmap(uint8_t *bufptr, size_t size);
  * @return file descriptor of opened file (or -1 on error)
  * and opened file name in **filename.
  */
-int av_tempfile(const char *prefix, char **filename);
+int av_tempfile(const char *prefix, char **filename, int log_offset, void *log_ctx);
 
 #endif /* AVUTIL_FILE_H */