-
We're missing usleep(). Mingw32 seems to have it but not the x64 version. This causes programs like ffmpeg.exe to fail to compile.
2009-03-11 14:25:41 UTC in MinGW-w64 - for 32 and 64 bit Windows
-
Kai,
Is this in yet?.
2008-10-13 15:33:35 UTC in MinGW-w64 - for 32 and 64 bit Windows
-
Filed a bug with gcc: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37629.
2008-09-24 14:10:41 UTC in MinGW-w64 - for 32 and 64 bit Windows
-
Sorry, to clarify the ffmpeg guys closed it in their tracker because they believe it to be a bug in gcc 4.4.
2008-09-23 20:24:11 UTC in MinGW-w64 - for 32 and 64 bit Windows
-
I filed a bug with ffmpeg on this (roundup.ffmpeg.org, issue647).
It was closed as a bug in gcc 4.4.
2008-09-23 20:23:45 UTC in MinGW-w64 - for 32 and 64 bit Windows
-
Kai,
I'm using mingw-w64-bin_i686-mingw_20080830.zip
If you need to compile ffmpeg this is my configure line:
$ CFLAGS=-O0 configure --arch=x86_64 --cross-prefix=x86_64-pc-mingw32- --disable-network --enable-w32threads --enable-shared --disable-static --disable-stripping --disable-mmx --disable-optimizations
This is the line from one of the object files in the project...
2008-09-19 13:45:56 UTC in MinGW-w64 - for 32 and 64 bit Windows
-
GCC is generating incorrect code in ffmpeg dlls. With optimizations turned off I get a crash calling avcodec_open() for encoding. The backtrace and other info can be found in http://sourceforge.net/forum/forum.php?thread_id=2253263&forum_id=723797
The function we're dying in is av_log2:
/* misc math functions */
extern const uint8_t ff_log2_tab[256];
static inline int...
2008-09-18 18:13:28 UTC in MinGW-w64 - for 32 and 64 bit Windows
-
File Added: stralign.h.patch.
2008-09-18 17:38:18 UTC in MinGW-w64 - for 32 and 64 bit Windows
-
winreg.h (and other files?) includes "_cdecl" which gcc does not recognize. Changing to __cdecl seems to help.
stralign.h also has one.
Attached is a patch for each file.
2008-09-18 17:37:55 UTC in MinGW-w64 - for 32 and 64 bit Windows
-
I think this is because at this point NT_TIB is an incomplete type.
2008-09-18 17:21:13 UTC in MinGW-w64 - for 32 and 64 bit Windows