Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
9400b572
Commit
9400b572
authored
Feb 20, 2002
by
Jon Lech Johansen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* MacOS X VCD support.
parent
ff619dd6
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
441 additions
and
13 deletions
+441
-13
Makefile.opts.in
Makefile.opts.in
+1
-0
configure
configure
+7
-0
configure.in
configure.in
+7
-0
plugins/vcd/Makefile
plugins/vcd/Makefile
+1
-1
plugins/vcd/cdrom_tools.c
plugins/vcd/cdrom_tools.c
+416
-0
plugins/vcd/cdrom_tools.h
plugins/vcd/cdrom_tools.h
+4
-9
plugins/vcd/input_vcd.c
plugins/vcd/input_vcd.c
+5
-3
No files found.
Makefile.opts.in
View file @
9400b572
...
...
@@ -96,6 +96,7 @@ LIB_QNX = @LIB_QNX@
LIB_QT
=
@LIB_QT@
LIB_RC
=
@LIB_RC@
LIB_SDL
=
@LIB_SDL@
LIB_VCD
=
@LIB_VCD@
LIB_WAVEOUT
=
@LIB_WAVEOUT@
LIB_WIN32
=
@LIB_WIN32@
LIB_X11
=
@LIB_X11@
...
...
configure
View file @
9400b572
...
...
@@ -6494,6 +6494,12 @@ then
BUILTINS
=
"
${
BUILTINS
}
vcd"
fi
if
test
x
$enable_vcd
!=
xno
-a
"
${
SYS
}
"
=
"darwin"
then
BUILTINS
=
"
${
BUILTINS
}
vcd"
LIB_VCD
=
"
${
LIB_VCD
}
-framework IOKit"
fi
# Check whether --enable-dummy or --disable-dummy was given.
if
test
"
${
enable_dummy
+set
}
"
=
set
;
then
enableval
=
"
$enable_dummy
"
...
...
@@ -8331,6 +8337,7 @@ s%@LIB_QNX@%$LIB_QNX%g
s%@LIB_QT@%
$LIB_QT
%g
s%@LIB_RC@%
$LIB_RC
%g
s%@LIB_SDL@%
$LIB_SDL
%g
s%@LIB_VCD@%
$LIB_VCD
%g
s%@LIB_WAVEOUT@%
$LIB_WAVEOUT
%g
s%@LIB_WIN32@%
$LIB_WIN32
%g
s%@LIB_X11@%
$LIB_X11
%g
...
...
configure.in
View file @
9400b572
...
...
@@ -903,6 +903,12 @@ then
BUILTINS="${BUILTINS} vcd"
fi
if test x$enable_vcd != xno -a "${SYS}" = "darwin"
then
BUILTINS="${BUILTINS} vcd"
LIB_VCD="${LIB_VCD} -framework IOKit"
fi
dnl
dnl dummy plugin
dnl
...
...
@@ -1541,6 +1547,7 @@ AC_SUBST(LIB_QNX)
AC_SUBST(LIB_QT)
AC_SUBST(LIB_RC)
AC_SUBST(LIB_SDL)
AC_SUBST(LIB_VCD)
AC_SUBST(LIB_WAVEOUT)
AC_SUBST(LIB_WIN32)
AC_SUBST(LIB_X11)
...
...
plugins/vcd/Makefile
View file @
9400b572
vcd_SOURCES
=
vcd.c input_vcd.c
linux_
cdrom_tools.c
vcd_SOURCES
=
vcd.c input_vcd.c cdrom_tools.c
plugins/vcd/
linux_
cdrom_tools.c
→
plugins/vcd/cdrom_tools.c
View file @
9400b572
This diff is collapsed.
Click to expand it.
plugins/vcd/
linux_
cdrom_tools.h
→
plugins/vcd/cdrom_tools.h
View file @
9400b572
/****************************************************************************
*
linux_cdrom_tools.h: linux
cdrom tools header
*
cdrom_tools.h:
cdrom tools header
*****************************************************************************
* Copyright (C) 1998-2001 VideoLAN
* $Id: cdrom_tools.h,v 1.1 2002/02/20 05:50:00 jlj Exp $
*
* Author: Johan Bilien <jobi@via.ecp.fr>
*
...
...
@@ -20,12 +21,6 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
*****************************************************************************/
#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 */
...
...
@@ -36,7 +31,7 @@
/******************************************************************************
* Prototypes *
******************************************************************************/
int
ioctl_GetTrackCount
(
int
);
int
*
ioctl_GetSectors
(
int
);
int
ioctl_GetTrackCount
(
int
,
const
char
*
psz_dev
);
int
*
ioctl_GetSectors
(
int
,
const
char
*
psz_dev
);
int
ioctl_ReadSector
(
int
,
int
,
byte_t
*
);
plugins/vcd/input_vcd.c
View file @
9400b572
...
...
@@ -59,7 +59,7 @@
#include "debug.h"
#include "input_vcd.h"
#include "
linux_
cdrom_tools.h"
#include "cdrom_tools.h"
/* how many blocks VCDRead will read in each loop */
#define VCD_BLOCKS_ONCE 4
...
...
@@ -217,7 +217,8 @@ static void VCDInit( input_thread_t * p_input )
p_vcd
->
i_handle
=
p_input
->
i_handle
;
/* We read the Table Of Content information */
p_vcd
->
nb_tracks
=
ioctl_GetTrackCount
(
p_input
->
i_handle
);
p_vcd
->
nb_tracks
=
ioctl_GetTrackCount
(
p_input
->
i_handle
,
p_input
->
p_source
);
if
(
p_vcd
->
nb_tracks
<
0
)
{
input_BuffersEnd
(
p_input
->
p_method_data
);
...
...
@@ -234,7 +235,8 @@ static void VCDInit( input_thread_t * p_input )
return
;
}
p_vcd
->
p_sectors
=
ioctl_GetSectors
(
p_input
->
i_handle
);
p_vcd
->
p_sectors
=
ioctl_GetSectors
(
p_input
->
i_handle
,
p_input
->
p_source
);
if
(
p_vcd
->
p_sectors
==
NULL
)
{
input_BuffersEnd
(
p_input
->
p_method_data
);
...
...
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