handsfree-audio.h 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /*
  2. *
  3. * oFono - Open Source Telephony
  4. *
  5. * Copyright (C) 2013 Intel Corporation. All rights reserved.
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  19. *
  20. */
  21. #ifndef __OFONO_HANDSFREE_AUDIO_H
  22. #define __OFONO_HANDSFREE_AUDIO_H
  23. #ifdef __cplusplus
  24. extern "C" {
  25. #endif
  26. #include <ofono/types.h>
  27. struct ofono_handsfree_card;
  28. enum ofono_handsfree_card_type {
  29. OFONO_HANDSFREE_CARD_TYPE_HANDSFREE,
  30. OFONO_HANDSFREE_CARD_TYPE_GATEWAY,
  31. };
  32. typedef void (*ofono_handsfree_card_connect_cb_t)(
  33. const struct ofono_error *error, void *data);
  34. struct ofono_handsfree_card_driver {
  35. const char *name;
  36. int (*probe)(struct ofono_handsfree_card *card, unsigned int vendor,
  37. void *data);
  38. void (*remove)(struct ofono_handsfree_card *card);
  39. void (*connect)(struct ofono_handsfree_card *card,
  40. ofono_handsfree_card_connect_cb_t cb,
  41. void *data);
  42. void (*sco_connected_hint)(struct ofono_handsfree_card *card);
  43. };
  44. struct ofono_handsfree_card *ofono_handsfree_card_create(unsigned int vendor,
  45. enum ofono_handsfree_card_type type,
  46. const char *driver,
  47. void *data);
  48. int ofono_handsfree_card_register(struct ofono_handsfree_card *card);
  49. void ofono_handsfree_card_remove(struct ofono_handsfree_card *card);
  50. ofono_bool_t ofono_handsfree_card_set_codec(struct ofono_handsfree_card *card,
  51. unsigned char codec);
  52. ofono_bool_t ofono_handsfree_audio_has_wideband(void);
  53. ofono_bool_t ofono_handsfree_audio_has_transparent_sco(void);
  54. void ofono_handsfree_card_set_data(struct ofono_handsfree_card *card,
  55. void *data);
  56. void *ofono_handsfree_card_get_data(struct ofono_handsfree_card *card);
  57. void ofono_handsfree_card_set_remote(struct ofono_handsfree_card *card,
  58. const char *remote);
  59. const char *ofono_handsfree_card_get_remote(struct ofono_handsfree_card *card);
  60. void ofono_handsfree_card_set_local(struct ofono_handsfree_card *card,
  61. const char *local);
  62. const char *ofono_handsfree_card_get_local(struct ofono_handsfree_card *card);
  63. int ofono_handsfree_card_connect_sco(struct ofono_handsfree_card *card);
  64. void ofono_handsfree_audio_ref(void);
  65. void ofono_handsfree_audio_unref(void);
  66. int ofono_handsfree_card_driver_register(
  67. const struct ofono_handsfree_card_driver *d);
  68. void ofono_handsfree_card_driver_unregister(
  69. const struct ofono_handsfree_card_driver *d);
  70. #ifdef __cplusplus
  71. }
  72. #endif
  73. #endif /* __OFONO_HANDSFREE_AUDIO_H */