Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
b4d7410f
Commit
b4d7410f
authored
Dec 20, 2009
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Used VLC_TS_INVALID/0 in vobsub demuxer.
parent
bd0c2884
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
modules/demux/vobsub.c
modules/demux/vobsub.c
+2
-2
No files found.
modules/demux/vobsub.c
View file @
b4d7410f
...
...
@@ -408,7 +408,7 @@ static int Demux( demux_t *p_demux )
p_block
->
i_buffer
=
i_read
;
/* pts */
p_block
->
i_pts
=
tk
.
p_subtitles
[
tk
.
i_current_subtitle
].
i_start
;
p_block
->
i_pts
=
VLC_TS_0
+
tk
.
p_subtitles
[
tk
.
i_current_subtitle
].
i_start
;
/* demux this block */
DemuxVobSub
(
p_demux
,
p_block
);
...
...
@@ -701,7 +701,7 @@ static int DemuxVobSub( demux_t *p_demux, block_t *p_bk )
if
(
p_tk
->
p_es
&&
p_tk
->
i_track_id
==
i_spu
)
{
es_out_Send
(
p_demux
->
out
,
p_tk
->
p_es
,
p_pkt
);
p_bk
->
i_pts
=
0
;
/*only first packet has a pts */
p_bk
->
i_pts
=
VLC_TS_INVALID
;
/*only first packet has a pts */
break
;
}
}
...
...
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