annotate barpainet.h @ 1680:9240521ca4fd libavformat

this is wrong but it was that way before the AVCodecTag change, only reason why it didnt broke regressions was that the table wasnt used
author michael
date Sun, 21 Jan 2007 12:30:44 +0000
parents 0899bfe4105c
children d85795da84ab
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1306
8bf9be9bb107 Add official LGPL license headers to the files that were missing them.
diego
parents: 878
diff changeset
1 /*
8bf9be9bb107 Add official LGPL license headers to the files that were missing them.
diego
parents: 878
diff changeset
2 * copyright (c) 2002 Francois Revol
8bf9be9bb107 Add official LGPL license headers to the files that were missing them.
diego
parents: 878
diff changeset
3 *
1358
0899bfe4105c Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 1306
diff changeset
4 * This file is part of FFmpeg.
0899bfe4105c Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 1306
diff changeset
5 *
0899bfe4105c Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 1306
diff changeset
6 * FFmpeg is free software; you can redistribute it and/or
1306
8bf9be9bb107 Add official LGPL license headers to the files that were missing them.
diego
parents: 878
diff changeset
7 * modify it under the terms of the GNU Lesser General Public
8bf9be9bb107 Add official LGPL license headers to the files that were missing them.
diego
parents: 878
diff changeset
8 * License as published by the Free Software Foundation; either
1358
0899bfe4105c Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 1306
diff changeset
9 * version 2.1 of the License, or (at your option) any later version.
1306
8bf9be9bb107 Add official LGPL license headers to the files that were missing them.
diego
parents: 878
diff changeset
10 *
1358
0899bfe4105c Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 1306
diff changeset
11 * FFmpeg is distributed in the hope that it will be useful,
1306
8bf9be9bb107 Add official LGPL license headers to the files that were missing them.
diego
parents: 878
diff changeset
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
8bf9be9bb107 Add official LGPL license headers to the files that were missing them.
diego
parents: 878
diff changeset
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
8bf9be9bb107 Add official LGPL license headers to the files that were missing them.
diego
parents: 878
diff changeset
14 * Lesser General Public License for more details.
8bf9be9bb107 Add official LGPL license headers to the files that were missing them.
diego
parents: 878
diff changeset
15 *
8bf9be9bb107 Add official LGPL license headers to the files that were missing them.
diego
parents: 878
diff changeset
16 * You should have received a copy of the GNU Lesser General Public
1358
0899bfe4105c Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 1306
diff changeset
17 * License along with FFmpeg; if not, write to the Free Software
1306
8bf9be9bb107 Add official LGPL license headers to the files that were missing them.
diego
parents: 878
diff changeset
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
8bf9be9bb107 Add official LGPL license headers to the files that were missing them.
diego
parents: 878
diff changeset
19 */
8bf9be9bb107 Add official LGPL license headers to the files that were missing them.
diego
parents: 878
diff changeset
20
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
21 #ifndef BARPA_INET_H
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
22 #define BARPA_INET_H
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
23
878
8782b02914e3 Unify include paths, -I.. is in CFLAGS.
diego
parents: 182
diff changeset
24 #include "config.h"
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
25
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
26 #ifdef CONFIG_BEOS_NETSERVER
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
27
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
28 # include <socket.h>
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
29 int inet_aton (const char * str, struct in_addr * add);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
30 # define PF_INET AF_INET
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
31 # define SO_SNDBUF 0x40000001
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
32
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
33 /* fake */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
34 struct ip_mreq {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
35 struct in_addr imr_multiaddr; /* IP multicast address of group */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
36 struct in_addr imr_interface; /* local IP address of interface */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
37 };
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
38
182
82fea3fec65b OSX and BeOS networking fix (socklen_t)
mmu_man
parents: 0
diff changeset
39 #include <netdb.h>
82fea3fec65b OSX and BeOS networking fix (socklen_t)
mmu_man
parents: 0
diff changeset
40
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
41 #else
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
42 # include <arpa/inet.h>
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
43 #endif
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
44
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
45 #endif /* BARPA_INET_H */