Mercurial > libavformat.hg
changeset 332:e47e82c9baf2 libavformat
cygwin fix and dont average interlaced MVs patch by (Wolfgang Hesseler <qv at multimediaware dot com>)
author | michael |
---|---|
date | Sun, 14 Dec 2003 17:47:23 +0000 |
parents | 4530681af424 |
children | e3beadc2ed83 |
files | file.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/file.c Tue Dec 09 18:06:18 2003 +0000 +++ b/file.c Sun Dec 14 17:47:23 2003 +0000 @@ -42,7 +42,7 @@ } else { access = O_RDONLY; } -#if defined(CONFIG_WIN32) || defined(CONFIG_OS2) +#if defined(CONFIG_WIN32) || defined(CONFIG_OS2) || defined(__CYGWIN__) access |= O_BINARY; #endif fd = open(filename, access, 0666);