singe/thirdparty/rockchip-mpp/mpp/vproc.cmake
2026-09-10 20:17:28 -05:00

20 lines
532 B
CMake

option(ENABLE_VPROC "Enable video process" ON)
if( ENABLE_VPROC )
set(HAVE_VPROC true)
add_definitions(-DHAVE_VPROC)
set(HAVE_VPROC_IEP true)
set(VPROC_IEP vproc_iep)
add_definitions(-DHAVE_VPROC_IEP)
set(HAVE_VPROC_IEP2 true)
set(VPROC_IEP2 vproc_iep2)
add_definitions(-DHAVE_VPROC_IEP2)
endif()
option(ENABLE_VPROC_VDPP "Enable video display post processor" OFF)
if( ENABLE_VPROC_VDPP )
set(HAVE_VPROC_VDPP true)
set(VPROC_VDPP vproc_vdpp)
add_definitions(-DHAVE_VPROC_VDPP)
endif()