mirror of
https://github.com/nyanmisaka/mpp.git
synced 2025-10-06 01:26:49 +08:00

Signed-off-by: Ding Wei <leo.ding@rock-chips.com> Change-Id: I8bd74ad9b4404864ea3d88c7f2e57eecc4c0e35d Signed-off-by: xueman.ruan <xueman.ruan@rock-chips.com>
13 lines
334 B
CMake
13 lines
334 B
CMake
option(ENABLE_VPROC "Enable video process" ON)
|
|
if( ENABLE_VPROC )
|
|
set(HAVE_VPROC true)
|
|
add_definitions(-DHAVE_VPROC)
|
|
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()
|