Commit 367e624e 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.
parent a14696fd
......@@ -1328,6 +1328,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