1option(ENABLE_VPROC "Enable video process" ON) 2if( ENABLE_VPROC ) 3 set(HAVE_VPROC true) 4 add_definitions(-DHAVE_VPROC) 5endif() 6 7option(ENABLE_VPROC_VDPP "Enable video display post processor" OFF) 8if( ENABLE_VPROC_VDPP ) 9 set(HAVE_VPROC_VDPP true) 10 set(VPROC_VDPP vproc_vdpp) 11 add_definitions(-DHAVE_VPROC_VDPP) 12endif() 13