-
Notifications
You must be signed in to change notification settings - Fork 249
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
Metadata Fix #2742
base: master
Are you sure you want to change the base?
Metadata Fix #2742
Conversation
Expected syntax:
|
|
||
- if (!p_bcb->p_tx_msg || !p_ccb_bind) { | ||
+ if (!p_bcb->p_tx_msg) { | ||
+ log::warn("abhadour Received browse packet with no browse data peer:{} lcid:0x{:04x}", p_bcb->peer_addr, |
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.
Logs should be clean.
/* if no ccbs bound to this lcb, disconnect */ | ||
- if (!bind) { | ||
+ if (p_ccb_bind == nullptr) { | ||
+ log::warn("abhadour Ignoring incoming browse request and closing channel from peer:{} lcid:0x{:04x}", |
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.
Logs should be clean.
******************************************************************************/ | ||
+namespace { | ||
+bool is_valid_role_check(const tAVCT_CCB* p_ccb) { | ||
+ log::warn("abhadour Inside valid role check"); |
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.
Logs should be clean in all places.
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.
PR for custom EB, will clean up after confirmation
When reconnecting pixel some times metadata is not synced. | ||
|
||
Issue: bt-stack issuing two AVRC browse channel, one as acceptor, | ||
other as initator, which is causing collision in lcid and resulting |
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.
Can we mention the aosp patch from where these changes are taken?
Expected syntax:
|
No description provided.