[vlc-commits] araw: fix invalid timestamps
Rémi Denis-Courmont
git at videolan.org
Wed May 2 16:13:56 CEST 2018
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Wed May 2 17:01:53 2018 +0300| [3f87b149c3a172fee8615b8fd76f659e03267698] | committer: Rémi Denis-Courmont
araw: fix invalid timestamps
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=3f87b149c3a172fee8615b8fd76f659e03267698
---
modules/codec/araw.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/modules/codec/araw.c b/modules/codec/araw.c
index d7248a1df3..7d2bc67f18 100644
--- a/modules/codec/araw.c
+++ b/modules/codec/araw.c
@@ -299,7 +299,7 @@ static int DecoderOpen( vlc_object_t *p_this )
assert( p_sys->framebits );
date_Init( &p_sys->end_date, p_dec->fmt_out.audio.i_rate, 1 );
- date_Set( &p_sys->end_date, 0 );
+ date_Set( &p_sys->end_date, VLC_TS_INVALID );
p_dec->pf_decode = DecodeBlock;
p_dec->pf_flush = Flush;
@@ -315,7 +315,7 @@ static void Flush( decoder_t *p_dec )
{
decoder_sys_t *p_sys = p_dec->p_sys;
- date_Set( &p_sys->end_date, 0 );
+ date_Set( &p_sys->end_date, VLC_TS_INVALID );
}
/****************************************************************************
@@ -336,12 +336,12 @@ static int DecodeBlock( decoder_t *p_dec, block_t *p_block )
goto skip;
}
- if( p_block->i_pts > VLC_TS_INVALID &&
+ if( p_block->i_pts != VLC_TS_INVALID &&
p_block->i_pts != date_Get( &p_sys->end_date ) )
{
date_Set( &p_sys->end_date, p_block->i_pts );
}
- else if( !date_Get( &p_sys->end_date ) )
+ else if( date_Get( &p_sys->end_date ) == VLC_TS_INVALID )
/* We've just started the stream, wait for the first PTS. */
goto skip;
More information about the vlc-commits
mailing list