-
Notifications
You must be signed in to change notification settings - Fork 4
Audio encoder support #35
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
base: master
Are you sure you want to change the base?
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #35 +/- ##
==========================================
- Coverage 77.57% 77.06% -0.51%
==========================================
Files 7 7
Lines 107 109 +2
==========================================
+ Hits 83 84 +1
- Misses 24 25 +1
Continue to review full report in Codecov by Sentry.
🚀 New features to boost your workflow:
|
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.
Copilot reviewed 8 out of 10 changed files in this pull request and generated 1 comment.
Files not reviewed (2)
- lib/xav.ex: Language not supported
- lib/xav/encoder.ex: Language not supported
@@ -1,3 +1,4 @@ | |||
#include "channel_layout.c" |
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.
Including a .c file in a header is typically unintended as it can lead to multiple definition issues; consider including the corresponding header (e.g., channel_layout.h) instead.
#include "channel_layout.c" | |
#include "channel_layout.h" |
Copilot uses AI. Check for mistakes.
No description provided.