Commit 9b766c86 authored by Dominique Leuenberger's avatar Dominique Leuenberger Committed by Christophe Mutricy

x264 removed i_direct_8x8_inference from the structure from version 66 on.

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
(cherry picked from commit ee759771)
Signed-off-by: default avatarChristophe Mutricy <xtophe@videolan.org>
parent dd90abe6
......@@ -1122,9 +1122,11 @@ static int Open ( vlc_object_t *p_this )
if( val.i_int >= 0 && val.i_int <= 32 )
p_sys->param.analyse.i_luma_deadzone[1] = val.i_int;
#if X264_BUILD <= 65
var_Get( p_enc, SOUT_CFG_PREFIX "direct-8x8", &val );
if( val.i_int >= -1 && val.i_int <= 1 )
p_sys->param.analyse.i_direct_8x8_inference = val.i_int;
#endif
#endif
var_Get( p_enc, SOUT_CFG_PREFIX "asm", &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