I'm trying to build last git VLC version from sources...i've solved all my dependencies issues but there is an error or a version mismatch between this version of VLC and X265 sources. The error consists in a different definition of x265_param
Code: Select all
/***other code from x265.h **/
/* Numerator and denominator of frame rate */
uint32_t fpsNum;
uint32_t fpsDenom;
and:
Code: Select all
/*** modules/codec/x265.c ***/
/** in module Open() **/
param->frameRate = p_enc->fmt_in.video.i_frame_rate /
p_enc->fmt_in.video.i_frame_rate_base;
VLC assumes that the struct has the integer field frameRate, but i think i has been removed with the num/den version. Is there a patch to solve this issue or am i wrong with something?
Thanks in advance