2016-11-04 07:08:30 +00:00
|
|
|
#include "bt_utils.h"
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
**
|
|
|
|
** Function raise_priority_a2dp
|
|
|
|
**
|
|
|
|
** Description Raise task priority for A2DP streaming
|
|
|
|
**
|
|
|
|
** Returns void
|
|
|
|
**
|
|
|
|
*******************************************************************************/
|
|
|
|
void raise_priority_a2dp(tHIGH_PRIORITY_TASK high_task)
|
|
|
|
{
|
2016-11-15 06:32:22 +00:00
|
|
|
(void) high_task;
|
2016-11-04 07:08:30 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
**
|
|
|
|
** Function adjust_priority_a2dp
|
|
|
|
**
|
|
|
|
** Description increase the a2dp consumer task priority temporarily when start
|
|
|
|
** audio playing, to avoid overflow the audio packet queue, restore
|
|
|
|
** the a2dp consumer task priority when stop audio playing.
|
|
|
|
**
|
|
|
|
** Returns void
|
|
|
|
**
|
|
|
|
*******************************************************************************/
|
|
|
|
void adjust_priority_a2dp(int start)
|
|
|
|
{
|
2016-11-15 06:32:22 +00:00
|
|
|
(void) start;
|
2016-11-04 07:08:30 +00:00
|
|
|
return;
|
|
|
|
}
|