]> git.sesse.net Git - ffmpeg/blob - libavformat/os_support.c
kill uninitialised variable warning in ac3_probe()
[ffmpeg] / libavformat / os_support.c
1 /*
2  * Various utilities for ffmpeg system
3  * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
4  * copyright (c) 2002 Francois Revol
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22 #include "config.h"
23 #include "avformat.h"
24 #if defined(__MINGW32__)
25 #include <sys/types.h>
26 #include <sys/timeb.h>
27 #elif defined(CONFIG_OS2)
28 #include <string.h>
29 #include <sys/time.h>
30 #else
31 #include <unistd.h>
32 #include <fcntl.h>
33 #include <sys/time.h>
34 #endif
35 #include <time.h>
36
37 #ifndef HAVE_SYS_POLL_H
38 #if defined(__MINGW32__)
39 #include <winsock2.h>
40 #else
41 #include <sys/select.h>
42 #endif
43 #endif
44
45 /**
46  * gets the current time in micro seconds.
47  */
48 int64_t av_gettime(void)
49 {
50 #if defined(__MINGW32__)
51     struct timeb tb;
52     _ftime(&tb);
53     return ((int64_t)tb.time * INT64_C(1000) + (int64_t)tb.millitm) * INT64_C(1000);
54 #else
55     struct timeval tv;
56     gettimeofday(&tv,NULL);
57     return (int64_t)tv.tv_sec * 1000000 + tv.tv_usec;
58 #endif
59 }
60
61 #ifdef CONFIG_NETWORK
62 #include "network.h"
63
64 #if !defined(HAVE_INET_ATON)
65 #include <stdlib.h>
66 #include <strings.h>
67
68 int inet_aton (const char * str, struct in_addr * add)
69 {
70     const char * pch = str;
71     unsigned int add1 = 0, add2 = 0, add3 = 0, add4 = 0;
72
73     add1 = atoi(pch);
74     pch = strpbrk(pch,".");
75     if (pch == 0 || ++pch == 0) goto done;
76     add2 = atoi(pch);
77     pch = strpbrk(pch,".");
78     if (pch == 0 || ++pch == 0) goto done;
79     add3 = atoi(pch);
80     pch = strpbrk(pch,".");
81     if (pch == 0 || ++pch == 0) goto done;
82     add4 = atoi(pch);
83
84 done:
85     add->s_addr=(add4<<24)+(add3<<16)+(add2<<8)+add1;
86
87     return 1;
88 }
89 #endif /* !defined(HAVE_INET_ATON) */
90
91 /* resolve host with also IP address parsing */
92 int resolve_host(struct in_addr *sin_addr, const char *hostname)
93 {
94     struct hostent *hp;
95
96     if (!inet_aton(hostname, sin_addr)) {
97         hp = gethostbyname(hostname);
98         if (!hp)
99             return -1;
100         memcpy(sin_addr, hp->h_addr, sizeof(struct in_addr));
101     }
102     return 0;
103 }
104
105 int ff_socket_nonblock(int socket, int enable)
106 {
107 #ifdef __MINGW32__
108    return ioctlsocket(socket, FIONBIO, &enable);
109 #else
110    if (enable)
111       return fcntl(socket, F_SETFL, fcntl(socket, F_GETFL) | O_NONBLOCK);
112    else
113       return fcntl(socket, F_SETFL, fcntl(socket, F_GETFL) & ~O_NONBLOCK);
114 #endif
115 }
116 #endif /* CONFIG_NETWORK */
117
118 #ifdef CONFIG_FFSERVER
119 #ifndef HAVE_SYS_POLL_H
120 int poll(struct pollfd *fds, nfds_t numfds, int timeout)
121 {
122     fd_set read_set;
123     fd_set write_set;
124     fd_set exception_set;
125     nfds_t i;
126     int n;
127     int rc;
128
129 #ifdef __MINGW32__
130     if (numfds >= FD_SETSIZE) {
131         errno = EINVAL;
132         return -1;
133     }
134 #endif
135
136     FD_ZERO(&read_set);
137     FD_ZERO(&write_set);
138     FD_ZERO(&exception_set);
139
140     n = -1;
141     for(i = 0; i < numfds; i++) {
142         if (fds[i].fd < 0)
143             continue;
144 #ifndef __MINGW32__
145         if (fds[i].fd >= FD_SETSIZE) {
146             errno = EINVAL;
147             return -1;
148         }
149 #endif
150
151         if (fds[i].events & POLLIN)  FD_SET(fds[i].fd, &read_set);
152         if (fds[i].events & POLLOUT) FD_SET(fds[i].fd, &write_set);
153         if (fds[i].events & POLLERR) FD_SET(fds[i].fd, &exception_set);
154
155         if (fds[i].fd > n)
156             n = fds[i].fd;
157     };
158
159     if (n == -1)
160         /* Hey!? Nothing to poll, in fact!!! */
161         return 0;
162
163     if (timeout < 0)
164         rc = select(n+1, &read_set, &write_set, &exception_set, NULL);
165     else {
166         struct timeval    tv;
167
168         tv.tv_sec = timeout / 1000;
169         tv.tv_usec = 1000 * (timeout % 1000);
170         rc = select(n+1, &read_set, &write_set, &exception_set, &tv);
171     };
172
173     if (rc < 0)
174         return rc;
175
176     for(i = 0; i < (nfds_t) n; i++) {
177         fds[i].revents = 0;
178
179         if (FD_ISSET(fds[i].fd, &read_set))      fds[i].revents |= POLLIN;
180         if (FD_ISSET(fds[i].fd, &write_set))     fds[i].revents |= POLLOUT;
181         if (FD_ISSET(fds[i].fd, &exception_set)) fds[i].revents |= POLLERR;
182     };
183
184     return rc;
185 }
186 #endif /* HAVE_SYS_POLL_H */
187 #endif /* CONFIG_FFSERVER */
188