Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
985a4b90
Commit
985a4b90
authored
Aug 27, 2001
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
IP Multicast support, courtesy of Mathias Kretschmer <mathias@research.att.com>.
parent
645ef26b
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
63 additions
and
8 deletions
+63
-8
AUTHORS
AUTHORS
+4
-0
plugins/mpeg/input_ts.c
plugins/mpeg/input_ts.c
+9
-2
src/input/input.c
src/input/input.c
+50
-6
No files found.
AUTHORS
View file @
985a4b90
...
...
@@ -160,6 +160,10 @@ C: dae
D: FreeBSD port and tests
D: KDE interface
N: Mathias Kretschmer
E: mathias@research.att.com
D: IP Multicast support
N: Markus Kuespert
E: ltlBeBoy@beosmail.com
D: BeOS port of the DVD ioctls
...
...
plugins/mpeg/input_ts.c
View file @
985a4b90
...
...
@@ -2,7 +2,7 @@
* input_ts.c: TS demux and netlist management
*****************************************************************************
* Copyright (C) 1998, 1999, 2000 VideoLAN
* $Id: input_ts.c,v 1.3
1 2001/07/30 00:53:05 sam
Exp $
* $Id: input_ts.c,v 1.3
2 2001/08/27 16:13:20 massiot
Exp $
*
* Authors: Henri Fallon <henri@videolan.org>
*
...
...
@@ -331,6 +331,13 @@ static int TSRead( input_thread_t * p_input,
}
#else
i_read
=
readv
(
p_input
->
i_handle
,
p_iovec
,
INPUT_READ_ONCE
);
/* Shouldn't happen, but it does - at least under Linux */
if
(
(
i_read
==
-
1
)
&&
(
(
errno
==
EAGAIN
)
||
(
errno
=
EWOULDBLOCK
)
)
)
{
/* just ignore that error */
i_read
=
0
;
}
#endif
if
(
i_read
==
-
1
)
{
...
...
src/input/input.c
View file @
985a4b90
...
...
@@ -4,7 +4,7 @@
* decoders.
*****************************************************************************
* Copyright (C) 1998, 1999, 2000 VideoLAN
* $Id: input.c,v 1.1
29 2001/08/09 08:20:26 sam
Exp $
* $Id: input.c,v 1.1
30 2001/08/27 16:13:20 massiot
Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
...
...
@@ -637,7 +637,10 @@ static void NetworkOpen( input_thread_t * p_input )
char
*
psz_broadcast
=
NULL
;
int
i_port
=
0
;
int
i_opt
;
int
i_opt_size
;
struct
sockaddr_in
sock
;
unsigned
int
i_mc_group
;
#ifdef WIN32
WSADATA
Data
;
int
i_err
;
...
...
@@ -766,7 +769,7 @@ static void NetworkOpen( input_thread_t * p_input )
/* We may want to reuse an already used socket */
i_opt
=
1
;
if
(
setsockopt
(
p_input
->
i_handle
,
SOL_SOCKET
,
SO_REUSEADDR
,
(
void
*
)
&
i_opt
,
sizeof
(
i_opt
)
)
==
-
1
)
(
void
*
)
&
i_opt
,
sizeof
(
i_opt
)
)
==
-
1
)
{
intf_ErrMsg
(
"input error: can't configure socket (SO_REUSEADDR: %s)"
,
strerror
(
errno
));
...
...
@@ -779,7 +782,7 @@ static void NetworkOpen( input_thread_t * p_input )
* packet loss caused by scheduling problems */
i_opt
=
0x80000
;
if
(
setsockopt
(
p_input
->
i_handle
,
SOL_SOCKET
,
SO_RCVBUF
,
(
void
*
)
&
i_opt
,
sizeof
(
i_opt
)
)
==
-
1
)
(
void
*
)
&
i_opt
,
sizeof
(
i_opt
)
)
==
-
1
)
{
intf_ErrMsg
(
"input error: can't configure socket (SO_RCVBUF: %s)"
,
strerror
(
errno
));
...
...
@@ -788,6 +791,27 @@ static void NetworkOpen( input_thread_t * p_input )
return
;
}
/* Check if we really got what we have asked for, because Linux, etc.
* will silently limit the max buffer size to net.core.rmem_max which
* is typically only 65535 bytes */
i_opt
=
0
;
i_opt_size
=
sizeof
(
i_opt
);
if
(
getsockopt
(
p_input
->
i_handle
,
SOL_SOCKET
,
SO_RCVBUF
,
(
void
*
)
&
i_opt
,
&
i_opt_size
)
==
-
1
)
{
intf_ErrMsg
(
"input error: can't configure socket (SO_RCVBUF: %s)"
,
strerror
(
errno
));
close
(
p_input
->
i_handle
);
p_input
->
b_error
=
1
;
return
;
}
if
(
i_opt
<
0x80000
)
{
intf_ErrMsg
(
"input warning: socket receive buffer size just %d instead of %d bytes.
\n
"
,
i_opt
,
0x80000
);
}
/* Build the local socket */
if
(
network_BuildLocalAddr
(
&
sock
,
i_port
,
psz_broadcast
)
==
-
1
)
{
...
...
@@ -797,11 +821,15 @@ static void NetworkOpen( input_thread_t * p_input )
return
;
}
/* Required for IP_ADD_MEMBERSHIP */
i_mc_group
=
sock
.
sin_addr
.
s_addr
;
#if defined( WIN32 )
if
(
psz_broadcast
!=
NULL
)
{
sock
.
sin_addr
.
s_addr
=
INADDR_ANY
;
}
#define IN_MULTICAST(a) IN_CLASSD(a)
#endif
/* Bind it */
...
...
@@ -814,6 +842,24 @@ static void NetworkOpen( input_thread_t * p_input )
return
;
}
/* Join the m/c group if sock is a multicast address */
if
(
IN_MULTICAST
(
ntohl
(
i_mc_group
)
)
)
{
struct
ip_mreq
imr
;
imr
.
imr_interface
.
s_addr
=
htonl
(
INADDR_ANY
);
imr
.
imr_multiaddr
.
s_addr
=
i_mc_group
;
if
(
setsockopt
(
p_input
->
i_handle
,
IPPROTO_IP
,
IP_ADD_MEMBERSHIP
,
(
char
*
)
&
imr
,
sizeof
(
struct
ip_mreq
)
)
==
-
1
)
{
intf_ErrMsg
(
"input error: failed to join IP multicast group (%s)"
,
strerror
(
errno
)
);
close
(
p_input
->
i_handle
);
p_input
->
b_error
=
1
;
return
;
}
}
/* Build socket for remote connection */
if
(
network_BuildRemoteAddr
(
&
sock
,
psz_server
)
==
-
1
)
{
...
...
@@ -823,7 +869,7 @@ static void NetworkOpen( input_thread_t * p_input )
return
;
}
/* And connect it
... should we really connect ?
*/
/* And connect it */
if
(
connect
(
p_input
->
i_handle
,
(
struct
sockaddr
*
)
&
sock
,
sizeof
(
sock
)
)
==
(
-
1
)
)
{
...
...
@@ -834,8 +880,6 @@ static void NetworkOpen( input_thread_t * p_input )
return
;
}
/* We can't pace control, but FIXME : bug in meuuh's code to sync PCR
* with the server. */
p_input
->
stream
.
b_pace_control
=
0
;
p_input
->
stream
.
b_seekable
=
0
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment