-
Notifications
You must be signed in to change notification settings - Fork 447
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
Fix warnings and android issues #2243
Conversation
bd96e0f
to
abe8a29
Compare
Android libraries can't be placed inside subdirectory, so to distinguish plugins from regular libraries the new prefix is used.
abe8a29
to
b0e9193
Compare
Quality Gate passedIssues Measures |
Sorry this breaks Metis MISO I am going to revert this PR |
@@ -622,8 +622,6 @@ void MetisMISOUDPHandler::processIQBuffer(unsigned char* buffer) | |||
} | |||
} | |||
|
|||
sampleMic = (int)((signed char) buffer[b++]) << 8; | |||
sampleMic += (int)((unsigned char)buffer[b++]); |
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.
This is a breaking change and I don't see the point of it.
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.
b is modified and used though.
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.
Yes, you're right! Didn't noticed that.
Here's fixes for building for Android platform: