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
6d7c2261
Commit
6d7c2261
authored
Mar 21, 2002
by
Johan Bilien
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
parent
313043fe
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
472 additions
and
436 deletions
+472
-436
Makefile
Makefile
+2
-0
configure
configure
+445
-432
configure.in
configure.in
+11
-0
include/defs.h.in
include/defs.h.in
+3
-0
include/input_ext-intf.h
include/input_ext-intf.h
+7
-3
src/input/input_programs.c
src/input/input_programs.c
+4
-1
No files found.
Makefile
View file @
6d7c2261
...
@@ -51,6 +51,7 @@ PLUGINS_DIR := a52 \
...
@@ -51,6 +51,7 @@ PLUGINS_DIR := a52 \
network
\
network
\
qnx
\
qnx
\
qt
\
qt
\
satellite
\
sdl
\
sdl
\
spudec
\
spudec
\
text
\
text
\
...
@@ -130,6 +131,7 @@ PLUGINS_TARGETS := a52/a52 \
...
@@ -130,6 +131,7 @@ PLUGINS_TARGETS := a52/a52 \
network/ipv6
\
network/ipv6
\
qnx/qnx
\
qnx/qnx
\
qt/qt
\
qt/qt
\
satellite/satellite
\
sdl/sdl
\
sdl/sdl
\
spudec/spudec
\
spudec/spudec
\
text/logger
\
text/logger
\
...
...
configure
View file @
6d7c2261
This source diff could not be displayed because it is too large. You can
view the blob
instead.
configure.in
View file @
6d7c2261
...
@@ -832,6 +832,17 @@ then
...
@@ -832,6 +832,17 @@ then
fi
fi
fi
fi
dnl
dnl Satellite input module
dnl
AC_ARG_ENABLE(satellite,
[ --enable-satellite Satellite card support (default disabled)],
[ if test x$enable_satellite = xyes
then
BUILTINS="${BUILTINS} satellite"
AC_DEFINE(HAVE_SATELLITE, 1, define if compiling with satellite card support)
fi])
dnl
dnl
dnl ipv6 plugin
dnl ipv6 plugin
dnl
dnl
...
...
include/defs.h.in
View file @
6d7c2261
...
@@ -422,6 +422,9 @@
...
@@ -422,6 +422,9 @@
/* Define if FreeBSD-like dvd_struct is defined. */
/* Define if FreeBSD-like dvd_struct is defined. */
#undef HAVE_BSD_DVD_STRUCT
#undef HAVE_BSD_DVD_STRUCT
/* define if compiling with satellite card support */
#undef HAVE_SATELLITE
/* Indicate whether we should use SDL/SDL.h or SDL11/SDL.h */
/* Indicate whether we should use SDL/SDL.h or SDL11/SDL.h */
#undef SDL_INCLUDE_FILE
#undef SDL_INCLUDE_FILE
...
...
include/input_ext-intf.h
View file @
6d7c2261
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
* control the pace of reading.
* control the pace of reading.
*****************************************************************************
*****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN
* Copyright (C) 1999, 2000 VideoLAN
* $Id: input_ext-intf.h,v 1.6
2 2002/03/05 17:46:33 stef
Exp $
* $Id: input_ext-intf.h,v 1.6
3 2002/03/21 02:27:04 jobi
Exp $
*
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
*
...
@@ -71,7 +71,10 @@ typedef struct es_descriptor_s
...
@@ -71,7 +71,10 @@ typedef struct es_descriptor_s
* fast forward and slow motion ? */
* fast forward and slow motion ? */
u8
i_cat
;
/* stream category: video, audio,
u8
i_cat
;
/* stream category: video, audio,
* spu, other */
* spu, other */
#ifdef HAVE_SATELLITE
int
i_dmx_fd
;
/* used to store demux device
file handle */
#endif
char
psz_desc
[
20
];
/* description of ES: audio language
char
psz_desc
[
20
];
/* description of ES: audio language
* for instance ; NULL if not
* for instance ; NULL if not
* available */
* available */
...
@@ -315,7 +318,8 @@ typedef struct input_thread_s
...
@@ -315,7 +318,8 @@ typedef struct input_thread_s
#define INPUT_METHOD_MCAST 0x32
/* UDP multicast */
#define INPUT_METHOD_MCAST 0x32
/* UDP multicast */
#define INPUT_METHOD_BCAST 0x33
/* UDP broadcast */
#define INPUT_METHOD_BCAST 0x33
/* UDP broadcast */
#define INPUT_METHOD_VLAN_BCAST 0x34
/* UDP broadcast with VLANs */
#define INPUT_METHOD_VLAN_BCAST 0x34
/* UDP broadcast with VLANs */
#define INPUT_METHOD_SATELLITE 0x40
/* stream is read from a */
/* satellite card */
/* Status changing methods */
/* Status changing methods */
#define INPUT_STATUS_END 0
#define INPUT_STATUS_END 0
...
...
src/input/input_programs.c
View file @
6d7c2261
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* input_programs.c: es_descriptor_t, pgrm_descriptor_t management
* input_programs.c: es_descriptor_t, pgrm_descriptor_t management
*****************************************************************************
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* Copyright (C) 1999-2001 VideoLAN
* $Id: input_programs.c,v 1.7
5 2002/03/19 23:02:29
jobi Exp $
* $Id: input_programs.c,v 1.7
6 2002/03/21 02:27:04
jobi Exp $
*
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
*
...
@@ -492,6 +492,9 @@ es_descriptor_t * input_AddES( input_thread_t * p_input,
...
@@ -492,6 +492,9 @@ es_descriptor_t * input_AddES( input_thread_t * p_input,
p_es
->
p_decoder_fifo
=
NULL
;
p_es
->
p_decoder_fifo
=
NULL
;
p_es
->
b_audio
=
0
;
p_es
->
b_audio
=
0
;
p_es
->
i_cat
=
UNKNOWN_ES
;
p_es
->
i_cat
=
UNKNOWN_ES
;
#ifdef HAVE_SATELLITE
p_es
->
i_dmx_fd
=
0
;
#endif
if
(
i_data_len
)
if
(
i_data_len
)
{
{
...
...
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