mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-03 23:47:08 +00:00
doc: remove tabs and spaces from API functions
This commit is contained in:
parent
7502b1923c
commit
e7a997a598
@ -171,8 +171,7 @@ int a2dp_max_media_payload_size(uint16_t a2dp_cid, uint8_t local_seid);
|
||||
* @param marker
|
||||
* @return status
|
||||
*/
|
||||
uint8_t
|
||||
a2dp_source_stream_send_media_payload_rtp(uint16_t a2dp_cid, uint8_t local_seid, uint8_t marker, uint32_t timestamp,
|
||||
uint8_t a2dp_source_stream_send_media_payload_rtp(uint16_t a2dp_cid, uint8_t local_seid, uint8_t marker, uint32_t timestamp,
|
||||
uint8_t *payload, uint16_t payload_size);
|
||||
|
||||
/**
|
||||
|
@ -168,8 +168,7 @@ void avdtp_source_deinit(void){
|
||||
avdtp_deinit();
|
||||
}
|
||||
|
||||
static void
|
||||
avdtp_source_setup_media_header(uint8_t *media_packet, uint8_t marker, uint16_t sequence_number, uint32_t timestamp) {
|
||||
static void avdtp_source_setup_media_header(uint8_t *media_packet, uint8_t marker, uint16_t sequence_number, uint32_t timestamp) {
|
||||
uint8_t rtp_version = 2;
|
||||
uint8_t padding = 0;
|
||||
uint8_t extension = 0;
|
||||
@ -188,8 +187,7 @@ avdtp_source_setup_media_header(uint8_t *media_packet, uint8_t marker, uint16_t
|
||||
big_endian_store_32(media_packet, pos, ssrc); // only used for multicast
|
||||
}
|
||||
|
||||
uint8_t
|
||||
avdtp_source_stream_send_media_payload_rtp(uint16_t avdtp_cid, uint8_t local_seid, uint8_t marker, uint32_t timestamp,
|
||||
uint8_t avdtp_source_stream_send_media_payload_rtp(uint16_t avdtp_cid, uint8_t local_seid, uint8_t marker, uint32_t timestamp,
|
||||
const uint8_t *payload, uint16_t payload_size) {
|
||||
UNUSED(avdtp_cid);
|
||||
|
||||
|
@ -256,8 +256,7 @@ uint8_t avdtp_source_stream_send_media_packet(uint16_t avdtp_cid, uint8_t local_
|
||||
* @param size
|
||||
* @return status
|
||||
*/
|
||||
uint8_t
|
||||
avdtp_source_stream_send_media_payload_rtp(uint16_t avdtp_cid, uint8_t local_seid, uint8_t marker, uint32_t timestamp,
|
||||
uint8_t avdtp_source_stream_send_media_payload_rtp(uint16_t avdtp_cid, uint8_t local_seid, uint8_t marker, uint32_t timestamp,
|
||||
const uint8_t *payload, uint16_t size);
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user