]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/commitdiff
Prepare for O_DIRECT
authorMichal Sojka <sojkam1@fel.cvut.cz>
Fri, 9 Apr 2010 14:12:10 +0000 (16:12 +0200)
committerMichal Sojka <sojkam1@fel.cvut.cz>
Fri, 9 Apr 2010 14:12:10 +0000 (16:12 +0200)
libavformat/avio.h
libavformat/file.c

index be02b06f606b0f9247875669585c16c326c19d27..3340a12cde71f50dfa1bade919532dd047f5120d 100644 (file)
@@ -64,6 +64,7 @@ typedef struct URLPollEntry {
 #define URL_RDONLY 0
 #define URL_WRONLY 1
 #define URL_RDWR   2
+#define URL_DIRECT 2           /* Use O_DIRECT for file access */
 
 typedef int URLInterruptCB(void);
 
index da0ce150947bfb9b1671b740fbb581b3613dfdb3..c041e562a9ebe0bf5b66a83e48485260aa25671b 100644 (file)
@@ -19,6 +19,7 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
+#define _GNU_SOURCE
 #include "libavutil/avstring.h"
 #include "avformat.h"
 #include <fcntl.h>
 
 /* standard file protocol */
 
+struct FileContext {
+    int fd;
+};
+
 static int file_open(URLContext *h, const char *filename, int flags)
 {
+    struct FileContext *s = h->priv_data;
     int access;
     int fd;
 
@@ -50,35 +56,45 @@ static int file_open(URLContext *h, const char *filename, int flags)
 #ifdef O_BINARY
     access |= O_BINARY;
 #endif
+    s = av_malloc(sizeof(struct FileContext));
+    if (!s)
+       return AVERROR(ENOMEM);
+    if (flags & URL_DIRECT)
+       access |= O_DIRECT;
     fd = open(filename, access, 0666);
     if (fd < 0)
         return AVERROR(ENOENT);
-    h->priv_data = (void *) (intptr_t) fd;
+    s->fd = fd;
+    h->priv_data = (void *) s;
     return 0;
 }
 
 static int file_read(URLContext *h, unsigned char *buf, int size)
 {
-    int fd = (intptr_t) h->priv_data;
+    struct FileContext *s = h->priv_data;
+    int fd = s->fd;
     return read(fd, buf, size);
 }
 
 static int file_write(URLContext *h, unsigned char *buf, int size)
 {
-    int fd = (intptr_t) h->priv_data;
+    struct FileContext *s = h->priv_data;
+    int fd = s->fd;
     return write(fd, buf, size);
 }
 
 /* XXX: use llseek */
 static int64_t file_seek(URLContext *h, int64_t pos, int whence)
 {
-    int fd = (intptr_t) h->priv_data;
+    struct FileContext *s = h->priv_data;
+    int fd = s->fd;
     return lseek(fd, pos, whence);
 }
 
 static int file_close(URLContext *h)
 {
-    int fd = (intptr_t) h->priv_data;
+    struct FileContext *s = h->priv_data;
+    int fd = s->fd;
     return close(fd);
 }