Commit e651381f authored by Dennis van Amerongen's avatar Dennis van Amerongen

* modules/codec/x264.c: more user friendly version reporting of x264 (so no...

* modules/codec/x264.c: more user friendly version reporting of x264 (so no more confusion x264 core:58 would mean the system has 58 cores..)
parent c6fc51f0
......@@ -715,7 +715,8 @@ static int Open ( vlc_object_t *p_this )
return VLC_EGENERIC;
}
msg_Dbg ( p_enc, "x264 core:%d", X264_BUILD );
/* X264_POINTVER or X264_VERSION are not available */
msg_Dbg ( p_enc, "version x264 0.%d.X", X264_BUILD );
#if X264_BUILD < 37
if( p_enc->fmt_in.video.i_width % 16 != 0 ||
......
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