Browse Source

SK: discard invalid timings output

Francois Cartegnie 5 years ago
committed by Alexandre Janniaux
parent
commit
001806260e
  1. 4
      modules/packetizer/h264.c

4
modules/packetizer/h264.c

@ -594,6 +594,10 @@ static int PacketizeValidate( void *p_private, block_t *p_au )
{
VLC_UNUSED(p_private);
VLC_UNUSED(p_au);
if(p_au->i_dts == VLC_TICK_INVALID)
return VLC_EGENERIC;
return VLC_SUCCESS;
}

Loading…
Cancel
Save