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
d488ac6f
Commit
d488ac6f
authored
Dec 07, 2009
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dvbsub: use VLC_TS_INVALID (refs #3135)
parent
29d44b6a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
modules/codec/dvbsub.c
modules/codec/dvbsub.c
+3
-3
No files found.
modules/codec/dvbsub.c
View file @
d488ac6f
...
...
@@ -335,7 +335,7 @@ static int Open( vlc_object_t *p_this )
if
(
!
p_sys
)
return
VLC_ENOMEM
;
p_sys
->
i_pts
=
(
mtime_t
)
0
;
p_sys
->
i_pts
=
VLC_TS_INVALID
;
p_sys
->
i_id
=
p_dec
->
fmt_in
.
subs
.
dvb
.
i_id
&
0xFFFF
;
p_sys
->
i_ancillary_id
=
p_dec
->
fmt_in
.
subs
.
dvb
.
i_id
>>
16
;
...
...
@@ -405,7 +405,7 @@ static subpicture_t *Decode( decoder_t *p_dec, block_t **pp_block )
default_dds_init
(
p_dec
);
p_sys
->
i_pts
=
p_block
->
i_pts
;
if
(
p_sys
->
i_pts
<=
0
)
if
(
p_sys
->
i_pts
<=
VLC_TS_INVALID
)
{
#ifdef DEBUG_DVBSUB
/* Some DVB channels send stuffing segments in non-dated packets so
...
...
@@ -1483,7 +1483,7 @@ static subpicture_t *render( decoder_t *p_dec )
p_spu
->
b_absolute
=
p_sys
->
b_absolute
;
/* Set the pf_render callback */
p_spu
->
i_start
=
(
mtime_t
)
p_sys
->
i_pts
;
p_spu
->
i_start
=
p_sys
->
i_pts
;
//p_spu->i_stop = (mtime_t) 0;
p_spu
->
b_ephemer
=
true
;
//p_spu->b_fade = true;
...
...
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