Commit 4e170573 authored by Christophe Massiot's avatar Christophe Massiot

* modules/mux/mpeg/ts.c: Set fallback value for --sout-ts-pcr to 70 ms.

parent 8776c07f
......@@ -495,9 +495,9 @@ static int Open( vlc_object_t *p_this )
p_sys->i_pcr_delay >= p_sys->i_shaping_delay )
{
msg_Err( p_mux,
"invalid pcr delay ("I64Fd"ms) resetting to 30ms",
"invalid pcr delay ("I64Fd"ms) resetting to 70ms",
p_sys->i_pcr_delay / 1000 );
p_sys->i_pcr_delay = 30000;
p_sys->i_pcr_delay = 70000;
}
var_Get( p_mux, SOUT_CFG_PREFIX "dts-delay", &val );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment