From 7a6f2a5abefa773c3e8f901b75d56afaa762b398 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rafa=C3=ABl=20Carr=C3=A9?= Date: Mon, 7 Dec 2009 07:08:04 +0100 Subject: [PATCH] packetizer helper: use VLC_TS_INVALID refs #3135 --- modules/packetizer/packetizer_helper.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/packetizer/packetizer_helper.h b/modules/packetizer/packetizer_helper.h index 1c6e67b205..b2fd905b80 100644 --- a/modules/packetizer/packetizer_helper.h +++ b/modules/packetizer/packetizer_helper.h @@ -170,8 +170,8 @@ static inline block_t *packetizer_Packetize( packetizer_t *p_pack, block_t **pp_ p_pic = p_pack->pf_parse( p_pack->p_private, &b_used_ts, p_pic ); if( b_used_ts ) { - p_block_bytestream->i_dts = -1; - p_block_bytestream->i_pts = -1; + p_block_bytestream->i_dts = VLC_TS_INVALID; + p_block_bytestream->i_pts = VLC_TS_INVALID; } if( !p_pic ) -- 2.39.5