2006-09-10 14:02:42 +00:00
|
|
|
/*
|
|
|
|
* various utilities for ffmpeg system
|
|
|
|
* copyright (c) 2000, 2001, 2002 Fabrice Bellard
|
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2006-09-10 14:02:42 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 15:30:46 +00:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2006-09-10 14:02:42 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2006-09-10 14:02:42 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2006-10-07 15:30:46 +00:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2006-09-10 14:02:42 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2007-10-17 09:37:46 +00:00
|
|
|
#ifndef FFMPEG_OS_SUPPORT_H
|
|
|
|
#define FFMPEG_OS_SUPPORT_H
|
2003-09-08 21:20:55 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @file os_support.h
|
|
|
|
* miscellaneous OS support macros and functions.
|
|
|
|
*/
|
|
|
|
|
2008-01-01 22:54:35 +00:00
|
|
|
#ifndef HAVE_SOCKLEN_T
|
2007-01-18 17:22:30 +00:00
|
|
|
typedef int socklen_t;
|
|
|
|
#endif
|
|
|
|
|
2003-09-08 21:20:55 +00:00
|
|
|
#ifdef __MINGW32__
|
|
|
|
__declspec(dllimport) void __stdcall Sleep(unsigned long dwMilliseconds);
|
|
|
|
// # include <windows.h>
|
|
|
|
# define usleep(t) Sleep((t) / 1000)
|
2006-12-22 23:44:04 +00:00
|
|
|
# include <fcntl.h>
|
|
|
|
# define lseek(f,p,w) _lseeki64((f), (p), (w))
|
2007-08-08 19:18:10 +00:00
|
|
|
#endif
|
|
|
|
|
2003-09-08 21:20:55 +00:00
|
|
|
#ifdef __BEOS__
|
2007-01-18 17:22:30 +00:00
|
|
|
# include <sys/socket.h>
|
|
|
|
# include <netinet/in.h>
|
|
|
|
/* not net_server ? */
|
|
|
|
# include <BeBuild.h>
|
|
|
|
/* R5 didn't have usleep, fake it. Haiku and Zeta has it now. */
|
|
|
|
# if B_BEOS_VERSION <= B_BEOS_VERSION_5
|
2003-09-08 21:20:55 +00:00
|
|
|
# include <OS.h>
|
2007-01-18 17:22:30 +00:00
|
|
|
/* doesn't set errno but that's enough */
|
2003-09-08 21:20:55 +00:00
|
|
|
# define usleep(t) snooze((bigtime_t)(t))
|
|
|
|
# endif
|
2007-02-23 23:35:42 +00:00
|
|
|
# ifndef SA_RESTART
|
|
|
|
# warning SA_RESTART not implemented; ffserver might misbehave.
|
|
|
|
# define SA_RESTART 0
|
|
|
|
# endif
|
2003-09-08 21:20:55 +00:00
|
|
|
#endif
|
|
|
|
|
2007-01-18 17:22:30 +00:00
|
|
|
/* most of the time closing a socket is just closing an fd */
|
2007-08-08 20:25:32 +00:00
|
|
|
#ifndef HAVE_CLOSESOCKET
|
2007-01-18 17:22:30 +00:00
|
|
|
#define closesocket close
|
|
|
|
#endif
|
|
|
|
|
2007-02-15 15:39:39 +00:00
|
|
|
#ifdef CONFIG_FFSERVER
|
2007-02-15 07:44:10 +00:00
|
|
|
#ifndef HAVE_SYS_POLL_H
|
|
|
|
typedef unsigned long nfds_t;
|
|
|
|
|
|
|
|
struct pollfd {
|
|
|
|
int fd;
|
|
|
|
short events; /* events to look for */
|
|
|
|
short revents; /* events that occured */
|
|
|
|
};
|
|
|
|
|
|
|
|
/* events & revents */
|
|
|
|
#define POLLIN 0x0001 /* any readable data available */
|
|
|
|
#define POLLOUT 0x0002 /* file descriptor is writeable */
|
|
|
|
#define POLLRDNORM POLLIN
|
|
|
|
#define POLLWRNORM POLLOUT
|
|
|
|
#define POLLRDBAND 0x0008 /* priority readable data */
|
|
|
|
#define POLLWRBAND 0x0010 /* priority data can be written */
|
|
|
|
#define POLLPRI 0x0020 /* high priority readable data */
|
|
|
|
|
|
|
|
/* revents only */
|
|
|
|
#define POLLERR 0x0004 /* errors pending */
|
|
|
|
#define POLLHUP 0x0080 /* disconnected */
|
|
|
|
#define POLLNVAL 0x1000 /* invalid file descriptor */
|
|
|
|
|
|
|
|
|
|
|
|
extern int poll(struct pollfd *fds, nfds_t numfds, int timeout);
|
|
|
|
#endif /* HAVE_SYS_POLL_H */
|
2007-02-15 15:39:39 +00:00
|
|
|
#endif /* CONFIG_FFSERVER */
|
2007-02-15 07:44:10 +00:00
|
|
|
|
2007-10-17 09:37:46 +00:00
|
|
|
#endif /* FFMPEG_OS_SUPPORT_H */
|