Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
2ebfdccd
Commit
2ebfdccd
authored
Nov 09, 2001
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* BSD/OS VCD patch, courtesy of Steven M. Schultz <sms@TO.GD-ES.COM>
* Win32 network fix.
parent
caf9e0ac
Changes
4
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
59 additions
and
47 deletions
+59
-47
configure
configure
+44
-39
configure.in
configure.in
+5
-0
plugins/vcd/linux_cdrom_tools.h
plugins/vcd/linux_cdrom_tools.h
+6
-1
src/input/input.c
src/input/input.c
+4
-7
No files found.
configure
View file @
2ebfdccd
This diff is collapsed.
Click to expand it.
configure.in
View file @
2ebfdccd
...
...
@@ -686,6 +686,11 @@ then
])
fi
if test x$enable_vcd != xno -a "${SYS}" = "bsdi"
then
BUILTINS="${BUILTINS} vcd"
fi
dnl
dnl dummy plugin
dnl
...
...
plugins/vcd/linux_cdrom_tools.h
View file @
2ebfdccd
...
...
@@ -20,7 +20,12 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
*****************************************************************************/
#include <linux/cdrom.h>
#if defined(HAVE_BSD_DVD_STRUCT) || defined(DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H) || defined(DVD_STRUCT_IN_DVD_H)
# include <dvd.h>
#else
# include <linux/cdrom.h>
#endif
/* where the data start on a VCD sector */
#define VCD_DATA_START 24
/* size of the availablr data on a VCD sector */
...
...
src/input/input.c
View file @
2ebfdccd
...
...
@@ -4,7 +4,7 @@
* decoders.
*****************************************************************************
* Copyright (C) 1998, 1999, 2000 VideoLAN
* $Id: input.c,v 1.15
1 2001/11/07 22:58:13 jlj
Exp $
* $Id: input.c,v 1.15
2 2001/11/09 13:49:26 massiot
Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
...
...
@@ -913,10 +913,7 @@ static void NetworkOpen( input_thread_t * p_input )
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
...
...
@@ -950,7 +947,6 @@ static void NetworkOpen( input_thread_t * p_input )
return
;
}
}
#endif
/* Build socket for remote connection */
if
(
network_BuildRemoteAddr
(
&
sock
,
psz_server
)
==
-
1
)
...
...
@@ -975,6 +971,7 @@ static void NetworkOpen( input_thread_t * p_input )
return
;
}
}
#endif
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