Commit ad949aa2 authored by Gildas Bazin's avatar Gildas Bazin

* modules/codec/x264.c: updated to latest x264 version.

parent 543c958d
......@@ -120,7 +120,11 @@ static int Open ( vlc_object_t *p_this )
var_Get( p_enc, SOUT_CFG_PREFIX "qp", &val );
if( val.i_int >= 1 && val.i_int <= 51 )
{
#if X264_BUILD >= 0x000a
p_sys->param.rc.i_qp_constant = val.i_int;
#else
p_sys->param.i_qp_constant = val.i_int;
#endif
}
var_Get( p_enc, SOUT_CFG_PREFIX "cabac", &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