Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
e9a76497
Commit
e9a76497
authored
Dec 07, 2003
by
Rocky Bernstein
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Marginally better.
parent
59dfb394
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
5 deletions
+11
-5
modules/demux/mpeg/system.c
modules/demux/mpeg/system.c
+11
-5
No files found.
modules/demux/mpeg/system.c
View file @
e9a76497
...
...
@@ -2,7 +2,7 @@
* system.c: helper module for TS, PS and PES management
*****************************************************************************
* Copyright (C) 1998-2002 VideoLAN
* $Id: system.c,v 1.2
4 2003/12/06 05:15:54
rocky Exp $
* $Id: system.c,v 1.2
5 2003/12/07 01:02:08
rocky Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
* Michel Lespinasse <walken@via.ecp.fr>
...
...
@@ -968,16 +968,22 @@ static es_descriptor_t * ParsePS( input_thread_t * p_input,
else
if
(
(
i_id
&
0xFFFF
)
==
0x70BD
)
{
/* SVCD OGT subtitles in stream 0x070 */
i_fourcc
=
VLC_FOURCC
(
's'
,
'o'
,
'g'
,
't
'
);
i_fourcc
=
VLC_FOURCC
(
'o'
,
'g'
,
't'
,
'
'
);
i_cat
=
SPU_ES
;
msg_Warn
(
p_input
,
"SVCD OGT subtitles not implemented yet"
);
#ifdef FINISHED_DEBUGGING
if
(
!
p_input
->
stream
.
b_seekable
)
if
(
config_GetInt
(
p_input
,
"spu-channel"
)
==
((
i_id
&
0x0300
)
>>
8
)
)
#endif
{
b_auto_spawn
=
VLC_TRUE
;
}
}
else
if
(
((
i_id
>>
8
)
&
0xFF
)
<=
0x03
&&
(
i_id
&
0x00FF
)
==
0x00BD
)
{
/* CVD subtitles (0x00->0x03) */
i_fourcc
=
VLC_FOURCC
(
's'
,
'c'
,
'v'
,
'd
'
);
i_fourcc
=
VLC_FOURCC
(
'c'
,
'v'
,
'd'
,
'
'
);
i_cat
=
SPU_ES
;
msg_Warn
(
p_input
,
"CVD subtitles not implemented yet"
);
...
...
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