
I need to compile VLC with omxil library in order to use hardware accelerated graphics video decoding on my raspberry pi.
Actually I need to make it work with jack integration (http://jackaudio.org/)
But I'm stuck at here below.
Code: Select all
/opt/vc/include/interface/vmcs_host/vc_dispmanx_types.h:127:5: warning: "__VCCOREVER__" is not defined, evaluates to 0 -Wundef]
#if __VCCOREVER__ >= 0x04000000
^~~~~~~~~~~~~
In file included from /opt/vc/include/interface/vchi/vchi.h:34,
from /opt/vc/include/interface/vmcs_host/vc_dispmanx.h:37,
from /opt/vc/include/EGL/eglplatform.h:110,
from /opt/vc/include/EGL/egl.h:36,
from video_output/opengl/converter_vaapi.c:31:
/opt/vc/include/interface/vchi/vchi_cfg.h:43:8: warning: "__VCCOREVER__" is not defined, evaluates to 0 [-Wundef]
# if __VCCOREVER__ >= 0x04000000
^~~~~~~~~~~~~
/opt/vc/include/interface/vchi/vchi_cfg.h:54:8: warning: "__VCCOREVER__" is not defined, evaluates to 0 [-Wundef]
# if __VCCOREVER__ >= 0x04000000
^~~~~~~~~~~~~
video_output/opengl/converter_vaapi.c: In function 'vaegl_image_create':
video_output/opengl/converter_vaapi.c:75:9: error: 'EGL_LINUX_DRM_FOURCC_EXT' undeclared (first use in this function); did you mean 'GL_INDEX_TEST_FUNC_EXT'?
EGL_LINUX_DRM_FOURCC_EXT, fourcc,
^~~~~~~~~~~~~~~~~~~~~~~~
GL_INDEX_TEST_FUNC_EXT
video_output/opengl/converter_vaapi.c:75:9: note: each undeclared identifier is reported only once for each function it appears in
video_output/opengl/converter_vaapi.c:76:9: error: 'EGL_DMA_BUF_PLANE0_FD_EXT' undeclared (first use in this function); did you mean 'GL_INT_SAMPLER_3D_EXT'?
EGL_DMA_BUF_PLANE0_FD_EXT, fd,
^~~~~~~~~~~~~~~~~~~~~~~~~
GL_INT_SAMPLER_3D_EXT
video_output/opengl/converter_vaapi.c:77:9: error: 'EGL_DMA_BUF_PLANE0_OFFSET_EXT' undeclared (first use in this function); did you mean 'GL_DRAW_FRAMEBUFFER_EXT'?
EGL_DMA_BUF_PLANE0_OFFSET_EXT, offset,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
GL_DRAW_FRAMEBUFFER_EXT
video_output/opengl/converter_vaapi.c:78:9: error: 'EGL_DMA_BUF_PLANE0_PITCH_EXT' undeclared (first use in this function); did you mean 'GL_VIDEO_BUFFER_PITCH_NV'?
EGL_DMA_BUF_PLANE0_PITCH_EXT, pitch,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
GL_VIDEO_BUFFER_PITCH_NV
video_output/opengl/converter_vaapi.c:82:47: error: 'EGL_LINUX_DMA_BUF_EXT' undeclared (first use in this function); did you mean 'GL_IUI_N3F_V2F_EXT'?
return tc->gl->egl.createImageKHR(tc->gl, EGL_LINUX_DMA_BUF_EXT, NULL,
^~~~~~~~~~~~~~~~~~~~~
GL_IUI_N3F_V2F_EXT
video_output/opengl/converter_vaapi.c:82:47: warning: passing argument 2 of 'tc->gl-><U59a0>.egl.createImageKHR' makes integer from pointer without a cast [-Wint-conversion]
video_output/opengl/converter_vaapi.c:82:47: note: expected 'unsigned int' but argument is of type 'EGLint *' {aka 'int *'}
make[4]: *** [Makefile:21816: video_output/opengl/libglconv_vaapi_wl_plugin_la-converter_vaapi.lo] Error 1
make[4]: Leaving directory '/root/tet/vlc/modules'
make[3]: *** [Makefile:27787: all-recursive] Error 1
make[3]: Leaving directory '/root/tet/vlc/modules'
make[2]: *** [Makefile:12192: all] Error 2
make[2]: Leaving directory '/root/tet/vlc/modules'
make[1]: *** [Makefile:1565: all-recursive] Error 1
make[1]: Leaving directory '/root/tet/vlc'
make: *** [Makefile:1450: all] Error 2
Linux Raspberrypi3 4.14.79-v7+ #1159 SMP Sun Nov 4 17:50:20 GMT 2018 armv7l GNU/Linux