Commit ca4d2fc9 authored by Ilkka Ollakka's avatar Ilkka Ollakka

x264: when partitions=all, just set partitions~0

parent 6b2334c4
......@@ -1225,14 +1225,7 @@ static int Open ( vlc_object_t *p_this )
}
else if( !strcmp( val.psz_string, "all" ) )
{
p_sys->param.analyse.inter =
X264_ANALYSE_I4x4 |
X264_ANALYSE_PSUB16x16 |
X264_ANALYSE_BSUB16x16 |
X264_ANALYSE_PSUB8x8;
#ifdef X264_ANALYSE_I8x8
p_sys->param.analyse.inter |= X264_ANALYSE_I8x8;
#endif
p_sys->param.analyse.inter = ~0;
}
free( val.psz_string );
......
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