[FFmpeg-devel] [PATCH] tools/ffhash: Use O_BINARY when available

James Almer jamrial at gmail.com
Fri May 17 00:10:28 CEST 2013


This fixes reading files in Windows

Signed-off-by: James Almer <jamrial at gmail.com>
---
 tools/ffhash.c | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/tools/ffhash.c b/tools/ffhash.c
index 99b928d..8c4a9f1 100644
--- a/tools/ffhash.c
+++ b/tools/ffhash.c
@@ -71,10 +71,13 @@ static void finish(void)
 static int check(char *file)
 {
     uint8_t buffer[SIZE];
-    int fd;
+    int fd, flags = O_RDONLY;
     int ret = 0;
 
-    if (file) fd = open(file, O_RDONLY);
+#ifdef O_BINARY
+    flags |= O_BINARY;
+#endif
+    if (file) fd = open(file, flags);
     else      fd = 0;
     if (fd == -1) {
         printf("%s=OPEN-FAILED: %s:", av_hash_get_name(hash), strerror(errno));
-- 
1.8.1.5



More information about the ffmpeg-devel mailing list