Commit ede737ea authored by Ilkka Ollakka's avatar Ilkka Ollakka

x264: don't repeat headers, we should do it ourself where needed

(cherry picked from commit 0f8980274129820bfce1a72024dc1bffbcfd61c8)
Signed-off-by: default avatarIlkka Ollakka <ileoo@videolan.org>
parent 232e1175
...@@ -1263,6 +1263,9 @@ static int Open ( vlc_object_t *p_this ) ...@@ -1263,6 +1263,9 @@ static int Open ( vlc_object_t *p_this )
* difference that well yet*/ * difference that well yet*/
p_sys->param.rc.i_lookahead= var_GetInteger( p_enc, SOUT_CFG_PREFIX "lookahead" ); p_sys->param.rc.i_lookahead= var_GetInteger( p_enc, SOUT_CFG_PREFIX "lookahead" );
/* We don't want repeated headers, we repeat p_extra ourself if needed */
p_sys->param.b_repeat_headers = 0;
/* Open the encoder */ /* Open the encoder */
p_sys->h = x264_encoder_open( &p_sys->param ); 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