Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
230aaffb
Commit
230aaffb
authored
Jul 08, 2007
by
Christophe Mutricy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Ressucitate the telx module and make it to conflict with the zvbi module
parent
21fec3ee
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
771 additions
and
12 deletions
+771
-12
configure.ac
configure.ac
+27
-10
modules/codec/Modules.am
modules/codec/Modules.am
+2
-0
modules/codec/telx.c
modules/codec/telx.c
+739
-0
modules/demux/ts.c
modules/demux/ts.c
+3
-2
No files found.
configure.ac
View file @
230aaffb
...
@@ -3783,19 +3783,36 @@ if test "${enable_x264}" != "no"; then
...
@@ -3783,19 +3783,36 @@ if test "${enable_x264}" != "no"; then
fi
fi
dnl
dnl
dnl Teletext Modules
dnl vbi decoder plugin (using libzbvi)
dnl vbi decoder plugin (using libzbvi)
dnl telx module
dnl uncompatible
dnl
dnl
AC_ARG_ENABLE(zvbi,
AC_ARG_ENABLE(zvbi,
[ --enable-zvbi VBI decoding support with libzvbi (default enabled)])
[ --enable-zvbi VBI (inc. Teletext) decoding support with libzvbi (default enabled)])
if test "${enable_zvbi}" != "no"; then
AC_ARG_ENABLE(telx,
PKG_CHECK_MODULES(ZVBI,
[ --enable-telx, Teletext decoding module (conflicting with zvbi) (default disabled)])
zvbi-0.2 >= 0.2.25,
[
AS_IF( [test "${enable_zvbi}" != "no"],[
VLC_ADD_LDFLAGS([zvbi],[$ZVBI_LIBS])
AS_IF( [test "${enable_telx}" = "yes"],[
VLC_ADD_CFLAGS([zvbi],[$ZVBI_CFLAGS])
AC_MSG_ERROR([The zvbi and telx modules are uncompatibles. Disable the other if you enable one.])
VLC_ADD_PLUGINS([zvbi]) ],
],[
[AC_MSG_WARN(ZVBI library not found)])
PKG_CHECK_MODULES(ZVBI,
fi
zvbi-0.2 >= 0.2.25,
[
VLC_ADD_LDFLAGS([zvbi],[$ZVBI_LIBS])
VLC_ADD_CFLAGS([zvbi],[$ZVBI_CFLAGS])
VLC_ADD_PLUGINS([zvbi])
AC_DEFINE(ZVBI_COMPILED, 1, [Define if the zvbi module is built])
],[
AC_MSG_WARN(ZVBI library not found. Enabling the telx module instead)
enable_telx="yes"
])
])
])
AS_IF( [test "${enable_telx}" = "yes"],[
VLC_ADD_PLUGINS([telx])
])
dnl
dnl
dnl CMML plugin
dnl CMML plugin
...
...
modules/codec/Modules.am
View file @
230aaffb
...
@@ -13,11 +13,13 @@ SOURCES_speex = speex.c
...
@@ -13,11 +13,13 @@ SOURCES_speex = speex.c
SOURCES_adpcm = adpcm.c
SOURCES_adpcm = adpcm.c
SOURCES_mpeg_audio = mpeg_audio.c
SOURCES_mpeg_audio = mpeg_audio.c
SOURCES_libmpeg2 = libmpeg2.c
SOURCES_libmpeg2 = libmpeg2.c
SOURCES_libvc1 = libvc1.c
SOURCES_rawvideo = rawvideo.c
SOURCES_rawvideo = rawvideo.c
SOURCES_quicktime = quicktime.c
SOURCES_quicktime = quicktime.c
SOURCES_subsdec = subsdec.c
SOURCES_subsdec = subsdec.c
SOURCES_faad = faad.c
SOURCES_faad = faad.c
SOURCES_dvbsub = dvbsub.c
SOURCES_dvbsub = dvbsub.c
SOURCES_telx = telx.c
SOURCES_mash = mash.cpp
SOURCES_mash = mash.cpp
SOURCES_x264 = x264.c
SOURCES_x264 = x264.c
SOURCES_twolame = twolame.c
SOURCES_twolame = twolame.c
...
...
modules/codec/telx.c
0 → 100644
View file @
230aaffb
This diff is collapsed.
Click to expand it.
modules/demux/ts.c
View file @
230aaffb
...
@@ -1662,8 +1662,9 @@ static void ParsePES( demux_t *p_demux, ts_pid_t *pid )
...
@@ -1662,8 +1662,9 @@ static void ParsePES( demux_t *p_demux, ts_pid_t *pid )
i_skip
+=
2
;
i_skip
+=
2
;
}
}
else
if
(
pid
->
es
->
fmt
.
i_codec
==
VLC_FOURCC
(
't'
,
'e'
,
'l'
,
'x'
)
)
else
if
(
pid
->
es
->
fmt
.
i_codec
==
VLC_FOURCC
(
't'
,
'e'
,
'l'
,
'x'
)
)
i_skip
=
0
;
#ifdef ZVBI_COMPILED
i_skip
=
0
;
/*hack for zvbi support */
#endif
/* skip header */
/* skip header */
while
(
p_pes
&&
i_skip
>
0
)
while
(
p_pes
&&
i_skip
>
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