Skip to content

Commit 7c2e28d

Browse files
committed
fakenect: support _VIDEO_YUV_RAW and _DEPTH_MM formats
This adds support for converting the recorded _VIDEO_RGB data to _VIDEO_YUV_RAW and mapping _DEPTH_11BIT to _DEPTH_MM for applications requiring these formats. Signed-off-by: Robert Bragg <[email protected]>
1 parent 24a6810 commit 7c2e28d

File tree

2 files changed

+232
-38
lines changed

2 files changed

+232
-38
lines changed

fakenect/CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
######################################################################################
44
SET(EXECUTABLE_OUTPUT_PATH ${CMAKE_BINARY_DIR}/bin)
55
SET(LIBRARY_OUTPUT_PATH ${CMAKE_BINARY_DIR}/lib/fakenect)
6-
add_library (fakenect SHARED fakenect.c parson.c)
6+
include_directories(../src)
7+
add_library (fakenect SHARED fakenect.c parson.c ../src/registration.c)
78
set_target_properties ( fakenect PROPERTIES
89
VERSION ${PROJECT_VER}
910
SOVERSION ${PROJECT_APIVER}

0 commit comments

Comments
 (0)