The multi-lib change actually happend in build 153
void hb_x264_global_init(void)
{
-#if X264_BUILD < 155
+#if X264_BUILD < 153
x264_apis[0].bit_depth = x264_bit_depth;
#else
x264_apis[0].bit_depth = X264_BIT_DEPTH;
int ii;
int dll_bitdepth = 0;
-#if X264_BUILD < 155
+#if X264_BUILD < 153
int *pbit_depth = (int*)hb_dlsym(h, "x264_bit_depth");
if (pbit_depth != NULL)
{
}
#endif
x264_apis[1].param_default = hb_dlsym(h, "x264_param_default");
-#if X264_BUILD >= 155
+#if X264_BUILD >= 153
if (x264_apis[1].param_default != NULL)
{
x264_param_t defaults;
return 1;
}
-#if X264_BUILD >= 155
+#if X264_BUILD >= 153
param.i_bitdepth = bit_depth;
#endif