Mercurial > libavformat.hg
annotate network.h @ 5277:9c52d406546b libavformat
Support Intel JPEG Library Video Codec (still flipped).
author | cehoyos |
---|---|
date | Mon, 12 Oct 2009 21:35:26 +0000 |
parents | 40c9bef5b4e2 |
children | afe4a96b6832 |
rev | line source |
---|---|
1754 | 1 /* |
4251
77e0c7511d41
cosmetics: Remove pointless period after copyright statement non-sentences.
diego
parents:
4206
diff
changeset
|
2 * Copyright (c) 2007 The FFmpeg Project |
1754 | 3 * |
4 * This file is part of FFmpeg. | |
5 * | |
6 * FFmpeg is free software; you can redistribute it and/or | |
7 * modify it under the terms of the GNU Lesser General Public | |
8 * License as published by the Free Software Foundation; either | |
9 * version 2.1 of the License, or (at your option) any later version. | |
10 * | |
11 * FFmpeg is distributed in the hope that it will be useful, | |
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
14 * Lesser General Public License for more details. | |
15 * | |
16 * You should have received a copy of the GNU Lesser General Public | |
17 * License along with FFmpeg; if not, write to the Free Software | |
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |
19 */ | |
20 | |
3852 | 21 #ifndef AVFORMAT_NETWORK_H |
22 #define AVFORMAT_NETWORK_H | |
1754 | 23 |
4284
40c9bef5b4e2
Fix undefined preprocessor directives warnings during 'make checkheaders'.
diego
parents:
4251
diff
changeset
|
24 #include "config.h" |
40c9bef5b4e2
Fix undefined preprocessor directives warnings during 'make checkheaders'.
diego
parents:
4251
diff
changeset
|
25 |
4206 | 26 #if HAVE_WINSOCK2_H |
2085 | 27 #include <winsock2.h> |
28 #include <ws2tcpip.h> | |
29 | |
30 #define ff_neterrno() WSAGetLastError() | |
31 #define FF_NETERROR(err) WSA##err | |
32 #define WSAEAGAIN WSAEWOULDBLOCK | |
33 #else | |
1754 | 34 #include <sys/types.h> |
35 #include <sys/socket.h> | |
36 #include <netinet/in.h> | |
37 #include <netdb.h> | |
38 | |
2056
eeea52739ff3
use ff_neterrno() and FF_NETERROR() for networking error handling
alex
parents:
1943
diff
changeset
|
39 #define ff_neterrno() errno |
eeea52739ff3
use ff_neterrno() and FF_NETERROR() for networking error handling
alex
parents:
1943
diff
changeset
|
40 #define FF_NETERROR(err) err |
2085 | 41 #endif |
42 | |
4206 | 43 #if HAVE_ARPA_INET_H |
2085 | 44 #include <arpa/inet.h> |
45 #endif | |
2056
eeea52739ff3
use ff_neterrno() and FF_NETERROR() for networking error handling
alex
parents:
1943
diff
changeset
|
46 |
2057
857fbfeb2fa0
implement ff_socket_nonblock and use it in networking code
alex
parents:
2056
diff
changeset
|
47 int ff_socket_nonblock(int socket, int enable); |
857fbfeb2fa0
implement ff_socket_nonblock and use it in networking code
alex
parents:
2056
diff
changeset
|
48 |
2351
b9a881c0967e
Add initialization and cleanup functions for Winsock
ramiro
parents:
2322
diff
changeset
|
49 static inline int ff_network_init(void) |
b9a881c0967e
Add initialization and cleanup functions for Winsock
ramiro
parents:
2322
diff
changeset
|
50 { |
4206 | 51 #if HAVE_WINSOCK2_H |
2351
b9a881c0967e
Add initialization and cleanup functions for Winsock
ramiro
parents:
2322
diff
changeset
|
52 WSADATA wsaData; |
b9a881c0967e
Add initialization and cleanup functions for Winsock
ramiro
parents:
2322
diff
changeset
|
53 if (WSAStartup(MAKEWORD(1,1), &wsaData)) |
b9a881c0967e
Add initialization and cleanup functions for Winsock
ramiro
parents:
2322
diff
changeset
|
54 return 0; |
b9a881c0967e
Add initialization and cleanup functions for Winsock
ramiro
parents:
2322
diff
changeset
|
55 #endif |
b9a881c0967e
Add initialization and cleanup functions for Winsock
ramiro
parents:
2322
diff
changeset
|
56 return 1; |
b9a881c0967e
Add initialization and cleanup functions for Winsock
ramiro
parents:
2322
diff
changeset
|
57 } |
b9a881c0967e
Add initialization and cleanup functions for Winsock
ramiro
parents:
2322
diff
changeset
|
58 |
b9a881c0967e
Add initialization and cleanup functions for Winsock
ramiro
parents:
2322
diff
changeset
|
59 static inline void ff_network_close(void) |
b9a881c0967e
Add initialization and cleanup functions for Winsock
ramiro
parents:
2322
diff
changeset
|
60 { |
4206 | 61 #if HAVE_WINSOCK2_H |
2351
b9a881c0967e
Add initialization and cleanup functions for Winsock
ramiro
parents:
2322
diff
changeset
|
62 WSACleanup(); |
b9a881c0967e
Add initialization and cleanup functions for Winsock
ramiro
parents:
2322
diff
changeset
|
63 #endif |
b9a881c0967e
Add initialization and cleanup functions for Winsock
ramiro
parents:
2322
diff
changeset
|
64 } |
b9a881c0967e
Add initialization and cleanup functions for Winsock
ramiro
parents:
2322
diff
changeset
|
65 |
4206 | 66 #if !HAVE_INET_ATON |
1943
c0c0f19f0db6
Some more BeOS cleanup: check for arpa/inet.h; declare the prototype for inet_aton if not found; remove barpainet.h as it's not longer needed.
mmu_man
parents:
1754
diff
changeset
|
67 /* in os_support.c */ |
c0c0f19f0db6
Some more BeOS cleanup: check for arpa/inet.h; declare the prototype for inet_aton if not found; remove barpainet.h as it's not longer needed.
mmu_man
parents:
1754
diff
changeset
|
68 int inet_aton (const char * str, struct in_addr * add); |
1754 | 69 #endif |
1943
c0c0f19f0db6
Some more BeOS cleanup: check for arpa/inet.h; declare the prototype for inet_aton if not found; remove barpainet.h as it's not longer needed.
mmu_man
parents:
1754
diff
changeset
|
70 |
3852 | 71 #endif /* AVFORMAT_NETWORK_H */ |