[vlc-devel] commit: transcode osd: use VLC_TS_INVALID (refs #3135) ( Rafaël Carré )
git version control
git at videolan.org
Mon Dec 7 18:03:52 CET 2009
vlc | branch: master | Rafaël Carré <rafael.carre at gmail.com> | Mon Dec 7 18:03:41 2009 +0100| [1da34cc2dc894505629e9fa38b23d43c6f0e377b] | committer: Rafaël Carré
transcode osd: use VLC_TS_INVALID (refs #3135)
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=1da34cc2dc894505629e9fa38b23d43c6f0e377b
---
modules/stream_out/transcode/osd.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/stream_out/transcode/osd.c b/modules/stream_out/transcode/osd.c
index b10201f..f6cd7f5 100644
--- a/modules/stream_out/transcode/osd.c
+++ b/modules/stream_out/transcode/osd.c
@@ -119,7 +119,7 @@ int transcode_osd_process( sout_stream_t *p_stream, sout_stream_id_t *id,
subpicture_t *p_subpic = NULL;
/* Check if we have a subpicture to send */
- if( p_sys->p_spu && in->i_dts > 0)
+ if( p_sys->p_spu && in->i_dts > VLC_TS_INVALID )
{
p_subpic = spu_SortSubpictures( p_sys->p_spu, in->i_dts, false );
}
More information about the vlc-devel
mailing list