bt_utils.c 962 B

12345678910111213141516171819202122232425262728293031323334
  1. #include "bt_utils.h"
  2. /*****************************************************************************
  3. **
  4. ** Function raise_priority_a2dp
  5. **
  6. ** Description Raise task priority for A2DP streaming
  7. **
  8. ** Returns void
  9. **
  10. *******************************************************************************/
  11. void raise_priority_a2dp(tHIGH_PRIORITY_TASK high_task)
  12. {
  13. (void) high_task;
  14. return;
  15. }
  16. /*****************************************************************************
  17. **
  18. ** Function adjust_priority_a2dp
  19. **
  20. ** Description increase the a2dp consumer task priority temporarily when start
  21. ** audio playing, to avoid overflow the audio packet queue, restore
  22. ** the a2dp consumer task priority when stop audio playing.
  23. **
  24. ** Returns void
  25. **
  26. *******************************************************************************/
  27. void adjust_priority_a2dp(int start)
  28. {
  29. (void) start;
  30. return;
  31. }