[FFmpeg-devel] [PATCH] djgpp port
Diego Biurrun
diego
Sun Dec 23 22:48:34 CET 2007
On Mon, Dec 24, 2007 at 12:27:23AM +0300, Michael Kostylev wrote:
>
> Known problems:
> ffmpeg.exe produces broken files, e.g. riff header is absent, huge
> amount of data is zero-filled etc. (other binaries such as mencoder and
> ffmpeg2theora work fine);
> the test suite looks not working because of bash.exe limitations;
> wma decoding causes sigill when sse is used, gcc version doesn't matter;
> at least inet_aton() is not a part of standard library, configure checks should use extra settings.
>
> --- ffmpeg-export-2007-12-23/libavformat/os_support.c 2007-12-09 17:39:01.000000000 +0300
> +++ ffmpeg-export-2007-12-23_djgpp/libavformat/os_support.c 2007-12-23 12:27:37.000000000 +0300
> @@ -30,9 +30,11 @@
> #ifdef HAVE_WINSOCK2_H
> #include <winsock2.h>
> #else
> +#ifndef __DJGPP__
> #include <sys/select.h>
> #endif
> #endif
> +#endif
This would need to be done with a proper check in configure and
HAVE_SYS_SELECT_H instead.
The configure part looks OK.
Diego
More information about the ffmpeg-devel
mailing list