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
fa804348
Commit
fa804348
authored
Jul 06, 2007
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed telx Teletext decoder in favor of zvbi based Teletext decoder.
parent
e1befdbd
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
741 deletions
+3
-741
configure.ac
configure.ac
+2
-0
modules/codec/Modules.am
modules/codec/Modules.am
+0
-1
modules/codec/telx.c
modules/codec/telx.c
+0
-739
modules/demux/ts.c
modules/demux/ts.c
+1
-1
No files found.
configure.ac
View file @
fa804348
...
@@ -3791,6 +3791,8 @@ if test "${enable_zvbi}" != "no"; then
...
@@ -3791,6 +3791,8 @@ if test "${enable_zvbi}" != "no"; then
PKG_CHECK_MODULES(ZVBI,
PKG_CHECK_MODULES(ZVBI,
zvbi-0.2 >= 0.2.25,
zvbi-0.2 >= 0.2.25,
[
[
AC_DEFINE(HAVE_ZVBI_H, 1,
Define if Teletext decoder based on zvbi lib is used.)
VLC_ADD_LDFLAGS([zvbi],[$ZVBI_LIBS])
VLC_ADD_LDFLAGS([zvbi],[$ZVBI_LIBS])
VLC_ADD_CFLAGS([zvbi],[$ZVBI_CFLAGS])
VLC_ADD_CFLAGS([zvbi],[$ZVBI_CFLAGS])
VLC_ADD_PLUGINS([zvbi]) ],
VLC_ADD_PLUGINS([zvbi]) ],
...
...
modules/codec/Modules.am
View file @
fa804348
...
@@ -18,7 +18,6 @@ SOURCES_quicktime = quicktime.c
...
@@ -18,7 +18,6 @@ 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
deleted
100644 → 0
View file @
e1befdbd
This diff is collapsed.
Click to expand it.
modules/demux/ts.c
View file @
fa804348
...
@@ -1662,7 +1662,7 @@ static void ParsePES( demux_t *p_demux, ts_pid_t *pid )
...
@@ -1662,7 +1662,7 @@ 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
;
/* FIXME hack for zvbi support, breaks telx decoder */
i_skip
=
0
;
/* 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