[vlc-devel] [PATCH 1/5] sout: don't assume DTS relates to vlc_tick_now()
RĂ©mi Denis-Courmont
remi at remlab.net
Sun Mar 1 12:21:59 CET 2020
---
src/stream_output/stream_output.c | 8 --------
1 file changed, 8 deletions(-)
diff --git a/src/stream_output/stream_output.c b/src/stream_output/stream_output.c
index 239a81936d..f27d89a43d 100644
--- a/src/stream_output/stream_output.c
+++ b/src/stream_output/stream_output.c
@@ -561,14 +561,6 @@ int sout_MuxSendBuffer( sout_mux_t *p_mux, sout_input_t *p_input,
vlc_tick_t i_dts = p_buffer->i_dts;
block_FifoPut( p_input->p_fifo, p_buffer );
- if( p_mux->p_sout->i_out_pace_nocontrol )
- {
- vlc_tick_t current_date = vlc_tick_now();
- if ( current_date > i_dts )
- msg_Warn( p_mux, "late buffer for mux input (%"PRId64")",
- current_date - i_dts );
- }
-
if( i_dts == VLC_TICK_INVALID )
i_dts = p_buffer->i_pts;
--
2.20.1
More information about the vlc-devel
mailing list