Commit fb6ee0c6 authored by Ilkka Ollakka's avatar Ilkka Ollakka

x264: set param.rc.i_lookahead to lower than default

rtp-output without muxin doesn't seem to handle that delay.
(cherry picked from commit 367e624ea12feba1c55c79397768cd7515dda616)
parent 6ab91ae2
......@@ -1379,6 +1379,13 @@ static int Open ( vlc_object_t *p_this )
#endif
#if X264_BUILD >= 69
/* Set lookahead value to lower than default,
* as rtp-output without mux doesn't handle
* difference that well yet*/
p_sys->param.rc.i_lookahead=5;
#endif
/* Open the encoder */
p_sys->h = x264_encoder_open( &p_sys->param );
......
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