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
3a1e3ead
Commit
3a1e3ead
authored
Jun 03, 2002
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ./configure.in, ./plugins/mpeg_system/mpeg_ts.c: fixed libdvbpsi handling.
(what? frozen? sorry, I can't hear you)
parent
3d74e1f6
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
23 additions
and
13 deletions
+23
-13
ChangeLog
ChangeLog
+1
-0
configure
configure
+2
-2
configure.in
configure.in
+2
-2
include/defs.h.in
include/defs.h.in
+3
-3
plugins/mpeg_system/mpeg_ts.c
plugins/mpeg_system/mpeg_ts.c
+15
-6
No files found.
ChangeLog
View file @
3a1e3ead
...
...
@@ -9,6 +9,7 @@ HEAD
0.4.1
Mon
,
3
Jun
2002
23
:
43
:
35
+
0200
*
./
configure
.
in
,
./
plugins
/
mpeg_system
/
mpeg_ts
.
c
:
fixed
libdvbpsi
handling
.
*
./
src
/
misc
/
configuration
.
c
:
fixed
the
--
nofoo
option
handling
.
*
./
src
/
interface
/
main
.
c
:
fixed
two
compilation
warnings
under
Solaris
.
*
./
plugins
/
avi
/
avi
.
c
,
./
plugins
/
mpeg_system
/
mpeg_audio
.
c
:
ES
will
be
...
...
configure
View file @
3a1e3ead
...
...
@@ -6087,7 +6087,7 @@ fi
x|xyes
)
if
test
"x
$with_dvbpsi_tree
"
=
x
then
for
ac_hdr
in
src/descriptors
/dr.h
for
ac_hdr
in
dvbpsi
/dr.h
do
ac_safe
=
`
echo
"
$ac_hdr
"
|
sed
'y%./+-%__p_%'
`
echo
$ac_n
"checking for
$ac_hdr
""...
$ac_c
"
1>&6
...
...
@@ -6121,7 +6121,7 @@ if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
cat
>>
confdefs.h
<<
EOF
#define
$ac_tr_hdr
1
EOF
PLUGINS
=
"
${
PLUGINS
}
dvbpsi"
PLUGINS
=
"
${
PLUGINS
}
mpeg_ts_
dvbpsi"
mpeg_ts_dvbpsi_LDFLAGS
=
"
${
mpeg_ts_dvbpsi_LDFLAGS
}
-ldvbpsi"
else
echo
"
$ac_t
""no"
1>&6
...
...
configure.in
View file @
3a1e3ead
...
...
@@ -725,8 +725,8 @@ then
x|xyes)
if test "x$with_dvbpsi_tree" = x
then
AC_CHECK_HEADERS(
src/descriptors
/dr.h,
[ PLUGINS="${PLUGINS} dvbpsi"
AC_CHECK_HEADERS(
dvbpsi
/dr.h,
[ PLUGINS="${PLUGINS}
mpeg_ts_
dvbpsi"
mpeg_ts_dvbpsi_LDFLAGS="${mpeg_ts_dvbpsi_LDFLAGS} -ldvbpsi" ], [],
[ AC_MSG_ERROR([cannot find libdvbpsi headers]) ])
else
...
...
include/defs.h.in
View file @
3a1e3ead
...
...
@@ -190,6 +190,9 @@
/* Define if you have the <dlfcn.h> header file. */
#undef HAVE_DLFCN_H
/* Define if you have the <dvbpsi/dr.h> header file. */
#undef HAVE_DVBPSI_DR_H
/* Define if you have the <dvdcss/dvdcss.h> header file. */
#undef HAVE_DVDCSS_DVDCSS_H
...
...
@@ -268,9 +271,6 @@
/* Define if you have the <soundcard.h> header file. */
#undef HAVE_SOUNDCARD_H
/* Define if you have the <src/descriptors/dr.h> header file. */
#undef HAVE_SRC_DESCRIPTORS_DR_H
/* Define if you have the <stddef.h> header file. */
#undef HAVE_STDDEF_H
...
...
plugins/mpeg_system/mpeg_ts.c
View file @
3a1e3ead
...
...
@@ -2,7 +2,7 @@
* mpeg_ts.c : Transport Stream input module for vlc
*****************************************************************************
* Copyright (C) 2000-2001 VideoLAN
* $Id: mpeg_ts.c,v 1.13
2002/05/21 01:27:26
sam Exp $
* $Id: mpeg_ts.c,v 1.13
.2.1 2002/06/03 23:14:49
sam Exp $
*
* Authors: Henri Fallon <henri@via.ecp.fr>
* Johan Bilien <jobi@via.ecp.fr>
...
...
@@ -39,12 +39,21 @@
#include "iso_lang.h"
#if defined MODULE_NAME_IS_mpeg_ts_dvbpsi
#include <dvbpsi/dvbpsi.h>
#include <dvbpsi/descriptor.h>
#include <dvbpsi/pat.h>
#include <dvbpsi/pmt.h>
#include <dvbpsi/dr.h>
# ifdef HAVE_DVBPSI_DR_H
# include <dvbpsi/dvbpsi.h>
# include <dvbpsi/descriptor.h>
# include <dvbpsi/pat.h>
# include <dvbpsi/pmt.h>
# include <dvbpsi/dr.h>
# else
# include "dvbpsi.h"
# include "descriptor.h"
# include "tables/pat.h"
# include "tables/pmt.h"
# include "descriptors/dr.h"
# endif
#endif
/*****************************************************************************
* Constants
*****************************************************************************/
...
...
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