mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-04-04 04:20:58 +00:00
avrcp_browsing_controller: allow to specify default cover art attribute
This commit is contained in:
parent
5d81be334f
commit
e84a5da43f
@ -73,7 +73,7 @@ static int avrcp_browsing_controller_send_get_folder_items_cmd(uint16_t cid, avr
|
|||||||
attribute_count = AVRCP_MEDIA_ATTR_ALL; // 0
|
attribute_count = AVRCP_MEDIA_ATTR_ALL; // 0
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
attribute_count = count_set_bits_uint32(connection->attr_bitmap & 0xff);
|
attribute_count = count_set_bits_uint32(connection->attr_bitmap & ((1 << AVRCP_MEDIA_ATTR_RESERVED)-1));
|
||||||
attributes_to_copy = attribute_count;
|
attributes_to_copy = attribute_count;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -120,7 +120,7 @@ static int avrcp_browsing_controller_send_get_item_attributes_cmd(uint16_t cid,
|
|||||||
attribute_count = 0;
|
attribute_count = 0;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
attribute_count = count_set_bits_uint32(connection->attr_bitmap & 0xff);
|
attribute_count = count_set_bits_uint32(connection->attr_bitmap & ((1 << AVRCP_MEDIA_ATTR_RESERVED)-1));
|
||||||
attributes_to_copy = attribute_count;
|
attributes_to_copy = attribute_count;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user