-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merge detached android branch #5419
Merge detached android branch #5419
Conversation
- Terminal - FW Backup - FW logs
…alsense into merge-android-branch
…alsense into merge-android-branch
wrappers/android/librealsense/src/main/java/com/intel/realsense/librealsense/Frame.java
Outdated
Show resolved
Hide resolved
wrappers/android/tools/camera/src/main/java/com/intel/realsense/camera/FileUtilities.java
Outdated
Show resolved
Hide resolved
wrappers/android/tools/camera/src/main/java/com/intel/realsense/camera/PreviewActivity.java
Outdated
Show resolved
Hide resolved
Merge android branch
Spacing and checking support before setting preset
@@ -15,10 +15,10 @@ macro(os_set_flags) | |||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC -pedantic -g -Wno-missing-field-initializers") | |||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-switch -Wno-multichar") | |||
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -fPIE -pie") | |||
|
|||
set(HWM_OVER_XU ON) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why this was moved?
@@ -156,7 +156,7 @@ public String prettyPrint(){ | |||
"\nFrame Count: " + mTotalFrameCount + | |||
"\nFrame Number: " + mFrameNumber + | |||
"\nFrame Loss: " + mFrameLoss + | |||
"\nHW timestamp: " + mHWTimestamp + | |||
"\nHW timestamp: " + (long)mHWTimestamp + |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Print double in fixed representation, not long
@@ -201,8 +201,8 @@ private void logFrameData() { | |||
mResolution + ", " + | |||
mRequestedFps + ", " + | |||
mFrameNumber + ", " + | |||
mHWTimestamp + ", " + | |||
mHWTimestampDiff + ", " + | |||
(long)mHWTimestamp + ", " + |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same
Formatting string of double instead of casting it to long
Add the following features:
Fix issues: