Commit 846266fd authored by Alexander Smorkalov's avatar Alexander Smorkalov

Native camera fix for some deivices with Qualcomm SoC like Samsung Galaxy S4.

parent a1e5bd71
...@@ -58,7 +58,7 @@ SET_TARGET_PROPERTIES(${the_target} PROPERTIES ...@@ -58,7 +58,7 @@ SET_TARGET_PROPERTIES(${the_target} PROPERTIES
RUNTIME_OUTPUT_DIRECTORY ${EXECUTABLE_OUTPUT_PATH} RUNTIME_OUTPUT_DIRECTORY ${EXECUTABLE_OUTPUT_PATH}
) )
if (NOT (CMAKE_BUILD_TYPE MATCHES "debug")) if (NOT (CMAKE_BUILD_TYPE MATCHES "Debug"))
ADD_CUSTOM_COMMAND( TARGET ${the_target} POST_BUILD COMMAND ${CMAKE_STRIP} --strip-unneeded "${LIBRARY_OUTPUT_PATH}/lib${the_target}.so" ) ADD_CUSTOM_COMMAND( TARGET ${the_target} POST_BUILD COMMAND ${CMAKE_STRIP} --strip-unneeded "${LIBRARY_OUTPUT_PATH}/lib${the_target}.so" )
endif() endif()
......
...@@ -175,7 +175,6 @@ public class NativeCameraView extends CameraBridgeViewBase { ...@@ -175,7 +175,6 @@ public class NativeCameraView extends CameraBridgeViewBase {
} }
deliverAndDrawFrame(mFrame); deliverAndDrawFrame(mFrame);
} while (!mStopThread); } while (!mStopThread);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment